@forge/cli-shared 8.23.0-next.9 → 8.23.1-next.0
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 +77 -0
- package/out/graphql/graphql-types.d.ts +1116 -163
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +168 -46
- package/out/graphql/minimal-graphql-runner.d.ts +3 -3
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +7 -7
- package/out/shared/forge-cli-attribution.d.ts +11 -1
- package/out/shared/forge-cli-attribution.d.ts.map +1 -1
- package/out/shared/forge-cli-attribution.js +113 -2
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -0
- package/package.json +4 -2
|
@@ -149,10 +149,6 @@ export declare type AiOpsAutomationRuleUserPrompt = {
|
|
|
149
149
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
150
150
|
variableName?: Maybe<Scalars['String']['output']>;
|
|
151
151
|
};
|
|
152
|
-
export declare type AiOpsCreateInvestigationInput = {
|
|
153
|
-
affectedServiceIds: Array<Scalars['ID']['input']>;
|
|
154
|
-
issueId: Scalars['ID']['input'];
|
|
155
|
-
};
|
|
156
152
|
export declare type AiOpsCreateInvestigationPayload = Payload & {
|
|
157
153
|
__typename?: 'AIOpsCreateInvestigationPayload';
|
|
158
154
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -166,6 +162,7 @@ export declare type AiOpsEntityCount = {
|
|
|
166
162
|
};
|
|
167
163
|
export declare type AiOpsFaultyChange = {
|
|
168
164
|
__typename?: 'AIOpsFaultyChange';
|
|
165
|
+
associations?: Maybe<Array<AiOpsFaultyChange>>;
|
|
169
166
|
attributes?: Maybe<AiOpsFaultyChangeAttributes>;
|
|
170
167
|
changeId?: Maybe<Scalars['String']['output']>;
|
|
171
168
|
relatedWorkItems?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -180,8 +177,8 @@ export declare type AiOpsFaultyChangeAttributes = {
|
|
|
180
177
|
export declare enum AiOpsFaultyChangeType {
|
|
181
178
|
Commit = "COMMIT",
|
|
182
179
|
Deployment = "DEPLOYMENT",
|
|
183
|
-
|
|
184
|
-
|
|
180
|
+
Ff = "FF",
|
|
181
|
+
Pr = "PR"
|
|
185
182
|
}
|
|
186
183
|
export declare type AiOpsFaultyCommitAttributes = AiOpsFaultyChangeAttributes & {
|
|
187
184
|
__typename?: 'AIOpsFaultyCommitAttributes';
|
|
@@ -482,18 +479,6 @@ export declare enum AiOpsRelatedAlertStatus {
|
|
|
482
479
|
Resolved = "RESOLVED",
|
|
483
480
|
Snoozed = "SNOOZED"
|
|
484
481
|
}
|
|
485
|
-
export declare type AiOpsReviewRootCauseInput = {
|
|
486
|
-
investigationId: Scalars['ID']['input'];
|
|
487
|
-
rootCauseSuggestionId: Scalars['ID']['input'];
|
|
488
|
-
status: AiOpsLikelyRootCauseReviewStatus;
|
|
489
|
-
};
|
|
490
|
-
export declare type AiOpsReviewRootCausePayload = {
|
|
491
|
-
__typename?: 'AIOpsReviewRootCausePayload';
|
|
492
|
-
errors?: Maybe<Array<MutationError>>;
|
|
493
|
-
investigation?: Maybe<AiOpsInvestigation>;
|
|
494
|
-
rootCause?: Maybe<AiOpsLikelyRootCause>;
|
|
495
|
-
success: Scalars['Boolean']['output'];
|
|
496
|
-
};
|
|
497
482
|
export declare type AiOpsTriggerInvestigationInput = {
|
|
498
483
|
agentic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
499
484
|
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
@@ -1267,7 +1252,7 @@ export declare type AvpAnalyticsPreviewMetricDataInput = {
|
|
|
1267
1252
|
defaultVisualization?: InputMaybe<AvpAnalyticsVisualizationConfigInput>;
|
|
1268
1253
|
metricCloudId: Scalars['ID']['input'];
|
|
1269
1254
|
metricDefinition: AvpAnalyticsMetricDefinitionInput;
|
|
1270
|
-
metricId
|
|
1255
|
+
metricId?: InputMaybe<Scalars['ID']['input']>;
|
|
1271
1256
|
};
|
|
1272
1257
|
export declare type AvpAnalyticsPreviewModelDataInput = {
|
|
1273
1258
|
modelCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -1821,6 +1806,7 @@ export declare type AvpDashboardFilterInput = {
|
|
|
1821
1806
|
export declare type AvpDashboardIdentityAccess = {
|
|
1822
1807
|
__typename?: 'AVPDashboardIdentityAccess';
|
|
1823
1808
|
dashboardId: Scalars['ID']['output'];
|
|
1809
|
+
groups: Array<AvpDashboardIdentityGroupAccess>;
|
|
1824
1810
|
users: Array<AvpDashboardIdentityUserAccess>;
|
|
1825
1811
|
};
|
|
1826
1812
|
export declare enum AvpDashboardIdentityAccessLevel {
|
|
@@ -1828,10 +1814,17 @@ export declare enum AvpDashboardIdentityAccessLevel {
|
|
|
1828
1814
|
Read = "READ",
|
|
1829
1815
|
Write = "WRITE"
|
|
1830
1816
|
}
|
|
1817
|
+
export declare type AvpDashboardIdentityGroupAccess = {
|
|
1818
|
+
__typename?: 'AVPDashboardIdentityGroupAccess';
|
|
1819
|
+
accessLevel: AvpDashboardIdentityAccessLevel;
|
|
1820
|
+
group?: Maybe<IdentityGroup>;
|
|
1821
|
+
principalId: Scalars['ID']['output'];
|
|
1822
|
+
};
|
|
1831
1823
|
export declare type AvpDashboardIdentityUserAccess = {
|
|
1832
1824
|
__typename?: 'AVPDashboardIdentityUserAccess';
|
|
1833
1825
|
accessLevel: AvpDashboardIdentityAccessLevel;
|
|
1834
1826
|
principalId: Scalars['ID']['output'];
|
|
1827
|
+
user?: Maybe<User>;
|
|
1835
1828
|
};
|
|
1836
1829
|
export declare type AvpDashboardInput = {
|
|
1837
1830
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1842,8 +1835,16 @@ export declare type AvpDashboardInput = {
|
|
|
1842
1835
|
export declare enum AvpDashboardPermissionType {
|
|
1843
1836
|
Closed = "CLOSED",
|
|
1844
1837
|
Manage = "MANAGE",
|
|
1845
|
-
Read = "READ"
|
|
1838
|
+
Read = "READ",
|
|
1839
|
+
Write = "WRITE"
|
|
1846
1840
|
}
|
|
1841
|
+
export declare type AvpDashboardResourcePermission = {
|
|
1842
|
+
__typename?: 'AVPDashboardResourcePermission';
|
|
1843
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
1844
|
+
dashboardId: Scalars['ID']['output'];
|
|
1845
|
+
integrationId?: Maybe<Scalars['String']['output']>;
|
|
1846
|
+
permissionType?: Maybe<AvpDashboardPermissionType>;
|
|
1847
|
+
};
|
|
1847
1848
|
export declare type AvpDashboardSettings = {
|
|
1848
1849
|
__typename?: 'AVPDashboardSettings';
|
|
1849
1850
|
allowTzOverride?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2043,6 +2044,15 @@ export declare type AvpGetDashboardIdBySlugPayload = {
|
|
|
2043
2044
|
__typename?: 'AVPGetDashboardIdBySlugPayload';
|
|
2044
2045
|
id?: Maybe<Scalars['ID']['output']>;
|
|
2045
2046
|
};
|
|
2047
|
+
export declare type AvpGetDashboardIdentityAccessInput = {
|
|
2048
|
+
dashboardAri: Scalars['ID']['input'];
|
|
2049
|
+
directAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2050
|
+
includeGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2051
|
+
permissions?: InputMaybe<Array<AvpDashboardIdentityAccessLevel>>;
|
|
2052
|
+
};
|
|
2053
|
+
export declare type AvpGetDashboardResourcePermissionInput = {
|
|
2054
|
+
dashboardAri: Scalars['ID']['input'];
|
|
2055
|
+
};
|
|
2046
2056
|
export declare type AvpGetDashboardTemplatesInput = {
|
|
2047
2057
|
cloudId: Scalars['ID']['input'];
|
|
2048
2058
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2463,6 +2473,12 @@ export declare type AvpUnstarDashboardPayload = Payload & {
|
|
|
2463
2473
|
errors?: Maybe<Array<MutationError>>;
|
|
2464
2474
|
success: Scalars['Boolean']['output'];
|
|
2465
2475
|
};
|
|
2476
|
+
export declare type AvpUpdateChartByConfigIdInput = {
|
|
2477
|
+
chart: AvpChartInput;
|
|
2478
|
+
chartConfigId: Scalars['ID']['input'];
|
|
2479
|
+
cloudId: Scalars['ID']['input'];
|
|
2480
|
+
workspaceAri: Scalars['ID']['input'];
|
|
2481
|
+
};
|
|
2466
2482
|
export declare type AvpUpdateChartInput = {
|
|
2467
2483
|
chart: AvpChartInput;
|
|
2468
2484
|
chartAri: Scalars['ID']['input'];
|
|
@@ -2589,6 +2605,11 @@ export declare type AvpVizConfigInput = {
|
|
|
2589
2605
|
accessors?: InputMaybe<Scalars['JSON']['input']>;
|
|
2590
2606
|
data: Array<Array<InputMaybe<Scalars['JSON']['input']>>>;
|
|
2591
2607
|
};
|
|
2608
|
+
export declare type AvpWorkspaceExperience = {
|
|
2609
|
+
__typename?: 'AVPWorkspaceExperience';
|
|
2610
|
+
id: Scalars['ID']['output'];
|
|
2611
|
+
isOptedInToAAPlatformDashboards?: Maybe<Scalars['Boolean']['output']>;
|
|
2612
|
+
};
|
|
2592
2613
|
export declare enum AcceptableResponse {
|
|
2593
2614
|
False = "FALSE",
|
|
2594
2615
|
NotApplicable = "NOT_APPLICABLE",
|
|
@@ -5339,6 +5360,7 @@ export declare type AgentStudioAgent = {
|
|
|
5339
5360
|
description?: Maybe<Scalars['String']['output']>;
|
|
5340
5361
|
etag?: Maybe<Scalars['String']['output']>;
|
|
5341
5362
|
id: Scalars['ID']['output'];
|
|
5363
|
+
isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
5342
5364
|
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
5343
5365
|
isPublished: Scalars['Boolean']['output'];
|
|
5344
5366
|
jiraAssignability?: Maybe<JiraAgentAssignability>;
|
|
@@ -5478,6 +5500,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseCon
|
|
|
5478
5500
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
5479
5501
|
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
5480
5502
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
5503
|
+
isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
5481
5504
|
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
5482
5505
|
isPublished: Scalars['Boolean']['output'];
|
|
5483
5506
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -5525,6 +5548,7 @@ export declare type AgentStudioAssistantMessage = {
|
|
|
5525
5548
|
author?: Maybe<AgentStudioMessageAuthor>;
|
|
5526
5549
|
content?: Maybe<AgentStudioMessageContent>;
|
|
5527
5550
|
contentMimeType?: Maybe<Scalars['String']['output']>;
|
|
5551
|
+
feedbackValue?: Maybe<AgentStudioFeedbackValue>;
|
|
5528
5552
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5529
5553
|
role?: Maybe<Scalars['String']['output']>;
|
|
5530
5554
|
sources?: Maybe<Array<Maybe<AgentStudioMessageSource>>>;
|
|
@@ -5767,6 +5791,7 @@ export declare type AgentStudioCreateAgentInput = {
|
|
|
5767
5791
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5768
5792
|
executionConfig?: InputMaybe<AgentStudioExecutionConfigInput>;
|
|
5769
5793
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
5794
|
+
isFollowUpQuestionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5770
5795
|
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5771
5796
|
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5772
5797
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
@@ -5984,6 +6009,10 @@ export declare type AgentStudioExecutionTierConfig = {
|
|
|
5984
6009
|
models?: Maybe<Array<AgentStudioAvailableModelConfig>>;
|
|
5985
6010
|
supportsModelSelection?: Maybe<Scalars['Boolean']['output']>;
|
|
5986
6011
|
};
|
|
6012
|
+
export declare enum AgentStudioFeedbackValue {
|
|
6013
|
+
Dislike = "DISLIKE",
|
|
6014
|
+
Like = "LIKE"
|
|
6015
|
+
}
|
|
5987
6016
|
export declare enum AgentStudioFirstPartyAccessStatus {
|
|
5988
6017
|
HasAccess = "HAS_ACCESS",
|
|
5989
6018
|
NoAccess = "NO_ACCESS",
|
|
@@ -6389,6 +6418,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
6389
6418
|
description?: Maybe<Scalars['String']['output']>;
|
|
6390
6419
|
etag?: Maybe<Scalars['String']['output']>;
|
|
6391
6420
|
id: Scalars['ID']['output'];
|
|
6421
|
+
isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
6392
6422
|
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
6393
6423
|
isPublished: Scalars['Boolean']['output'];
|
|
6394
6424
|
jiraAssignability?: Maybe<JiraAgentAssignability>;
|
|
@@ -6715,6 +6745,7 @@ export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
|
6715
6745
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
6716
6746
|
executionConfig?: InputMaybe<AgentStudioExecutionConfigInput>;
|
|
6717
6747
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
6748
|
+
isFollowUpQuestionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6718
6749
|
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6719
6750
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
6720
6751
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6980,9 +7011,9 @@ export declare type AgentWorkspaceAssignAgentToGapInput = {
|
|
|
6980
7011
|
assignedAgentId: Scalars['ID']['input'];
|
|
6981
7012
|
endTime: Scalars['DateTime']['input'];
|
|
6982
7013
|
gapOwnerAgentId: Scalars['ID']['input'];
|
|
7014
|
+
occurrenceStartTime: Scalars['DateTime']['input'];
|
|
6983
7015
|
projectARI: Scalars['ID']['input'];
|
|
6984
7016
|
scheduleId: Scalars['ID']['input'];
|
|
6985
|
-
shiftSegmentId: Scalars['ID']['input'];
|
|
6986
7017
|
startTime: Scalars['DateTime']['input'];
|
|
6987
7018
|
};
|
|
6988
7019
|
export declare type AgentWorkspaceAssignAgentToGapPayload = {
|
|
@@ -7164,31 +7195,32 @@ export declare type AgentWorkspaceCapacitySummary = {
|
|
|
7164
7195
|
totalAssignedWorkItems: Scalars['Int']['output'];
|
|
7165
7196
|
totalCapacity: Scalars['Int']['output'];
|
|
7166
7197
|
totalUnassignedWorkItems: Scalars['Int']['output'];
|
|
7198
|
+
totalUtilizationPercent: Scalars['Float']['output'];
|
|
7167
7199
|
};
|
|
7168
7200
|
export declare type AgentWorkspaceCoverShiftEditBoundsInput = {
|
|
7169
7201
|
agentId: Scalars['ID']['input'];
|
|
7202
|
+
coveringShiftId: Scalars['ID']['input'];
|
|
7170
7203
|
projectARI: Scalars['ID']['input'];
|
|
7171
7204
|
scheduleId: Scalars['ID']['input'];
|
|
7172
|
-
shiftSegmentId: Scalars['ID']['input'];
|
|
7173
7205
|
};
|
|
7174
7206
|
export declare type AgentWorkspaceCoverageGap = {
|
|
7175
7207
|
__typename?: 'AgentWorkspaceCoverageGap';
|
|
7176
7208
|
agentId: Scalars['ID']['output'];
|
|
7177
7209
|
durationMinutes: Scalars['Int']['output'];
|
|
7178
7210
|
endTime: Scalars['DateTime']['output'];
|
|
7211
|
+
occurrenceStartTime: Scalars['DateTime']['output'];
|
|
7179
7212
|
scheduleId: Scalars['ID']['output'];
|
|
7180
7213
|
scheduleName: Scalars['String']['output'];
|
|
7181
|
-
shiftSegmentId: Scalars['ID']['output'];
|
|
7182
7214
|
startTime: Scalars['DateTime']['output'];
|
|
7183
7215
|
};
|
|
7184
7216
|
export declare type AgentWorkspaceCoveringShift = {
|
|
7185
7217
|
__typename?: 'AgentWorkspaceCoveringShift';
|
|
7186
7218
|
coveringAgentId: Scalars['ID']['output'];
|
|
7219
|
+
coveringShiftId: Scalars['ID']['output'];
|
|
7187
7220
|
durationMinutes: Scalars['Int']['output'];
|
|
7188
7221
|
endTime: Scalars['DateTime']['output'];
|
|
7189
7222
|
scheduleId: Scalars['ID']['output'];
|
|
7190
7223
|
scheduleName: Scalars['String']['output'];
|
|
7191
|
-
shiftSegmentId: Scalars['ID']['output'];
|
|
7192
7224
|
startTime: Scalars['DateTime']['output'];
|
|
7193
7225
|
};
|
|
7194
7226
|
export declare type AgentWorkspaceCreateAndLinkTeamsInput = {
|
|
@@ -7204,13 +7236,14 @@ export declare type AgentWorkspaceCreateAndLinkTeamsPayload = {
|
|
|
7204
7236
|
teamCreationFailures: Array<AgentWorkspaceTeamCreationFailure>;
|
|
7205
7237
|
teamLinkFailures: Array<AgentWorkspaceTeamLinkFailure>;
|
|
7206
7238
|
};
|
|
7207
|
-
export declare type
|
|
7239
|
+
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesInput = {
|
|
7240
|
+
cloudId: Scalars['ID']['input'];
|
|
7208
7241
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
7209
7242
|
fieldId: Scalars['String']['input'];
|
|
7210
|
-
|
|
7243
|
+
projectKey: Scalars['String']['input'];
|
|
7211
7244
|
};
|
|
7212
|
-
export declare type
|
|
7213
|
-
__typename?: '
|
|
7245
|
+
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesPayload = {
|
|
7246
|
+
__typename?: 'AgentWorkspaceCreateDraftedRoutingTableEntriesPayload';
|
|
7214
7247
|
pageInfo: AgentWorkspacePageInfo;
|
|
7215
7248
|
rows: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7216
7249
|
rowsInserted: Scalars['Int']['output'];
|
|
@@ -7257,9 +7290,9 @@ export declare type AgentWorkspaceDefaultCapacity = {
|
|
|
7257
7290
|
};
|
|
7258
7291
|
export declare type AgentWorkspaceDeleteCoverShiftInput = {
|
|
7259
7292
|
agentId: Scalars['ID']['input'];
|
|
7293
|
+
coveringShiftId: Scalars['ID']['input'];
|
|
7260
7294
|
projectARI: Scalars['ID']['input'];
|
|
7261
7295
|
scheduleId: Scalars['ID']['input'];
|
|
7262
|
-
shiftSegmentId: Scalars['ID']['input'];
|
|
7263
7296
|
};
|
|
7264
7297
|
export declare type AgentWorkspaceDeleteCoverShiftPayload = {
|
|
7265
7298
|
__typename?: 'AgentWorkspaceDeleteCoverShiftPayload';
|
|
@@ -7291,16 +7324,8 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
|
|
|
7291
7324
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
7292
7325
|
success: Scalars['Boolean']['output'];
|
|
7293
7326
|
};
|
|
7294
|
-
export declare type
|
|
7295
|
-
|
|
7296
|
-
serviceFieldId: Scalars['ID']['input'];
|
|
7297
|
-
};
|
|
7298
|
-
export declare type AgentWorkspaceDiscardDraftedRoutingTablePayload = {
|
|
7299
|
-
__typename?: 'AgentWorkspaceDiscardDraftedRoutingTablePayload';
|
|
7300
|
-
rowsDeleted: Scalars['Int']['output'];
|
|
7301
|
-
};
|
|
7302
|
-
export declare type AgentWorkspaceDraftedRoutingTable = {
|
|
7303
|
-
__typename?: 'AgentWorkspaceDraftedRoutingTable';
|
|
7327
|
+
export declare type AgentWorkspaceDraftedRoutingTableEntries = {
|
|
7328
|
+
__typename?: 'AgentWorkspaceDraftedRoutingTableEntries';
|
|
7304
7329
|
entries: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7305
7330
|
};
|
|
7306
7331
|
export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
@@ -7309,12 +7334,16 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
|
7309
7334
|
description?: Maybe<Scalars['String']['output']>;
|
|
7310
7335
|
serviceId: Scalars['ID']['output'];
|
|
7311
7336
|
serviceName: Scalars['String']['output'];
|
|
7337
|
+
skills: Array<Scalars['String']['output']>;
|
|
7338
|
+
team?: Maybe<TeamV2>;
|
|
7312
7339
|
teamAri?: Maybe<Scalars['ID']['output']>;
|
|
7340
|
+
version: Scalars['Int']['output'];
|
|
7313
7341
|
};
|
|
7314
7342
|
export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
|
|
7315
7343
|
confidence?: InputMaybe<Scalars['Float']['input']>;
|
|
7316
7344
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7317
7345
|
serviceName?: InputMaybe<Scalars['String']['input']>;
|
|
7346
|
+
skills?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7318
7347
|
source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
|
|
7319
7348
|
teamAri?: InputMaybe<Scalars['ID']['input']>;
|
|
7320
7349
|
};
|
|
@@ -7328,12 +7357,12 @@ export declare type AgentWorkspaceDraftedRoutingTableStatus = {
|
|
|
7328
7357
|
};
|
|
7329
7358
|
export declare type AgentWorkspaceEditCoverShiftInput = {
|
|
7330
7359
|
agentId: Scalars['ID']['input'];
|
|
7360
|
+
coveringShiftId: Scalars['ID']['input'];
|
|
7331
7361
|
newAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
7332
7362
|
newEndTime: Scalars['DateTime']['input'];
|
|
7333
7363
|
newStartTime: Scalars['DateTime']['input'];
|
|
7334
7364
|
projectARI: Scalars['ID']['input'];
|
|
7335
7365
|
scheduleId: Scalars['ID']['input'];
|
|
7336
|
-
shiftSegmentId: Scalars['ID']['input'];
|
|
7337
7366
|
};
|
|
7338
7367
|
export declare type AgentWorkspaceEditCoverShiftPayload = {
|
|
7339
7368
|
__typename?: 'AgentWorkspaceEditCoverShiftPayload';
|
|
@@ -7386,7 +7415,11 @@ export declare type AgentWorkspaceGroupTooLarge = {
|
|
|
7386
7415
|
export declare type AgentWorkspaceIssueRebalancingRecommendation = {
|
|
7387
7416
|
__typename?: 'AgentWorkspaceIssueRebalancingRecommendation';
|
|
7388
7417
|
issueARI: Scalars['ID']['output'];
|
|
7418
|
+
projectedReceiverUtilization: Scalars['Float']['output'];
|
|
7419
|
+
projectedSourceUtilization: Scalars['Float']['output'];
|
|
7389
7420
|
recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
|
|
7421
|
+
sourceAgentId: Scalars['ID']['output'];
|
|
7422
|
+
toAgentId: Scalars['ID']['output'];
|
|
7390
7423
|
};
|
|
7391
7424
|
export declare type AgentWorkspaceIssueRoutingHistory = {
|
|
7392
7425
|
__typename?: 'AgentWorkspaceIssueRoutingHistory';
|
|
@@ -7397,6 +7430,10 @@ export declare type AgentWorkspaceIssueRoutingHistoryEventsArgs = {
|
|
|
7397
7430
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7398
7431
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7399
7432
|
};
|
|
7433
|
+
export declare type AgentWorkspaceLiveRoutingTable = {
|
|
7434
|
+
__typename?: 'AgentWorkspaceLiveRoutingTable';
|
|
7435
|
+
entries: Array<AgentWorkspaceRoutingTableEntry>;
|
|
7436
|
+
};
|
|
7400
7437
|
export declare type AgentWorkspaceMutationError = {
|
|
7401
7438
|
__typename?: 'AgentWorkspaceMutationError';
|
|
7402
7439
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -7432,7 +7469,6 @@ export declare type AgentWorkspaceRecommendedAgentsForCoverageGapInput = {
|
|
|
7432
7469
|
gapOwnerAgentId: Scalars['ID']['input'];
|
|
7433
7470
|
projectARI: Scalars['ID']['input'];
|
|
7434
7471
|
scheduleId: Scalars['ID']['input'];
|
|
7435
|
-
shiftSegmentId: Scalars['ID']['input'];
|
|
7436
7472
|
};
|
|
7437
7473
|
export declare type AgentWorkspaceRecommendedAgentsForCoverageGapPayload = {
|
|
7438
7474
|
__typename?: 'AgentWorkspaceRecommendedAgentsForCoverageGapPayload';
|
|
@@ -7516,22 +7552,13 @@ export declare type AgentWorkspaceRoutingHistoryPageInfo = {
|
|
|
7516
7552
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
7517
7553
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
7518
7554
|
};
|
|
7519
|
-
export declare type AgentWorkspaceRoutingSetupState = {
|
|
7520
|
-
__typename?: 'AgentWorkspaceRoutingSetupState';
|
|
7521
|
-
hasCommittedTable: Scalars['Boolean']['output'];
|
|
7522
|
-
hasDraft: Scalars['Boolean']['output'];
|
|
7523
|
-
hasField: Scalars['Boolean']['output'];
|
|
7524
|
-
};
|
|
7525
|
-
export declare type AgentWorkspaceRoutingTableEntries = {
|
|
7526
|
-
__typename?: 'AgentWorkspaceRoutingTableEntries';
|
|
7527
|
-
entries: Array<AgentWorkspaceRoutingTableEntry>;
|
|
7528
|
-
};
|
|
7529
7555
|
export declare type AgentWorkspaceRoutingTableEntry = {
|
|
7530
7556
|
__typename?: 'AgentWorkspaceRoutingTableEntry';
|
|
7531
7557
|
description: Scalars['String']['output'];
|
|
7532
7558
|
id: Scalars['ID']['output'];
|
|
7533
7559
|
serviceFieldValue: Scalars['String']['output'];
|
|
7534
7560
|
serviceName: Scalars['String']['output'];
|
|
7561
|
+
team?: Maybe<TeamV2>;
|
|
7535
7562
|
teamAri: Scalars['ID']['output'];
|
|
7536
7563
|
};
|
|
7537
7564
|
export declare type AgentWorkspaceRoutingTableGeneration = {
|
|
@@ -7633,6 +7660,10 @@ export declare type AgentWorkspaceSchedulesPageInfo = {
|
|
|
7633
7660
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
7634
7661
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
7635
7662
|
};
|
|
7663
|
+
export declare type AgentWorkspaceSelectedRowVersion = {
|
|
7664
|
+
expectedVersion: Scalars['Int']['input'];
|
|
7665
|
+
serviceId: Scalars['ID']['input'];
|
|
7666
|
+
};
|
|
7636
7667
|
export declare type AgentWorkspaceService = {
|
|
7637
7668
|
__typename?: 'AgentWorkspaceService';
|
|
7638
7669
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -7741,7 +7772,6 @@ export declare type AgentWorkspaceShiftEditBoundsInput = {
|
|
|
7741
7772
|
occurrenceStartTime: Scalars['DateTime']['input'];
|
|
7742
7773
|
projectARI: Scalars['ID']['input'];
|
|
7743
7774
|
scheduleId: Scalars['ID']['input'];
|
|
7744
|
-
shiftStartTime: Scalars['DateTime']['input'];
|
|
7745
7775
|
};
|
|
7746
7776
|
export declare type AgentWorkspaceShiftsAppliedFilters = {
|
|
7747
7777
|
__typename?: 'AgentWorkspaceShiftsAppliedFilters';
|
|
@@ -7805,6 +7835,7 @@ export declare type AgentWorkspaceSkillServicesArgs = {
|
|
|
7805
7835
|
};
|
|
7806
7836
|
export declare type AgentWorkspaceSkillAgentAssignment = {
|
|
7807
7837
|
__typename?: 'AgentWorkspaceSkillAgentAssignment';
|
|
7838
|
+
agent: AgentWorkspaceUser;
|
|
7808
7839
|
skill: AgentWorkspaceSkill;
|
|
7809
7840
|
userAri: Scalars['ID']['output'];
|
|
7810
7841
|
};
|
|
@@ -7873,6 +7904,12 @@ export declare type AgentWorkspaceSkillEdge = {
|
|
|
7873
7904
|
cursor: Scalars['String']['output'];
|
|
7874
7905
|
node: AgentWorkspaceSkill;
|
|
7875
7906
|
};
|
|
7907
|
+
export declare type AgentWorkspaceSkillMappingCreateInput = {
|
|
7908
|
+
category?: InputMaybe<AgentWorkspaceSkillCategoryCreateInput>;
|
|
7909
|
+
categoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
7910
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
7911
|
+
name: Scalars['String']['input'];
|
|
7912
|
+
};
|
|
7876
7913
|
export declare type AgentWorkspaceSkillServiceMapping = {
|
|
7877
7914
|
__typename?: 'AgentWorkspaceSkillServiceMapping';
|
|
7878
7915
|
serviceId: Scalars['ID']['output'];
|
|
@@ -7914,8 +7951,9 @@ export declare type AgentWorkspaceStartGenerateRoutingTableInput = {
|
|
|
7914
7951
|
days?: InputMaybe<Scalars['Int']['input']>;
|
|
7915
7952
|
maxIssues?: InputMaybe<Scalars['Int']['input']>;
|
|
7916
7953
|
projectKey: Scalars['String']['input'];
|
|
7917
|
-
|
|
7954
|
+
selectedRows?: InputMaybe<Array<AgentWorkspaceSelectedRowVersion>>;
|
|
7918
7955
|
serviceFieldId: Scalars['String']['input'];
|
|
7956
|
+
serviceFieldType: Scalars['String']['input'];
|
|
7919
7957
|
};
|
|
7920
7958
|
export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
7921
7959
|
__typename?: 'AgentWorkspaceStartGenerateRoutingTablePayload';
|
|
@@ -7923,9 +7961,10 @@ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
|
7923
7961
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
7924
7962
|
};
|
|
7925
7963
|
export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
|
|
7964
|
+
cloudId: Scalars['ID']['input'];
|
|
7965
|
+
expectedSetupVersion: Scalars['Int']['input'];
|
|
7926
7966
|
fieldId: Scalars['String']['input'];
|
|
7927
|
-
|
|
7928
|
-
projectAri: Scalars['ID']['input'];
|
|
7967
|
+
projectKey: Scalars['String']['input'];
|
|
7929
7968
|
};
|
|
7930
7969
|
export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
7931
7970
|
__typename?: 'AgentWorkspaceSubmitDraftedRoutingTablePayload';
|
|
@@ -8086,6 +8125,22 @@ export declare type AgentWorkspaceUpdateSchedulePayload = {
|
|
|
8086
8125
|
schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
8087
8126
|
success: Scalars['Boolean']['output'];
|
|
8088
8127
|
};
|
|
8128
|
+
export declare type AgentWorkspaceUpdateSkillMappingsInProjectInput = {
|
|
8129
|
+
assignAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8130
|
+
cloudId: Scalars['ID']['input'];
|
|
8131
|
+
mapServiceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8132
|
+
projectId: Scalars['ID']['input'];
|
|
8133
|
+
skill?: InputMaybe<AgentWorkspaceSkillMappingCreateInput>;
|
|
8134
|
+
skillId?: InputMaybe<Scalars['ID']['input']>;
|
|
8135
|
+
unassignAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8136
|
+
unmapServiceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8137
|
+
};
|
|
8138
|
+
export declare type AgentWorkspaceUpdateSkillMappingsInProjectPayload = {
|
|
8139
|
+
__typename?: 'AgentWorkspaceUpdateSkillMappingsInProjectPayload';
|
|
8140
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8141
|
+
skill?: Maybe<AgentWorkspaceSkill>;
|
|
8142
|
+
success: Scalars['Boolean']['output'];
|
|
8143
|
+
};
|
|
8089
8144
|
export declare type AgentWorkspaceUpdateSmartRoutingConfigInput = {
|
|
8090
8145
|
enabled: Scalars['Boolean']['input'];
|
|
8091
8146
|
projectAri: Scalars['ID']['input'];
|
|
@@ -8096,8 +8151,10 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
|
|
|
8096
8151
|
success: Scalars['Boolean']['output'];
|
|
8097
8152
|
};
|
|
8098
8153
|
export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
|
|
8154
|
+
cloudId: Scalars['ID']['input'];
|
|
8155
|
+
expectedVersion: Scalars['Int']['input'];
|
|
8099
8156
|
included?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8100
|
-
|
|
8157
|
+
projectKey: Scalars['String']['input'];
|
|
8101
8158
|
row?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntryPatch>;
|
|
8102
8159
|
serviceFieldId: Scalars['ID']['input'];
|
|
8103
8160
|
serviceId: Scalars['ID']['input'];
|
|
@@ -8164,7 +8221,29 @@ export declare type AiCoreApiRsaEmployeeResult = {
|
|
|
8164
8221
|
__typename?: 'AiCoreApiRsaEmployeeResult';
|
|
8165
8222
|
contributors: Array<AiCoreApiRsaEmployeeContributor>;
|
|
8166
8223
|
};
|
|
8224
|
+
export declare type AiCoreApiRsaEmployeeTickets = {
|
|
8225
|
+
__typename?: 'AiCoreApiRsaEmployeeTickets';
|
|
8226
|
+
accountId: Scalars['ID']['output'];
|
|
8227
|
+
delegationCount: Scalars['Int']['output'];
|
|
8228
|
+
truncated: Scalars['Boolean']['output'];
|
|
8229
|
+
workItemIds: Array<Scalars['ID']['output']>;
|
|
8230
|
+
};
|
|
8231
|
+
export declare type AiCoreApiRsaEmployeeTicketsPayload = {
|
|
8232
|
+
__typename?: 'AiCoreApiRsaEmployeeTicketsPayload';
|
|
8233
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
8234
|
+
employees?: Maybe<Array<AiCoreApiRsaEmployeeTickets>>;
|
|
8235
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
8236
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
8237
|
+
status: AiCoreApiRsaJobStatus;
|
|
8238
|
+
};
|
|
8239
|
+
export declare type AiCoreApiRsaEmployeeTicketsResult = AiCoreApiRsaEmployeeTicketsPayload | QueryError;
|
|
8167
8240
|
export declare type AiCoreApiRsaFetchReportResult = AiCoreApiRsaReportPayload | QueryError;
|
|
8241
|
+
export declare type AiCoreApiRsaFunnelMetricsPayload = {
|
|
8242
|
+
__typename?: 'AiCoreApiRsaFunnelMetricsPayload';
|
|
8243
|
+
ticketsAssignedToRovo: Scalars['Int']['output'];
|
|
8244
|
+
ticketsWithResolutionPlan: Scalars['Int']['output'];
|
|
8245
|
+
};
|
|
8246
|
+
export declare type AiCoreApiRsaFunnelMetricsResult = AiCoreApiRsaFunnelMetricsPayload | QueryError;
|
|
8168
8247
|
export declare type AiCoreApiRsaFunnelResult = {
|
|
8169
8248
|
__typename?: 'AiCoreApiRsaFunnelResult';
|
|
8170
8249
|
autonomouslyResolved: Scalars['Int']['output'];
|
|
@@ -8213,6 +8292,7 @@ export declare type AiCoreApiRsaRequestTypeEntry = {
|
|
|
8213
8292
|
__typename?: 'AiCoreApiRsaRequestTypeEntry';
|
|
8214
8293
|
assisted: Scalars['Int']['output'];
|
|
8215
8294
|
fullyResolved: Scalars['Int']['output'];
|
|
8295
|
+
requestTypeId: Scalars['String']['output'];
|
|
8216
8296
|
requestTypeName: Scalars['String']['output'];
|
|
8217
8297
|
totalClosed: Scalars['Int']['output'];
|
|
8218
8298
|
};
|
|
@@ -8258,9 +8338,7 @@ export declare type AiCoreApiVsaUnassistedConversationStatsWithMetaData = {
|
|
|
8258
8338
|
};
|
|
8259
8339
|
export declare type AiManagedObject = {
|
|
8260
8340
|
__typename?: 'AiManagedObject';
|
|
8261
|
-
ari: Scalars['String']['output'];
|
|
8262
8341
|
config?: Maybe<AiManagedObjectConfig>;
|
|
8263
|
-
configVersions: AiManagedObjectConfigConnection;
|
|
8264
8342
|
createdAt: Scalars['Long']['output'];
|
|
8265
8343
|
createdBy: Scalars['String']['output'];
|
|
8266
8344
|
deletedAt?: Maybe<Scalars['Long']['output']>;
|
|
@@ -8275,42 +8353,28 @@ export declare type AiManagedObject = {
|
|
|
8275
8353
|
status: AiManagedObjectStatus;
|
|
8276
8354
|
type: AiManagedObjectType;
|
|
8277
8355
|
};
|
|
8278
|
-
export declare type AiManagedObjectConfigVersionsArgs = {
|
|
8279
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
8280
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8281
|
-
};
|
|
8282
8356
|
export declare type AiManagedObjectConfig = {
|
|
8283
8357
|
__typename?: 'AiManagedObjectConfig';
|
|
8284
8358
|
agentId?: Maybe<Scalars['String']['output']>;
|
|
8285
|
-
aiManagedObjectAri: Scalars['String']['output'];
|
|
8286
8359
|
aiManagedObjectId: Scalars['ID']['output'];
|
|
8287
8360
|
createdAt: Scalars['Long']['output'];
|
|
8288
8361
|
createdBy: Scalars['String']['output'];
|
|
8289
8362
|
desiredUpdateInterval?: Maybe<Scalars['String']['output']>;
|
|
8290
8363
|
goal?: Maybe<Scalars['String']['output']>;
|
|
8364
|
+
goalOperations?: Maybe<Scalars['JSON']['output']>;
|
|
8291
8365
|
id: Scalars['ID']['output'];
|
|
8292
8366
|
prompt: Scalars['String']['output'];
|
|
8293
8367
|
sources?: Maybe<Array<AiManagedObjectSource>>;
|
|
8294
8368
|
version: Scalars['Int']['output'];
|
|
8295
8369
|
};
|
|
8296
|
-
export declare type AiManagedObjectConfigConnection = {
|
|
8297
|
-
__typename?: 'AiManagedObjectConfigConnection';
|
|
8298
|
-
edges: Array<AiManagedObjectConfigEdge>;
|
|
8299
|
-
pageInfo: PageInfo;
|
|
8300
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
8301
|
-
};
|
|
8302
8370
|
export declare type AiManagedObjectConfigCreateInput = {
|
|
8303
8371
|
agentId?: InputMaybe<Scalars['String']['input']>;
|
|
8304
8372
|
desiredUpdateInterval?: InputMaybe<Scalars['String']['input']>;
|
|
8305
8373
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
8374
|
+
goalOperations?: InputMaybe<Scalars['JSON']['input']>;
|
|
8306
8375
|
prompt: Scalars['String']['input'];
|
|
8307
8376
|
sources?: InputMaybe<Array<AiManagedObjectSourceInput>>;
|
|
8308
8377
|
};
|
|
8309
|
-
export declare type AiManagedObjectConfigEdge = {
|
|
8310
|
-
__typename?: 'AiManagedObjectConfigEdge';
|
|
8311
|
-
cursor: Scalars['String']['output'];
|
|
8312
|
-
node: AiManagedObjectConfig;
|
|
8313
|
-
};
|
|
8314
8378
|
export declare type AiManagedObjectConnection = {
|
|
8315
8379
|
__typename?: 'AiManagedObjectConnection';
|
|
8316
8380
|
edges: Array<AiManagedObjectEdge>;
|
|
@@ -9344,6 +9408,7 @@ export declare type AppPermission = {
|
|
|
9344
9408
|
icId?: Maybe<Scalars['String']['output']>;
|
|
9345
9409
|
scopes: Array<AppHostServiceScope>;
|
|
9346
9410
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermission>>;
|
|
9411
|
+
supportsConfigurableEgress?: Maybe<Scalars['Boolean']['output']>;
|
|
9347
9412
|
};
|
|
9348
9413
|
export declare type AppPrincipal = {
|
|
9349
9414
|
__typename?: 'AppPrincipal';
|
|
@@ -10696,6 +10761,7 @@ export declare type AssetsDmDataSource = {
|
|
|
10696
10761
|
dataSourceType?: Maybe<AssetsDmJobDetailsDataSourceType>;
|
|
10697
10762
|
dataSourceTypeId?: Maybe<Scalars['Int']['output']>;
|
|
10698
10763
|
isJobExecutionFailed?: Maybe<Scalars['Boolean']['output']>;
|
|
10764
|
+
isScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
10699
10765
|
jobId?: Maybe<Scalars['String']['output']>;
|
|
10700
10766
|
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
10701
10767
|
lastExecutionName?: Maybe<Scalars['String']['output']>;
|
|
@@ -10972,6 +11038,7 @@ export declare type AssetsDmDataSourceDetailResponse = {
|
|
|
10972
11038
|
};
|
|
10973
11039
|
export declare type AssetsDmDataSourceDetails = {
|
|
10974
11040
|
__typename?: 'AssetsDMDataSourceDetails';
|
|
11041
|
+
canBeScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
10975
11042
|
dataSourceId?: Maybe<Scalars['ID']['output']>;
|
|
10976
11043
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
10977
11044
|
isCloudFetchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -10979,6 +11046,7 @@ export declare type AssetsDmDataSourceDetails = {
|
|
|
10979
11046
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
10980
11047
|
name: Scalars['String']['output'];
|
|
10981
11048
|
objectClassName: Scalars['String']['output'];
|
|
11049
|
+
schedule?: Maybe<AssetsDmDataSourceSchedule>;
|
|
10982
11050
|
steps: AssetsDmDataSourceSteps;
|
|
10983
11051
|
};
|
|
10984
11052
|
export declare type AssetsDmDataSourceFormFields = {
|
|
@@ -11178,6 +11246,13 @@ export declare type AssetsDmDataSourceRunTransformResponse = {
|
|
|
11178
11246
|
isSuccessful: Scalars['Boolean']['output'];
|
|
11179
11247
|
message?: Maybe<Scalars['String']['output']>;
|
|
11180
11248
|
};
|
|
11249
|
+
export declare type AssetsDmDataSourceSchedule = {
|
|
11250
|
+
__typename?: 'AssetsDMDataSourceSchedule';
|
|
11251
|
+
frequency?: Maybe<Scalars['Int']['output']>;
|
|
11252
|
+
scheduledImportId?: Maybe<Scalars['ID']['output']>;
|
|
11253
|
+
startDateUtc?: Maybe<Scalars['String']['output']>;
|
|
11254
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
11255
|
+
};
|
|
11181
11256
|
export declare type AssetsDmDataSourceSearch = {
|
|
11182
11257
|
dataSourceType?: InputMaybe<Scalars['String']['input']>;
|
|
11183
11258
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -11826,6 +11901,16 @@ export declare type AssetsDmJobExecutionsResponse = {
|
|
|
11826
11901
|
rows: Array<AssetsDmJobExecution>;
|
|
11827
11902
|
rowsCount: Scalars['Int']['output'];
|
|
11828
11903
|
};
|
|
11904
|
+
export declare type AssetsDmJobScheduleInput = {
|
|
11905
|
+
frequency: Scalars['Int']['input'];
|
|
11906
|
+
startDateUtc: Scalars['String']['input'];
|
|
11907
|
+
timezone: Scalars['String']['input'];
|
|
11908
|
+
};
|
|
11909
|
+
export declare type AssetsDmJobScheduleMutationResponse = {
|
|
11910
|
+
__typename?: 'AssetsDMJobScheduleMutationResponse';
|
|
11911
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
11912
|
+
message: Scalars['String']['output'];
|
|
11913
|
+
};
|
|
11829
11914
|
export declare type AssetsDmMappedColumn = {
|
|
11830
11915
|
__typename?: 'AssetsDMMappedColumn';
|
|
11831
11916
|
columnMappingId: Scalars['ID']['output'];
|
|
@@ -13564,6 +13649,41 @@ export declare type AssetsVerticalGroupPrincipal = {
|
|
|
13564
13649
|
group?: Maybe<IdentityGroup>;
|
|
13565
13650
|
principalId: Scalars['ID']['output'];
|
|
13566
13651
|
};
|
|
13652
|
+
export declare type AssetsVerticalHardwareCountByStatus = {
|
|
13653
|
+
__typename?: 'AssetsVerticalHardwareCountByStatus';
|
|
13654
|
+
counts?: Maybe<Array<Maybe<AssetsVerticalStatusCount>>>;
|
|
13655
|
+
};
|
|
13656
|
+
export declare type AssetsVerticalHardwareCountByStatusInput = {
|
|
13657
|
+
filters?: InputMaybe<Array<Array<AssetsVerticalObjectsFilterCondition>>>;
|
|
13658
|
+
statusField: Scalars['String']['input'];
|
|
13659
|
+
statuses: Array<Scalars['String']['input']>;
|
|
13660
|
+
verticalInstantiationCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
13661
|
+
};
|
|
13662
|
+
export declare type AssetsVerticalHardwareCountByStatusResult = AssetsVerticalHardwareCountByStatus | QueryError;
|
|
13663
|
+
export declare type AssetsVerticalHardwareObjectTypesInput = {
|
|
13664
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
13665
|
+
workspaceId: Scalars['ID']['input'];
|
|
13666
|
+
};
|
|
13667
|
+
export declare type AssetsVerticalHardwareObjectTypesResult = AssetsVerticalObjectTypes | QueryError;
|
|
13668
|
+
export declare type AssetsVerticalHardwareObjects = AssetsVerticalObjects & {
|
|
13669
|
+
__typename?: 'AssetsVerticalHardwareObjects';
|
|
13670
|
+
itamObjects?: Maybe<Array<Maybe<AssetsVerticalItamObjects>>>;
|
|
13671
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
13672
|
+
objects?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
13673
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
13674
|
+
pageInfo?: Maybe<PageInfo>;
|
|
13675
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
13676
|
+
};
|
|
13677
|
+
export declare type AssetsVerticalHardwareObjectsInput = {
|
|
13678
|
+
filters?: InputMaybe<Array<Array<AssetsVerticalObjectsFilterCondition>>>;
|
|
13679
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
13680
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
13681
|
+
orderDirection?: InputMaybe<AssetsVerticalObjectsOrderDirection>;
|
|
13682
|
+
orderKey?: InputMaybe<Scalars['String']['input']>;
|
|
13683
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
13684
|
+
workspaceId: Scalars['ID']['input'];
|
|
13685
|
+
};
|
|
13686
|
+
export declare type AssetsVerticalHardwareObjectsResult = AssetsVerticalHardwareObjects | QueryError;
|
|
13567
13687
|
export declare type AssetsVerticalInsightCard = {
|
|
13568
13688
|
__typename?: 'AssetsVerticalInsightCard';
|
|
13569
13689
|
category: Scalars['String']['output'];
|
|
@@ -14404,20 +14524,6 @@ export declare enum AutoManagedSprintSetting {
|
|
|
14404
14524
|
Disabled = "DISABLED",
|
|
14405
14525
|
Enabled = "ENABLED"
|
|
14406
14526
|
}
|
|
14407
|
-
export declare type AuxEffectsInvocationPayload = {
|
|
14408
|
-
config?: InputMaybe<Scalars['JSON']['input']>;
|
|
14409
|
-
context: Scalars['JSON']['input'];
|
|
14410
|
-
contextToken?: InputMaybe<Scalars['String']['input']>;
|
|
14411
|
-
effects: Array<Scalars['JSON']['input']>;
|
|
14412
|
-
extensionPayload?: InputMaybe<Scalars['JSON']['input']>;
|
|
14413
|
-
state: Scalars['JSON']['input'];
|
|
14414
|
-
};
|
|
14415
|
-
export declare type AuxEffectsResult = {
|
|
14416
|
-
__typename?: 'AuxEffectsResult';
|
|
14417
|
-
contextToken?: Maybe<ForgeContextToken>;
|
|
14418
|
-
effects: Array<Scalars['JSON']['output']>;
|
|
14419
|
-
metrics?: Maybe<InvocationMetrics>;
|
|
14420
|
-
};
|
|
14421
14527
|
export declare type AvailableColumnConstraintStatistics = {
|
|
14422
14528
|
__typename?: 'AvailableColumnConstraintStatistics';
|
|
14423
14529
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -15342,6 +15448,7 @@ export declare type CcpAllowancePoolAllocationsResponse = {
|
|
|
15342
15448
|
allowance?: Maybe<Scalars['Float']['output']>;
|
|
15343
15449
|
balance?: Maybe<Scalars['Float']['output']>;
|
|
15344
15450
|
billingEntity?: Maybe<Scalars['String']['output']>;
|
|
15451
|
+
enforcementDetails?: Maybe<CcpEnforcementDetails>;
|
|
15345
15452
|
enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
|
|
15346
15453
|
id?: Maybe<Scalars['String']['output']>;
|
|
15347
15454
|
latestUsage?: Maybe<Scalars['Float']['output']>;
|
|
@@ -15837,6 +15944,17 @@ export declare type CcpEligiblePromotionWindow = {
|
|
|
15837
15944
|
endTime?: Maybe<Scalars['Float']['output']>;
|
|
15838
15945
|
startTime?: Maybe<Scalars['Float']['output']>;
|
|
15839
15946
|
};
|
|
15947
|
+
export declare type CcpEnforcementDetails = {
|
|
15948
|
+
__typename?: 'CcpEnforcementDetails';
|
|
15949
|
+
allowed?: Maybe<Scalars['Boolean']['output']>;
|
|
15950
|
+
reason?: Maybe<CcpEnforcementReasonCode>;
|
|
15951
|
+
};
|
|
15952
|
+
export declare enum CcpEnforcementReasonCode {
|
|
15953
|
+
BaseAllowanceExhausted = "BASE_ALLOWANCE_EXHAUSTED",
|
|
15954
|
+
EnforcementExempted = "ENFORCEMENT_EXEMPTED",
|
|
15955
|
+
MeterNotOnboarded = "METER_NOT_ONBOARDED",
|
|
15956
|
+
OverageCapExceeded = "OVERAGE_CAP_EXCEEDED"
|
|
15957
|
+
}
|
|
15840
15958
|
export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
15841
15959
|
__typename?: 'CcpEntitlement';
|
|
15842
15960
|
allowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationsResponse>>>;
|
|
@@ -15863,6 +15981,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
15863
15981
|
hasSid?: Maybe<Scalars['Boolean']['output']>;
|
|
15864
15982
|
id: Scalars['ID']['output'];
|
|
15865
15983
|
invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
|
|
15984
|
+
isActiveOnContract?: Maybe<Scalars['Boolean']['output']>;
|
|
15866
15985
|
isEligibleForCloudMigrationTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
15867
15986
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
15868
15987
|
license?: Maybe<CcpLicense>;
|
|
@@ -15937,6 +16056,7 @@ export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementEx
|
|
|
15937
16056
|
compareOfferings?: Maybe<CcpCompareOfferingsExperienceCapability>;
|
|
15938
16057
|
manageEntitlement?: Maybe<CcpManageEntitlementExperienceCapability>;
|
|
15939
16058
|
placeOrderLite?: Maybe<CcpPlaceOrderLiteExperienceCapability>;
|
|
16059
|
+
setUsageLimit?: Maybe<CcpSetUsageLimitExperienceCapability>;
|
|
15940
16060
|
unbundleApps?: Maybe<CcpUnbundleAppsExperienceCapability>;
|
|
15941
16061
|
};
|
|
15942
16062
|
export declare type CcpEntitlementExperienceCapabilitiesApplyEntitlementPromotionArgs = {
|
|
@@ -17429,6 +17549,11 @@ export declare type CcpSearchTimestampBoundsInput = {
|
|
|
17429
17549
|
gte?: InputMaybe<Scalars['String']['input']>;
|
|
17430
17550
|
lte?: InputMaybe<Scalars['String']['input']>;
|
|
17431
17551
|
};
|
|
17552
|
+
export declare type CcpSetUsageLimitExperienceCapability = CommerceExperienceCapability & {
|
|
17553
|
+
__typename?: 'CcpSetUsageLimitExperienceCapability';
|
|
17554
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
17555
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
17556
|
+
};
|
|
17432
17557
|
export declare type CcpShipToParty = Node & {
|
|
17433
17558
|
__typename?: 'CcpShipToParty';
|
|
17434
17559
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
@@ -18200,6 +18325,7 @@ export declare type CloudifyRecommendation = {
|
|
|
18200
18325
|
createdAt: Scalars['String']['output'];
|
|
18201
18326
|
id: CloudifyRecommendationId;
|
|
18202
18327
|
reasoning: Scalars['String']['output'];
|
|
18328
|
+
status: CloudifyRecommendationStatus;
|
|
18203
18329
|
steps: Array<CloudifyRecommendationStep>;
|
|
18204
18330
|
target: CloudifyRecommendationTarget;
|
|
18205
18331
|
title: Scalars['String']['output'];
|
|
@@ -18218,6 +18344,15 @@ export declare type CloudifyRecommendationInput = {
|
|
|
18218
18344
|
target: CloudifyTargetInput;
|
|
18219
18345
|
title: Scalars['String']['input'];
|
|
18220
18346
|
};
|
|
18347
|
+
export declare enum CloudifyRecommendationStatus {
|
|
18348
|
+
Disabled = "DISABLED",
|
|
18349
|
+
Enabled = "ENABLED",
|
|
18350
|
+
Failed = "FAILED",
|
|
18351
|
+
New = "NEW",
|
|
18352
|
+
Preparing = "PREPARING",
|
|
18353
|
+
ReadyForReview = "READY_FOR_REVIEW",
|
|
18354
|
+
Rejected = "REJECTED"
|
|
18355
|
+
}
|
|
18221
18356
|
export declare type CloudifyRecommendationStep = {
|
|
18222
18357
|
__typename?: 'CloudifyRecommendationStep';
|
|
18223
18358
|
arguments: Array<CloudifyArgument>;
|
|
@@ -19757,6 +19892,7 @@ export declare type CommerceExpCcpTransactionAccount = {
|
|
|
19757
19892
|
billToParty?: Maybe<CommerceExpBillToParty>;
|
|
19758
19893
|
billToPartyResult?: Maybe<CommerceExpBillToPartyResult>;
|
|
19759
19894
|
billingAdminIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
19895
|
+
billingAdmins2?: Maybe<Array<Maybe<User>>>;
|
|
19760
19896
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19761
19897
|
createdAt2?: Maybe<Scalars['Float']['output']>;
|
|
19762
19898
|
creditDetails?: Maybe<Array<Maybe<CommerceExpCreditDetails>>>;
|
|
@@ -29778,6 +29914,18 @@ export declare type ConfluenceDisableGlobalPageBlueprintPayload = Payload & {
|
|
|
29778
29914
|
errors?: Maybe<Array<MutationError>>;
|
|
29779
29915
|
success: Scalars['Boolean']['output'];
|
|
29780
29916
|
};
|
|
29917
|
+
export declare type ConfluenceDisableSystemRoleInput = {
|
|
29918
|
+
anonymousRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
29919
|
+
guestRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
29920
|
+
newRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
29921
|
+
roleId: Scalars['ID']['input'];
|
|
29922
|
+
};
|
|
29923
|
+
export declare type ConfluenceDisableSystemRolePayload = Payload & {
|
|
29924
|
+
__typename?: 'ConfluenceDisableSystemRolePayload';
|
|
29925
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29926
|
+
success: Scalars['Boolean']['output'];
|
|
29927
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
29928
|
+
};
|
|
29781
29929
|
export declare type ConfluenceDraftContentNativeProperties = {
|
|
29782
29930
|
__typename?: 'ConfluenceDraftContentNativeProperties';
|
|
29783
29931
|
contentState?: Maybe<ConfluenceContentState>;
|
|
@@ -32818,6 +32966,14 @@ export declare type ConfluenceRestoreContentVersionPayload = {
|
|
|
32818
32966
|
success: Scalars['Boolean']['output'];
|
|
32819
32967
|
version: Version;
|
|
32820
32968
|
};
|
|
32969
|
+
export declare type ConfluenceRestoreSystemRoleInput = {
|
|
32970
|
+
roleId: Scalars['ID']['input'];
|
|
32971
|
+
};
|
|
32972
|
+
export declare type ConfluenceRestoreSystemRolePayload = Payload & {
|
|
32973
|
+
__typename?: 'ConfluenceRestoreSystemRolePayload';
|
|
32974
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32975
|
+
success: Scalars['Boolean']['output'];
|
|
32976
|
+
};
|
|
32821
32977
|
export declare type ConfluenceRestrictingContent = {
|
|
32822
32978
|
__typename?: 'ConfluenceRestrictingContent';
|
|
32823
32979
|
id: Scalars['ID']['output'];
|
|
@@ -32998,6 +33154,15 @@ export declare type ConfluenceSetSubCalendarReminderPayload = {
|
|
|
32998
33154
|
subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
|
|
32999
33155
|
success: Scalars['Boolean']['output'];
|
|
33000
33156
|
};
|
|
33157
|
+
export declare type ConfluenceSetSystemOperationRoleConfigurationInput = {
|
|
33158
|
+
roleId?: InputMaybe<Scalars['String']['input']>;
|
|
33159
|
+
systemOperation: ConfluenceSystemOperation;
|
|
33160
|
+
};
|
|
33161
|
+
export declare type ConfluenceSetSystemOperationRoleConfigurationPayload = Payload & {
|
|
33162
|
+
__typename?: 'ConfluenceSetSystemOperationRoleConfigurationPayload';
|
|
33163
|
+
errors?: Maybe<Array<MutationError>>;
|
|
33164
|
+
success: Scalars['Boolean']['output'];
|
|
33165
|
+
};
|
|
33001
33166
|
export declare type ConfluenceShareConfiguration = {
|
|
33002
33167
|
__typename?: 'ConfluenceShareConfiguration';
|
|
33003
33168
|
disableSharingToEmails: Scalars['Boolean']['output'];
|
|
@@ -33603,6 +33768,22 @@ export declare type ConfluenceSyncSmartFolderPayload = Payload & {
|
|
|
33603
33768
|
errors?: Maybe<Array<MutationError>>;
|
|
33604
33769
|
success: Scalars['Boolean']['output'];
|
|
33605
33770
|
};
|
|
33771
|
+
export declare enum ConfluenceSystemOperation {
|
|
33772
|
+
CompanyHubAdmin = "COMPANY_HUB_ADMIN",
|
|
33773
|
+
CompanyHubViewer = "COMPANY_HUB_VIEWER",
|
|
33774
|
+
DefaultGuestAssignment = "DEFAULT_GUEST_ASSIGNMENT",
|
|
33775
|
+
EcosystemAppWrite = "ECOSYSTEM_APP_WRITE",
|
|
33776
|
+
FallbackRole = "FALLBACK_ROLE",
|
|
33777
|
+
RecoverSpace = "RECOVER_SPACE",
|
|
33778
|
+
SpaceOwner = "SPACE_OWNER"
|
|
33779
|
+
}
|
|
33780
|
+
export declare type ConfluenceSystemOperationRoleConfiguration = {
|
|
33781
|
+
__typename?: 'ConfluenceSystemOperationRoleConfiguration';
|
|
33782
|
+
defaultRoleId: Scalars['String']['output'];
|
|
33783
|
+
description: Scalars['String']['output'];
|
|
33784
|
+
roleId?: Maybe<Scalars['String']['output']>;
|
|
33785
|
+
systemOperation: ConfluenceSystemOperation;
|
|
33786
|
+
};
|
|
33606
33787
|
export declare type ConfluenceSystemTemplate = {
|
|
33607
33788
|
__typename?: 'ConfluenceSystemTemplate';
|
|
33608
33789
|
id: Scalars['ID']['output'];
|
|
@@ -36260,6 +36441,9 @@ export declare type CplsAddContributionsPayload = Payload & {
|
|
|
36260
36441
|
success: Scalars['Boolean']['output'];
|
|
36261
36442
|
works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
|
|
36262
36443
|
};
|
|
36444
|
+
export declare type CplsAddContributionsPayloadContributorsArgs = {
|
|
36445
|
+
includeSuggestions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36446
|
+
};
|
|
36263
36447
|
export declare type CplsAddContributionsPayloadPeopleViewArgs = {
|
|
36264
36448
|
scopeId: Scalars['ID']['input'];
|
|
36265
36449
|
};
|
|
@@ -37921,6 +38105,7 @@ export declare type CsmAiAuthoredCoachingContentInput = {
|
|
|
37921
38105
|
};
|
|
37922
38106
|
export declare type CsmAiAvailableKnowledgeSource = {
|
|
37923
38107
|
__typename?: 'CsmAiAvailableKnowledgeSource';
|
|
38108
|
+
isAgentUserOAuthed: Scalars['Boolean']['output'];
|
|
37924
38109
|
isConfigured: Scalars['Boolean']['output'];
|
|
37925
38110
|
isConnected: Scalars['Boolean']['output'];
|
|
37926
38111
|
sourceType: Scalars['String']['output'];
|
|
@@ -39229,8 +39414,22 @@ export declare type CustomerServiceLiveChatAgent = {
|
|
|
39229
39414
|
id: Scalars['ID']['output'];
|
|
39230
39415
|
liveChatActivitiesBySpace?: Maybe<CustomerServiceSpaceLiveChatActivitiesConnection>;
|
|
39231
39416
|
liveChatActivity?: Maybe<Scalars['String']['output']>;
|
|
39417
|
+
user?: Maybe<User>;
|
|
39418
|
+
};
|
|
39419
|
+
export declare type CustomerServiceLiveChatAgentConnection = {
|
|
39420
|
+
__typename?: 'CustomerServiceLiveChatAgentConnection';
|
|
39421
|
+
edges: Array<CustomerServiceLiveChatAgentEdge>;
|
|
39422
|
+
pageInfo: PageInfo;
|
|
39423
|
+
};
|
|
39424
|
+
export declare type CustomerServiceLiveChatAgentEdge = {
|
|
39425
|
+
__typename?: 'CustomerServiceLiveChatAgentEdge';
|
|
39426
|
+
cursor: Scalars['String']['output'];
|
|
39427
|
+
node?: Maybe<CustomerServiceLiveChatAgent>;
|
|
39232
39428
|
};
|
|
39233
39429
|
export declare type CustomerServiceLiveChatAgentQueryResult = CustomerServiceLiveChatAgent | QueryError;
|
|
39430
|
+
export declare type CustomerServiceLiveChatAgentsFilterInput = {
|
|
39431
|
+
availableInSpace?: InputMaybe<Scalars['ID']['input']>;
|
|
39432
|
+
};
|
|
39234
39433
|
export declare type CustomerServiceLiveChatSettings = {
|
|
39235
39434
|
__typename?: 'CustomerServiceLiveChatSettings';
|
|
39236
39435
|
globalCapacity?: Maybe<Scalars['Int']['output']>;
|
|
@@ -39975,6 +40174,7 @@ export declare type CustomerServiceUpdateCustomerNameInput = {
|
|
|
39975
40174
|
};
|
|
39976
40175
|
export declare type CustomerServiceUpdateCustomerNamePayload = Payload & {
|
|
39977
40176
|
__typename?: 'CustomerServiceUpdateCustomerNamePayload';
|
|
40177
|
+
customer?: Maybe<CustomerServiceIndividual>;
|
|
39978
40178
|
errors?: Maybe<Array<MutationError>>;
|
|
39979
40179
|
success: Scalars['Boolean']['output'];
|
|
39980
40180
|
updatedCustomer?: Maybe<CustomerServiceUpdatedCustomerAccount>;
|
|
@@ -40810,6 +41010,22 @@ export declare type DevAiAutodevNextAssociatedWorkstream = {
|
|
|
40810
41010
|
name?: Maybe<Scalars['String']['output']>;
|
|
40811
41011
|
status: Scalars['ID']['output'];
|
|
40812
41012
|
};
|
|
41013
|
+
export declare type DevAiAutodevNextCompleteWorkItemRefinementInput = {
|
|
41014
|
+
cloudId: Scalars['ID']['input'];
|
|
41015
|
+
state: DevAiAutodevNextCompleteWorkItemRefinementState;
|
|
41016
|
+
workItemBody?: InputMaybe<Scalars['String']['input']>;
|
|
41017
|
+
workItemId: Scalars['ID']['input'];
|
|
41018
|
+
};
|
|
41019
|
+
export declare type DevAiAutodevNextCompleteWorkItemRefinementPayload = Payload & {
|
|
41020
|
+
__typename?: 'DevAiAutodevNextCompleteWorkItemRefinementPayload';
|
|
41021
|
+
errors?: Maybe<Array<MutationError>>;
|
|
41022
|
+
success: Scalars['Boolean']['output'];
|
|
41023
|
+
workItem?: Maybe<DevAiAutodevNextWorkItem>;
|
|
41024
|
+
};
|
|
41025
|
+
export declare enum DevAiAutodevNextCompleteWorkItemRefinementState {
|
|
41026
|
+
OutOfScope = "OUT_OF_SCOPE",
|
|
41027
|
+
Ready = "READY"
|
|
41028
|
+
}
|
|
40813
41029
|
export declare type DevAiAutodevNextCreateWorkstreamInput = {
|
|
40814
41030
|
cloudId: Scalars['ID']['input'];
|
|
40815
41031
|
findWorkMode: DevAiAutodevNextWorkstreamFindWorkMode;
|
|
@@ -40972,6 +41188,18 @@ export declare type DevAiAutodevNextSendWorkstreamNudgesPayload = Payload & {
|
|
|
40972
41188
|
errors?: Maybe<Array<MutationError>>;
|
|
40973
41189
|
success: Scalars['Boolean']['output'];
|
|
40974
41190
|
};
|
|
41191
|
+
export declare type DevAiAutodevNextTriggerWorkstreamScanInput = {
|
|
41192
|
+
cloudId: Scalars['ID']['input'];
|
|
41193
|
+
workstreamId: Scalars['ID']['input'];
|
|
41194
|
+
};
|
|
41195
|
+
export declare type DevAiAutodevNextTriggerWorkstreamScanPayload = Payload & {
|
|
41196
|
+
__typename?: 'DevAiAutodevNextTriggerWorkstreamScanPayload';
|
|
41197
|
+
errors?: Maybe<Array<MutationError>>;
|
|
41198
|
+
findWorkMode?: Maybe<Scalars['ID']['output']>;
|
|
41199
|
+
scansTriggered?: Maybe<Scalars['Int']['output']>;
|
|
41200
|
+
skippedReason?: Maybe<Scalars['ID']['output']>;
|
|
41201
|
+
success: Scalars['Boolean']['output'];
|
|
41202
|
+
};
|
|
40975
41203
|
export declare type DevAiAutodevNextUpdateWorkstreamInput = {
|
|
40976
41204
|
cloudId: Scalars['ID']['input'];
|
|
40977
41205
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -41312,7 +41540,11 @@ export declare type DevAiFlowRepository = {
|
|
|
41312
41540
|
};
|
|
41313
41541
|
export declare type DevAiFlowRepositoryConnection = {
|
|
41314
41542
|
__typename?: 'DevAiFlowRepositoryConnection';
|
|
41543
|
+
bitbucketWorkspacesSearched?: Maybe<Scalars['Int']['output']>;
|
|
41315
41544
|
edges?: Maybe<Array<Maybe<DevAiFlowRepositoryEdge>>>;
|
|
41545
|
+
errors?: Maybe<Array<Maybe<DevAiFlowRepositoryError>>>;
|
|
41546
|
+
githubWorkspacesSearched?: Maybe<Scalars['Int']['output']>;
|
|
41547
|
+
metadata?: Maybe<Array<Maybe<DevAiFlowRepositoryMetadata>>>;
|
|
41316
41548
|
pageInfo: PageInfo;
|
|
41317
41549
|
};
|
|
41318
41550
|
export declare type DevAiFlowRepositoryEdge = {
|
|
@@ -41320,6 +41552,17 @@ export declare type DevAiFlowRepositoryEdge = {
|
|
|
41320
41552
|
cursor: Scalars['String']['output'];
|
|
41321
41553
|
node?: Maybe<DevAiFlowRepository>;
|
|
41322
41554
|
};
|
|
41555
|
+
export declare type DevAiFlowRepositoryError = {
|
|
41556
|
+
__typename?: 'DevAiFlowRepositoryError';
|
|
41557
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
41558
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
41559
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
41560
|
+
};
|
|
41561
|
+
export declare type DevAiFlowRepositoryMetadata = {
|
|
41562
|
+
__typename?: 'DevAiFlowRepositoryMetadata';
|
|
41563
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
41564
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
41565
|
+
};
|
|
41323
41566
|
export declare type DevAiFlowSession = {
|
|
41324
41567
|
__typename?: 'DevAiFlowSession';
|
|
41325
41568
|
additionalInfoJSON?: Maybe<Scalars['String']['output']>;
|
|
@@ -41784,6 +42027,7 @@ export declare enum DevAiSandboxReadiness {
|
|
|
41784
42027
|
Creating = "CREATING",
|
|
41785
42028
|
Error = "ERROR",
|
|
41786
42029
|
Hibernated = "HIBERNATED",
|
|
42030
|
+
InitScriptRunning = "INIT_SCRIPT_RUNNING",
|
|
41787
42031
|
Ready = "READY",
|
|
41788
42032
|
Started = "STARTED",
|
|
41789
42033
|
Starting = "STARTING",
|
|
@@ -42045,6 +42289,7 @@ export declare type DevConsoleAppUsageOverviewResponse = {
|
|
|
42045
42289
|
export declare type DevConsoleAppUsageTopSitesFiltersInput = {
|
|
42046
42290
|
computeType?: InputMaybe<DevConsoleComputeType>;
|
|
42047
42291
|
interval: DevConsoleDateIntervalInput;
|
|
42292
|
+
modelTier?: InputMaybe<Scalars['String']['input']>;
|
|
42048
42293
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
42049
42294
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
42050
42295
|
resource: DevConsoleResource;
|
|
@@ -44141,6 +44386,11 @@ export declare enum EcosystemAppsInstalledInContextsSortKey {
|
|
|
44141
44386
|
Name = "NAME",
|
|
44142
44387
|
RelatedApps = "RELATED_APPS"
|
|
44143
44388
|
}
|
|
44389
|
+
export declare type EcosystemCancelRollingReleasePayload = Payload & {
|
|
44390
|
+
__typename?: 'EcosystemCancelRollingReleasePayload';
|
|
44391
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44392
|
+
success: Scalars['Boolean']['output'];
|
|
44393
|
+
};
|
|
44144
44394
|
export declare type EcosystemConnectApp = {
|
|
44145
44395
|
__typename?: 'EcosystemConnectApp';
|
|
44146
44396
|
baseUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -44347,6 +44597,7 @@ export declare type EcosystemMutation = {
|
|
|
44347
44597
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
44348
44598
|
addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
|
|
44349
44599
|
cancelAppVersionRollout?: Maybe<CancelAppVersionRolloutPayload>;
|
|
44600
|
+
cancelRollingRelease?: Maybe<EcosystemCancelRollingReleasePayload>;
|
|
44350
44601
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
44351
44602
|
createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
|
|
44352
44603
|
createRollingRelease?: Maybe<CreateRollingReleasePayload>;
|
|
@@ -44375,6 +44626,9 @@ export declare type EcosystemMutationAddMultipleAppContributorArgs = {
|
|
|
44375
44626
|
export declare type EcosystemMutationCancelAppVersionRolloutArgs = {
|
|
44376
44627
|
input: CancelAppVersionRolloutInput;
|
|
44377
44628
|
};
|
|
44629
|
+
export declare type EcosystemMutationCancelRollingReleaseArgs = {
|
|
44630
|
+
rolloutId: Scalars['ID']['input'];
|
|
44631
|
+
};
|
|
44378
44632
|
export declare type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
44379
44633
|
input: CreateAppEnvironmentInput;
|
|
44380
44634
|
};
|
|
@@ -44554,6 +44808,7 @@ export declare type EcosystemQueryRollingReleasesArgs = {
|
|
|
44554
44808
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
44555
44809
|
appId: Scalars['ID']['input'];
|
|
44556
44810
|
environmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
44811
|
+
filter?: InputMaybe<EcosystemRollingReleaseFilter>;
|
|
44557
44812
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44558
44813
|
};
|
|
44559
44814
|
export declare type EcosystemQuerySiteEntitlementsArgs = {
|
|
@@ -44603,6 +44858,7 @@ export declare type EcosystemRollingRelease = {
|
|
|
44603
44858
|
startedAt: Scalars['DateTime']['output'];
|
|
44604
44859
|
status: EcosystemRollingReleaseStatus;
|
|
44605
44860
|
successCount: Scalars['Int']['output'];
|
|
44861
|
+
targetVersion: Scalars['String']['output'];
|
|
44606
44862
|
targetVersionId: Scalars['ID']['output'];
|
|
44607
44863
|
totalInstallations: Scalars['Int']['output'];
|
|
44608
44864
|
};
|
|
@@ -44624,6 +44880,9 @@ export declare type EcosystemRollingReleaseEligibility = {
|
|
|
44624
44880
|
totalEligibleInstallationCount: Scalars['Int']['output'];
|
|
44625
44881
|
versionEligibilityBreakdown: Array<EcosystemVersionEligibilityBreakdown>;
|
|
44626
44882
|
};
|
|
44883
|
+
export declare type EcosystemRollingReleaseFilter = {
|
|
44884
|
+
statuses?: InputMaybe<Array<EcosystemRollingReleaseStatus>>;
|
|
44885
|
+
};
|
|
44627
44886
|
export declare type EcosystemRollingReleasePageInfo = {
|
|
44628
44887
|
__typename?: 'EcosystemRollingReleasePageInfo';
|
|
44629
44888
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -46260,6 +46519,9 @@ export declare type ExternalProject = Node & {
|
|
|
46260
46519
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
46261
46520
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
46262
46521
|
name?: Maybe<Scalars['String']['output']>;
|
|
46522
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
46523
|
+
parent?: Maybe<ExternalEntity>;
|
|
46524
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
46263
46525
|
priority?: Maybe<Scalars['String']['output']>;
|
|
46264
46526
|
provider?: Maybe<ExternalProvider>;
|
|
46265
46527
|
resolution?: Maybe<Scalars['String']['output']>;
|
|
@@ -46267,6 +46529,7 @@ export declare type ExternalProject = Node & {
|
|
|
46267
46529
|
statusCategory?: Maybe<Scalars['String']['output']>;
|
|
46268
46530
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
46269
46531
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
46532
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
46270
46533
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
46271
46534
|
url?: Maybe<Scalars['String']['output']>;
|
|
46272
46535
|
votesCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -49419,6 +49682,16 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
49419
49682
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
49420
49683
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
49421
49684
|
};
|
|
49685
|
+
export declare type GraphInferenceGetRelatedReposInput = {
|
|
49686
|
+
cloudId: Scalars['String']['input'];
|
|
49687
|
+
site: Scalars['String']['input'];
|
|
49688
|
+
workItemAri: Scalars['String']['input'];
|
|
49689
|
+
};
|
|
49690
|
+
export declare type GraphInferenceGetRelatedReposResponse = {
|
|
49691
|
+
__typename?: 'GraphInferenceGetRelatedReposResponse';
|
|
49692
|
+
outputs?: Maybe<Scalars['JSON']['output']>;
|
|
49693
|
+
status?: Maybe<Scalars['JSON']['output']>;
|
|
49694
|
+
};
|
|
49422
49695
|
export declare type GraphIntegrationActionAdminManagementActionConfiguration = {
|
|
49423
49696
|
__typename?: 'GraphIntegrationActionAdminManagementActionConfiguration';
|
|
49424
49697
|
status: GraphIntegrationActionAdminManagementActionStatus;
|
|
@@ -49797,6 +50070,72 @@ export declare type GraphIntegrationMcpServerNodeToolsArgs = {
|
|
|
49797
50070
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49798
50071
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49799
50072
|
};
|
|
50073
|
+
export declare type GraphIntegrationMcpServerRequestConnection = {
|
|
50074
|
+
__typename?: 'GraphIntegrationMcpServerRequestConnection';
|
|
50075
|
+
edges?: Maybe<Array<GraphIntegrationMcpServerRequestEdge>>;
|
|
50076
|
+
error?: Maybe<QueryError>;
|
|
50077
|
+
nodes?: Maybe<Array<GraphIntegrationMcpServerRequestNode>>;
|
|
50078
|
+
pageInfo: PageInfo;
|
|
50079
|
+
};
|
|
50080
|
+
export declare type GraphIntegrationMcpServerRequestEdge = {
|
|
50081
|
+
__typename?: 'GraphIntegrationMcpServerRequestEdge';
|
|
50082
|
+
cursor: Scalars['String']['output'];
|
|
50083
|
+
node?: Maybe<GraphIntegrationMcpServerRequestNode>;
|
|
50084
|
+
};
|
|
50085
|
+
export declare type GraphIntegrationMcpServerRequestNode = {
|
|
50086
|
+
__typename?: 'GraphIntegrationMcpServerRequestNode';
|
|
50087
|
+
comment?: Maybe<Scalars['String']['output']>;
|
|
50088
|
+
createdAt: Scalars['String']['output'];
|
|
50089
|
+
id: Scalars['ID']['output'];
|
|
50090
|
+
installedMcpServerConfigId?: Maybe<Scalars['ID']['output']>;
|
|
50091
|
+
lastRequestedAt: Scalars['String']['output'];
|
|
50092
|
+
requestCount: Scalars['Int']['output'];
|
|
50093
|
+
sourceDisplayName?: Maybe<Scalars['String']['output']>;
|
|
50094
|
+
sourceId: Scalars['ID']['output'];
|
|
50095
|
+
sourceType: GraphIntegrationMcpServerRequestSourceType;
|
|
50096
|
+
status: GraphIntegrationMcpServerRequestStatus;
|
|
50097
|
+
};
|
|
50098
|
+
export declare enum GraphIntegrationMcpServerRequestSourceType {
|
|
50099
|
+
GlobalMcpServer = "GLOBAL_MCP_SERVER"
|
|
50100
|
+
}
|
|
50101
|
+
export declare enum GraphIntegrationMcpServerRequestStatus {
|
|
50102
|
+
Installed = "INSTALLED",
|
|
50103
|
+
Open = "OPEN",
|
|
50104
|
+
Rejected = "REJECTED"
|
|
50105
|
+
}
|
|
50106
|
+
export declare type GraphIntegrationMcpServerRequestSubmitInput = {
|
|
50107
|
+
cloudId: Scalars['ID']['input'];
|
|
50108
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
50109
|
+
sourceId: Scalars['ID']['input'];
|
|
50110
|
+
sourceType: GraphIntegrationMcpServerRequestSourceType;
|
|
50111
|
+
};
|
|
50112
|
+
export declare type GraphIntegrationMcpServerRequestSubmitPayload = Payload & {
|
|
50113
|
+
__typename?: 'GraphIntegrationMcpServerRequestSubmitPayload';
|
|
50114
|
+
aggregateRequest?: Maybe<GraphIntegrationMcpServerRequestNode>;
|
|
50115
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50116
|
+
success: Scalars['Boolean']['output'];
|
|
50117
|
+
userRequest?: Maybe<GraphIntegrationMcpServerUserRequestNode>;
|
|
50118
|
+
};
|
|
50119
|
+
export declare type GraphIntegrationMcpServerUserRequestConnection = {
|
|
50120
|
+
__typename?: 'GraphIntegrationMcpServerUserRequestConnection';
|
|
50121
|
+
edges?: Maybe<Array<GraphIntegrationMcpServerUserRequestEdge>>;
|
|
50122
|
+
error?: Maybe<QueryError>;
|
|
50123
|
+
nodes?: Maybe<Array<GraphIntegrationMcpServerUserRequestNode>>;
|
|
50124
|
+
pageInfo: PageInfo;
|
|
50125
|
+
};
|
|
50126
|
+
export declare type GraphIntegrationMcpServerUserRequestEdge = {
|
|
50127
|
+
__typename?: 'GraphIntegrationMcpServerUserRequestEdge';
|
|
50128
|
+
cursor: Scalars['String']['output'];
|
|
50129
|
+
node?: Maybe<GraphIntegrationMcpServerUserRequestNode>;
|
|
50130
|
+
};
|
|
50131
|
+
export declare type GraphIntegrationMcpServerUserRequestNode = {
|
|
50132
|
+
__typename?: 'GraphIntegrationMcpServerUserRequestNode';
|
|
50133
|
+
aaid: Scalars['ID']['output'];
|
|
50134
|
+
comment?: Maybe<Scalars['String']['output']>;
|
|
50135
|
+
createdAt: Scalars['String']['output'];
|
|
50136
|
+
id: Scalars['ID']['output'];
|
|
50137
|
+
requestId: Scalars['ID']['output'];
|
|
50138
|
+
};
|
|
49800
50139
|
export declare type GraphIntegrationMcpTool = {
|
|
49801
50140
|
__typename?: 'GraphIntegrationMcpTool';
|
|
49802
50141
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -52929,6 +53268,8 @@ export declare type GraphStore = {
|
|
|
52929
53268
|
confluenceSpaceHasConfluenceFolderInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseConnection>;
|
|
52930
53269
|
confluenceSpaceHasConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection>;
|
|
52931
53270
|
confluenceSpaceHasConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection>;
|
|
53271
|
+
confluenceSpaceHasRelevantContentEntity?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityConnection>;
|
|
53272
|
+
confluenceSpaceHasRelevantContentEntityInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection>;
|
|
52932
53273
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
52933
53274
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
52934
53275
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
@@ -55490,6 +55831,22 @@ export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardInverseArgs
|
|
|
55490
55831
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55491
55832
|
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput>;
|
|
55492
55833
|
};
|
|
55834
|
+
export declare type GraphStoreConfluenceSpaceHasRelevantContentEntityArgs = {
|
|
55835
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55836
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55837
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55838
|
+
id: Scalars['ID']['input'];
|
|
55839
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55840
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasRelevantContentEntitySortInput>;
|
|
55841
|
+
};
|
|
55842
|
+
export declare type GraphStoreConfluenceSpaceHasRelevantContentEntityInverseArgs = {
|
|
55843
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55844
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55845
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55846
|
+
id: Scalars['ID']['input'];
|
|
55847
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55848
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasRelevantContentEntitySortInput>;
|
|
55849
|
+
};
|
|
55493
55850
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
55494
55851
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55495
55852
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -64763,6 +65120,9 @@ export declare type GraphStoreConfluenceSpaceHasConfluenceFolderSortInput = {
|
|
|
64763
65120
|
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput = {
|
|
64764
65121
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
64765
65122
|
};
|
|
65123
|
+
export declare type GraphStoreConfluenceSpaceHasRelevantContentEntitySortInput = {
|
|
65124
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65125
|
+
};
|
|
64766
65126
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
64767
65127
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
64768
65128
|
};
|
|
@@ -73601,6 +73961,34 @@ export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardIn
|
|
|
73601
73961
|
};
|
|
73602
73962
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseUnion = ConfluenceSpace;
|
|
73603
73963
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
73964
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityConnection = HasPageInfo & {
|
|
73965
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityConnection';
|
|
73966
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityEdge>>>;
|
|
73967
|
+
pageInfo: PageInfo;
|
|
73968
|
+
};
|
|
73969
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityEdge = {
|
|
73970
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityEdge';
|
|
73971
|
+
createdAt: Scalars['DateTime']['output'];
|
|
73972
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
73973
|
+
id: Scalars['ID']['output'];
|
|
73974
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
73975
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityUnion>;
|
|
73976
|
+
};
|
|
73977
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection = HasPageInfo & {
|
|
73978
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection';
|
|
73979
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge>>>;
|
|
73980
|
+
pageInfo: PageInfo;
|
|
73981
|
+
};
|
|
73982
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge = {
|
|
73983
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge';
|
|
73984
|
+
createdAt: Scalars['DateTime']['output'];
|
|
73985
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
73986
|
+
id: Scalars['ID']['output'];
|
|
73987
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
73988
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseUnion>;
|
|
73989
|
+
};
|
|
73990
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseUnion = ConfluenceSpace;
|
|
73991
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityUnion = DevOpsDocument | ExternalDocument;
|
|
73604
73992
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
73605
73993
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
73606
73994
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -84947,6 +85335,8 @@ export declare type GraphStoreV2 = {
|
|
|
84947
85335
|
confluenceSpaceHasConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasConfluencePageInverseConnection>;
|
|
84948
85336
|
confluenceSpaceHasConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection>;
|
|
84949
85337
|
confluenceSpaceHasConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection>;
|
|
85338
|
+
confluenceSpaceHasRelevantContentEntity?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityConnection>;
|
|
85339
|
+
confluenceSpaceHasRelevantContentEntityInverse?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection>;
|
|
84950
85340
|
confluenceSpaceLinksJiraSpace?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceConnection>;
|
|
84951
85341
|
confluenceSpaceLinksJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceInverseConnection>;
|
|
84952
85342
|
contentEntityLinksEntity?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityConnection>;
|
|
@@ -87593,6 +87983,20 @@ export declare type GraphStoreV2ConfluenceSpaceHasConfluenceWhiteboardInverseArg
|
|
|
87593
87983
|
id: Scalars['ID']['input'];
|
|
87594
87984
|
sort?: InputMaybe<GraphStoreV2ConfluenceSpaceHasConfluenceWhiteboardSortInput>;
|
|
87595
87985
|
};
|
|
87986
|
+
export declare type GraphStoreV2ConfluenceSpaceHasRelevantContentEntityArgs = {
|
|
87987
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87988
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87989
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87990
|
+
id: Scalars['ID']['input'];
|
|
87991
|
+
sort?: InputMaybe<GraphStoreV2ConfluenceSpaceHasRelevantContentEntitySortInput>;
|
|
87992
|
+
};
|
|
87993
|
+
export declare type GraphStoreV2ConfluenceSpaceHasRelevantContentEntityInverseArgs = {
|
|
87994
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87995
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87996
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87997
|
+
id: Scalars['ID']['input'];
|
|
87998
|
+
sort?: InputMaybe<GraphStoreV2ConfluenceSpaceHasRelevantContentEntitySortInput>;
|
|
87999
|
+
};
|
|
87596
88000
|
export declare type GraphStoreV2ConfluenceSpaceLinksJiraSpaceArgs = {
|
|
87597
88001
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87598
88002
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91798,6 +92202,9 @@ export declare type GraphStoreV2ConfluenceSpaceHasConfluencePageSortInput = {
|
|
|
91798
92202
|
export declare type GraphStoreV2ConfluenceSpaceHasConfluenceWhiteboardSortInput = {
|
|
91799
92203
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
91800
92204
|
};
|
|
92205
|
+
export declare type GraphStoreV2ConfluenceSpaceHasRelevantContentEntitySortInput = {
|
|
92206
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92207
|
+
};
|
|
91801
92208
|
export declare type GraphStoreV2ConfluenceSpaceLinksJiraSpaceSortInput = {
|
|
91802
92209
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
91803
92210
|
};
|
|
@@ -99131,6 +99538,34 @@ export declare type GraphStoreV2SimplifiedConfluenceSpaceHasConfluenceWhiteboard
|
|
|
99131
99538
|
};
|
|
99132
99539
|
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseUnion = ConfluenceSpace;
|
|
99133
99540
|
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
99541
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityConnection = HasPageInfo & {
|
|
99542
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityConnection';
|
|
99543
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityEdge>>>;
|
|
99544
|
+
pageInfo: PageInfo;
|
|
99545
|
+
};
|
|
99546
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityEdge = {
|
|
99547
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityEdge';
|
|
99548
|
+
createdAt: Scalars['DateTime']['output'];
|
|
99549
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
99550
|
+
id: Scalars['ID']['output'];
|
|
99551
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
99552
|
+
node?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityUnion>;
|
|
99553
|
+
};
|
|
99554
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection = HasPageInfo & {
|
|
99555
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection';
|
|
99556
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge>>>;
|
|
99557
|
+
pageInfo: PageInfo;
|
|
99558
|
+
};
|
|
99559
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge = {
|
|
99560
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge';
|
|
99561
|
+
createdAt: Scalars['DateTime']['output'];
|
|
99562
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
99563
|
+
id: Scalars['ID']['output'];
|
|
99564
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
99565
|
+
node?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseUnion>;
|
|
99566
|
+
};
|
|
99567
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseUnion = ConfluenceSpace;
|
|
99568
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityUnion = DevOpsDocument | ExternalDocument;
|
|
99134
99569
|
export declare type GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceConnection = HasPageInfo & {
|
|
99135
99570
|
__typename?: 'GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceConnection';
|
|
99136
99571
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceEdge>>>;
|
|
@@ -108363,12 +108798,14 @@ export declare type HelpCenterBrandingColors = {
|
|
|
108363
108798
|
bannerTextColor?: Maybe<Scalars['String']['output']>;
|
|
108364
108799
|
hasTopBarBeenSplit: Scalars['Boolean']['output'];
|
|
108365
108800
|
primary?: Maybe<Scalars['String']['output']>;
|
|
108801
|
+
secondaryColor?: Maybe<Scalars['String']['output']>;
|
|
108366
108802
|
topBarColor?: Maybe<Scalars['String']['output']>;
|
|
108367
108803
|
topBarTextColor?: Maybe<Scalars['String']['output']>;
|
|
108368
108804
|
};
|
|
108369
108805
|
export declare type HelpCenterBrandingColorsInput = {
|
|
108370
108806
|
bannerTextColor?: InputMaybe<Scalars['String']['input']>;
|
|
108371
108807
|
primary?: InputMaybe<Scalars['String']['input']>;
|
|
108808
|
+
secondaryColor?: InputMaybe<Scalars['String']['input']>;
|
|
108372
108809
|
topBarColor?: InputMaybe<Scalars['String']['input']>;
|
|
108373
108810
|
topBarTextColor?: InputMaybe<Scalars['String']['input']>;
|
|
108374
108811
|
};
|
|
@@ -111070,19 +111507,6 @@ export declare type InvocationTokenForUiMetadata = {
|
|
|
111070
111507
|
__typename?: 'InvocationTokenForUIMetadata';
|
|
111071
111508
|
baseUrl: Scalars['String']['output'];
|
|
111072
111509
|
};
|
|
111073
|
-
export declare type InvokeAuxEffectsInput = {
|
|
111074
|
-
contextIds: Array<Scalars['ID']['input']>;
|
|
111075
|
-
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
111076
|
-
extensionDetails?: InputMaybe<ExtensionDetailsInput>;
|
|
111077
|
-
extensionId?: InputMaybe<Scalars['ID']['input']>;
|
|
111078
|
-
payload: AuxEffectsInvocationPayload;
|
|
111079
|
-
};
|
|
111080
|
-
export declare type InvokeAuxEffectsResponse = Payload & {
|
|
111081
|
-
__typename?: 'InvokeAuxEffectsResponse';
|
|
111082
|
-
errors?: Maybe<Array<MutationError>>;
|
|
111083
|
-
result?: Maybe<AuxEffectsResult>;
|
|
111084
|
-
success: Scalars['Boolean']['output'];
|
|
111085
|
-
};
|
|
111086
111510
|
export declare type InvokeExtensionInput = {
|
|
111087
111511
|
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
111088
111512
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -113849,6 +114273,14 @@ export declare type JiraBoardLocation = {
|
|
|
113849
114273
|
locationId?: InputMaybe<Scalars['String']['input']>;
|
|
113850
114274
|
locationType: JiraBoardLocationType;
|
|
113851
114275
|
};
|
|
114276
|
+
export declare type JiraBoardLocationModel = {
|
|
114277
|
+
__typename?: 'JiraBoardLocationModel';
|
|
114278
|
+
avatarURI?: Maybe<Scalars['String']['output']>;
|
|
114279
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
114280
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
114281
|
+
projectTypeKey?: Maybe<Scalars['String']['output']>;
|
|
114282
|
+
userLocationId?: Maybe<Scalars['ID']['output']>;
|
|
114283
|
+
};
|
|
113852
114284
|
export declare enum JiraBoardLocationType {
|
|
113853
114285
|
Project = "PROJECT",
|
|
113854
114286
|
User = "USER"
|
|
@@ -113873,6 +114305,7 @@ export declare enum JiraBoardType {
|
|
|
113873
114305
|
}
|
|
113874
114306
|
export declare type JiraBoardView = JiraView & Node & {
|
|
113875
114307
|
__typename?: 'JiraBoardView';
|
|
114308
|
+
board?: Maybe<JiraBoard>;
|
|
113876
114309
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113877
114310
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113878
114311
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -113907,6 +114340,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
113907
114340
|
isWorkflowsMigrationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
113908
114341
|
issuePositions?: Maybe<Array<JiraBoardViewIssuePositions>>;
|
|
113909
114342
|
layout?: Maybe<JiraBoardViewLayout>;
|
|
114343
|
+
project?: Maybe<JiraProject>;
|
|
113910
114344
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
113911
114345
|
sprints?: Maybe<JiraSprintConnection>;
|
|
113912
114346
|
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
@@ -114607,6 +115041,7 @@ export declare type JiraCfoBoardPerformanceDataRow = JiraCfoDataRow & {
|
|
|
114607
115041
|
boardAdmins?: Maybe<JiraBoardAdmins>;
|
|
114608
115042
|
boardCreator?: Maybe<User>;
|
|
114609
115043
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
115044
|
+
boardLocation?: Maybe<JiraBoardLocationModel>;
|
|
114610
115045
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
114611
115046
|
dimensions?: Maybe<Array<Maybe<JiraCfoDimension>>>;
|
|
114612
115047
|
metrics?: Maybe<Array<Maybe<JiraCfoMetric>>>;
|
|
@@ -116485,6 +116920,17 @@ export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
|
116485
116920
|
issueV2?: Maybe<JiraScenarioIssueLike>;
|
|
116486
116921
|
success: Scalars['Boolean']['output'];
|
|
116487
116922
|
};
|
|
116923
|
+
export declare type JiraCreateCategoryOptionInput = {
|
|
116924
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
116925
|
+
name: Scalars['String']['input'];
|
|
116926
|
+
projectId: Scalars['ID']['input'];
|
|
116927
|
+
};
|
|
116928
|
+
export declare type JiraCreateCategoryOptionPayload = Payload & {
|
|
116929
|
+
__typename?: 'JiraCreateCategoryOptionPayload';
|
|
116930
|
+
createdCategoryOption?: Maybe<JiraOption>;
|
|
116931
|
+
errors?: Maybe<Array<MutationError>>;
|
|
116932
|
+
success: Scalars['Boolean']['output'];
|
|
116933
|
+
};
|
|
116488
116934
|
export declare type JiraCreateCustomBackgroundInput = {
|
|
116489
116935
|
altText: Scalars['String']['input'];
|
|
116490
116936
|
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -121496,6 +121942,9 @@ export declare type JiraIssueFieldConnection = JiraListRowFieldConnection & {
|
|
|
121496
121942
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
121497
121943
|
};
|
|
121498
121944
|
export declare type JiraIssueFieldConnectionResult = JiraIssueFieldConnection | QueryError;
|
|
121945
|
+
export declare type JiraIssueFieldCreateContextOption = {
|
|
121946
|
+
id: Scalars['ID']['output'];
|
|
121947
|
+
};
|
|
121499
121948
|
export declare type JiraIssueFieldEdge = JiraListRowFieldEdge & {
|
|
121500
121949
|
__typename?: 'JiraIssueFieldEdge';
|
|
121501
121950
|
cursor: Scalars['String']['output'];
|
|
@@ -124153,7 +124602,7 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
124153
124602
|
field?: Maybe<JiraLabelsField>;
|
|
124154
124603
|
success: Scalars['Boolean']['output'];
|
|
124155
124604
|
};
|
|
124156
|
-
export declare type JiraLabelsForCreateField = {
|
|
124605
|
+
export declare type JiraLabelsForCreateField = JiraIssueFieldCreateContextOption & Node & {
|
|
124157
124606
|
__typename?: 'JiraLabelsForCreateField';
|
|
124158
124607
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
124159
124608
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -127427,6 +127876,13 @@ export declare type JiraPlaybookQueryPayload = QueryPayload & {
|
|
|
127427
127876
|
playbook?: Maybe<JiraPlaybook>;
|
|
127428
127877
|
success: Scalars['Boolean']['output'];
|
|
127429
127878
|
};
|
|
127879
|
+
export declare type JiraPlaybookRuleIdsConnection = HasPageInfo & QueryPayload & {
|
|
127880
|
+
__typename?: 'JiraPlaybookRuleIdsConnection';
|
|
127881
|
+
errors?: Maybe<Array<QueryError>>;
|
|
127882
|
+
nodes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
127883
|
+
pageInfo: PageInfo;
|
|
127884
|
+
success: Scalars['Boolean']['output'];
|
|
127885
|
+
};
|
|
127430
127886
|
export declare enum JiraPlaybookScopeType {
|
|
127431
127887
|
Global = "GLOBAL",
|
|
127432
127888
|
Issue = "ISSUE",
|
|
@@ -127785,6 +128241,7 @@ export declare type JiraProject = Node & {
|
|
|
127785
128241
|
category?: Maybe<JiraProjectCategory>;
|
|
127786
128242
|
classificationTags: Array<Scalars['String']['output']>;
|
|
127787
128243
|
cloudId: Scalars['ID']['output'];
|
|
128244
|
+
components?: Maybe<JiraComponentConnection>;
|
|
127788
128245
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
127789
128246
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
127790
128247
|
csmConversationType?: Maybe<JiraIssueType>;
|
|
@@ -127918,6 +128375,13 @@ export declare type JiraProjectBoardsArgs = {
|
|
|
127918
128375
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127919
128376
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
127920
128377
|
};
|
|
128378
|
+
export declare type JiraProjectComponentsArgs = {
|
|
128379
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128380
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
128381
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128382
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128383
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
128384
|
+
};
|
|
127921
128385
|
export declare type JiraProjectConditionalFormattingRulesArgs = {
|
|
127922
128386
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127923
128387
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130162,6 +130626,7 @@ export declare type JiraQueryLinkedIssuesArgs = {
|
|
|
130162
130626
|
hideIdeaLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130163
130627
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
130164
130628
|
shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130629
|
+
sortInput?: InputMaybe<JiraLinkedWorkItemsSortInput>;
|
|
130165
130630
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
130166
130631
|
};
|
|
130167
130632
|
export declare type JiraQueryLinkedWorkItemsArgs = {
|
|
@@ -130638,6 +131103,7 @@ export declare enum JiraRecommendationCategory {
|
|
|
130638
131103
|
export declare type JiraRecommendedAction = {
|
|
130639
131104
|
__typename?: 'JiraRecommendedAction';
|
|
130640
131105
|
entity?: Maybe<JiraRecommendedActionEntity>;
|
|
131106
|
+
relatedEntity?: Maybe<JiraRecommendedActionEntity>;
|
|
130641
131107
|
};
|
|
130642
131108
|
export declare type JiraRecommendedActionCategory = {
|
|
130643
131109
|
__typename?: 'JiraRecommendedActionCategory';
|
|
@@ -130664,6 +131130,7 @@ export declare enum JiraRecommendedActionCategoryType {
|
|
|
130664
131130
|
CommentAssigned = "COMMENT_ASSIGNED",
|
|
130665
131131
|
CommentMention = "COMMENT_MENTION",
|
|
130666
131132
|
CommentReply = "COMMENT_REPLY",
|
|
131133
|
+
ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
|
|
130667
131134
|
IssueApproval = "ISSUE_APPROVAL",
|
|
130668
131135
|
IssueDueSoon = "ISSUE_DUE_SOON",
|
|
130669
131136
|
NotSet = "NOT_SET",
|
|
@@ -130686,7 +131153,7 @@ export declare type JiraRecommendedActionEdge = {
|
|
|
130686
131153
|
cursor: Scalars['String']['output'];
|
|
130687
131154
|
node?: Maybe<JiraRecommendedAction>;
|
|
130688
131155
|
};
|
|
130689
|
-
export declare type JiraRecommendedActionEntity = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
131156
|
+
export declare type JiraRecommendedActionEntity = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
130690
131157
|
export declare type JiraRedaction = {
|
|
130691
131158
|
__typename?: 'JiraRedaction';
|
|
130692
131159
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -139069,11 +139536,6 @@ export declare enum JpdViewsServiceVisualizationType {
|
|
|
139069
139536
|
Timeline = "TIMELINE",
|
|
139070
139537
|
Tree = "TREE"
|
|
139071
139538
|
}
|
|
139072
|
-
export declare type JsmAgentWorkspaceLocations = {
|
|
139073
|
-
__typename?: 'JsmAgentWorkspaceLocations';
|
|
139074
|
-
errors?: Maybe<Array<QueryError>>;
|
|
139075
|
-
pageInfo: PageInfo;
|
|
139076
|
-
};
|
|
139077
139539
|
export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
139078
139540
|
__typename?: 'JsmChannelsConditionNode';
|
|
139079
139541
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
@@ -139379,6 +139841,11 @@ export declare type JsmChannelsRovoServiceAgentConfig = {
|
|
|
139379
139841
|
taskAgentsEnabled: Scalars['Int']['output'];
|
|
139380
139842
|
};
|
|
139381
139843
|
export declare type JsmChannelsRovoServiceAgentConfigResult = JsmChannelsRovoServiceAgentConfig | QueryError;
|
|
139844
|
+
export declare type JsmChannelsRovoServiceResolutionPlanGeneratedPayload = {
|
|
139845
|
+
__typename?: 'JsmChannelsRovoServiceResolutionPlanGeneratedPayload';
|
|
139846
|
+
hasGeneratedResolutionPlan: Scalars['Boolean']['output'];
|
|
139847
|
+
};
|
|
139848
|
+
export declare type JsmChannelsRovoServiceResolutionPlanGeneratedResult = JsmChannelsRovoServiceResolutionPlanGeneratedPayload | QueryError;
|
|
139382
139849
|
export declare enum JsmChannelsRuleEvaluationStrategy {
|
|
139383
139850
|
JqlFirst = "JQL_FIRST",
|
|
139384
139851
|
JqlOnly = "JQL_ONLY",
|
|
@@ -140059,6 +140526,11 @@ export declare type JsmConversation = {
|
|
|
140059
140526
|
issueId?: Maybe<Scalars['ID']['output']>;
|
|
140060
140527
|
summary?: Maybe<Scalars['String']['output']>;
|
|
140061
140528
|
};
|
|
140529
|
+
export declare enum JsmConversationActivationState {
|
|
140530
|
+
Disabled = "DISABLED",
|
|
140531
|
+
Enabled = "ENABLED",
|
|
140532
|
+
NotConfigured = "NOT_CONFIGURED"
|
|
140533
|
+
}
|
|
140062
140534
|
export declare type JsmConversationActiveSla = {
|
|
140063
140535
|
__typename?: 'JsmConversationActiveSla';
|
|
140064
140536
|
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -140144,6 +140616,7 @@ export declare enum JsmConversationMessageSource {
|
|
|
140144
140616
|
}
|
|
140145
140617
|
export declare type JsmConversationSettings = {
|
|
140146
140618
|
__typename?: 'JsmConversationSettings';
|
|
140619
|
+
activationState?: Maybe<JsmConversationActivationState>;
|
|
140147
140620
|
assignedTeam?: Maybe<TeamV2>;
|
|
140148
140621
|
availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
140149
140622
|
defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -140154,6 +140627,7 @@ export declare type JsmConversationSettings = {
|
|
|
140154
140627
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
140155
140628
|
};
|
|
140156
140629
|
export declare type JsmConversationSettingsInput = {
|
|
140630
|
+
activationState?: InputMaybe<JsmConversationActivationState>;
|
|
140157
140631
|
availabilityCriteria?: InputMaybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
140158
140632
|
defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
140159
140633
|
issueLabel?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -140885,6 +141359,7 @@ export declare enum KitsuneJobType {
|
|
|
140885
141359
|
ImportFeedback = "IMPORT_FEEDBACK",
|
|
140886
141360
|
ImportOrganization = "IMPORT_ORGANIZATION",
|
|
140887
141361
|
ResyncFeedback = "RESYNC_FEEDBACK",
|
|
141362
|
+
ResyncInsights = "RESYNC_INSIGHTS",
|
|
140888
141363
|
SyncCsmProperties = "SYNC_CSM_PROPERTIES",
|
|
140889
141364
|
SyncCustomer = "SYNC_CUSTOMER"
|
|
140890
141365
|
}
|
|
@@ -143046,9 +143521,13 @@ export declare type LiveChatParticipantLeft = {
|
|
|
143046
143521
|
content?: Maybe<Scalars['String']['output']>;
|
|
143047
143522
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
143048
143523
|
};
|
|
143524
|
+
export declare type LiveChatSendTypingSignalInput = {
|
|
143525
|
+
chatAri: Scalars['ID']['input'];
|
|
143526
|
+
};
|
|
143049
143527
|
export declare type LiveChatSendUserMessageInput = {
|
|
143050
143528
|
chatAri: Scalars['ID']['input'];
|
|
143051
143529
|
content: Scalars['String']['input'];
|
|
143530
|
+
messageId?: InputMaybe<Scalars['ID']['input']>;
|
|
143052
143531
|
};
|
|
143053
143532
|
export declare type LiveChatStarted = {
|
|
143054
143533
|
__typename?: 'LiveChatStarted';
|
|
@@ -143061,7 +143540,16 @@ export declare type LiveChatSystemMessage = {
|
|
|
143061
143540
|
id: Scalars['ID']['output'];
|
|
143062
143541
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
143063
143542
|
};
|
|
143064
|
-
export declare type
|
|
143543
|
+
export declare type LiveChatTypingIndicator = {
|
|
143544
|
+
__typename?: 'LiveChatTypingIndicator';
|
|
143545
|
+
accountAri?: Maybe<Scalars['ID']['output']>;
|
|
143546
|
+
};
|
|
143547
|
+
export declare type LiveChatTypingSignalPayload = Payload & {
|
|
143548
|
+
__typename?: 'LiveChatTypingSignalPayload';
|
|
143549
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143550
|
+
success: Scalars['Boolean']['output'];
|
|
143551
|
+
};
|
|
143552
|
+
export declare type LiveChatUpdate = LiveChatClosed | LiveChatParticipantJoined | LiveChatParticipantLeft | LiveChatStarted | LiveChatSystemMessage | LiveChatTypingIndicator | LiveChatUserMessage | QueryError;
|
|
143065
143553
|
export declare type LiveChatUserMessage = {
|
|
143066
143554
|
__typename?: 'LiveChatUserMessage';
|
|
143067
143555
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -146811,6 +147299,7 @@ export declare type MarketplaceStoreInstalledAppDetailsResponse = {
|
|
|
146811
147299
|
edition?: Maybe<Scalars['String']['output']>;
|
|
146812
147300
|
installed: Scalars['Boolean']['output'];
|
|
146813
147301
|
installedAppManageLink?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
147302
|
+
installedAppManageLinks?: Maybe<MarketplaceStoreInstalledAppManageLinks>;
|
|
146814
147303
|
licenseActive: Scalars['Boolean']['output'];
|
|
146815
147304
|
licenseExpiryDate?: Maybe<Scalars['String']['output']>;
|
|
146816
147305
|
paidLicenseActiveOnParent: Scalars['Boolean']['output'];
|
|
@@ -146825,6 +147314,12 @@ export declare enum MarketplaceStoreInstalledAppManageLinkType {
|
|
|
146825
147314
|
GetStarted = "GET_STARTED",
|
|
146826
147315
|
Manage = "MANAGE"
|
|
146827
147316
|
}
|
|
147317
|
+
export declare type MarketplaceStoreInstalledAppManageLinks = {
|
|
147318
|
+
__typename?: 'MarketplaceStoreInstalledAppManageLinks';
|
|
147319
|
+
configureUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
147320
|
+
getStartedUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
147321
|
+
manageAppUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
147322
|
+
};
|
|
146828
147323
|
export declare type MarketplaceStoreLayoutRegularSection = MarketplaceStoreLayoutSection & {
|
|
146829
147324
|
__typename?: 'MarketplaceStoreLayoutRegularSection';
|
|
146830
147325
|
backgroundImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
@@ -146852,6 +147347,7 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
|
146852
147347
|
ExploreCategories = "EXPLORE_CATEGORIES",
|
|
146853
147348
|
ExploreObjects = "EXPLORE_OBJECTS",
|
|
146854
147349
|
Hero = "HERO",
|
|
147350
|
+
NewestAiApps = "NEWEST_AI_APPS",
|
|
146855
147351
|
PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
|
|
146856
147352
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
146857
147353
|
Spotlight = "SPOTLIGHT",
|
|
@@ -147306,6 +147802,20 @@ export declare enum MarketplaceStoreProductTagType {
|
|
|
147306
147802
|
Category = "CATEGORY",
|
|
147307
147803
|
Keywords = "KEYWORDS"
|
|
147308
147804
|
}
|
|
147805
|
+
export declare enum MarketplaceStoreProductType {
|
|
147806
|
+
Compass = "COMPASS",
|
|
147807
|
+
Confluence = "CONFLUENCE",
|
|
147808
|
+
Goal = "GOAL",
|
|
147809
|
+
JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
|
|
147810
|
+
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
147811
|
+
JiraServiceDesk = "JIRA_SERVICE_DESK",
|
|
147812
|
+
JiraSoftware = "JIRA_SOFTWARE",
|
|
147813
|
+
JiraWorkManagement = "JIRA_WORK_MANAGEMENT",
|
|
147814
|
+
Loom = "LOOM",
|
|
147815
|
+
Opsgenie = "OPSGENIE",
|
|
147816
|
+
Statuspage = "STATUSPAGE",
|
|
147817
|
+
Townsquare = "TOWNSQUARE"
|
|
147818
|
+
}
|
|
147309
147819
|
export declare type MarketplaceStoreProperties = {
|
|
147310
147820
|
__typename?: 'MarketplaceStoreProperties';
|
|
147311
147821
|
formStatus: MarketplaceStoreFormStatus;
|
|
@@ -147357,6 +147867,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
147357
147867
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
147358
147868
|
userPreferences: MarketplaceStoreGetUserPreferencesResponse;
|
|
147359
147869
|
userProfile: MarketplaceStoreUserProfileResponse;
|
|
147870
|
+
userSites?: Maybe<MarketplaceStoreUserSitesResult>;
|
|
147360
147871
|
watchedApps: MarketplaceStoreWatchedAppsResponse;
|
|
147361
147872
|
};
|
|
147362
147873
|
export declare type MarketplaceStoreQueryApiAppInstallationsByAppArgs = {
|
|
@@ -147494,6 +148005,9 @@ export declare type MarketplaceStoreQueryApiSiteDetailsArgs = {
|
|
|
147494
148005
|
export declare type MarketplaceStoreQueryApiUserProfileArgs = {
|
|
147495
148006
|
userId: Scalars['String']['input'];
|
|
147496
148007
|
};
|
|
148008
|
+
export declare type MarketplaceStoreQueryApiUserSitesArgs = {
|
|
148009
|
+
input?: InputMaybe<MarketplaceStoreUserSitesInput>;
|
|
148010
|
+
};
|
|
147497
148011
|
export declare type MarketplaceStoreQueryApiWatchedAppsArgs = {
|
|
147498
148012
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
147499
148013
|
nextCursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -147661,6 +148175,11 @@ export declare type MarketplaceStoreSiteProduct = {
|
|
|
147661
148175
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
147662
148176
|
parentProduct?: InputMaybe<MarketplaceStoreInstallationTargetProduct>;
|
|
147663
148177
|
};
|
|
148178
|
+
export declare type MarketplaceStoreSiteProductEntry = {
|
|
148179
|
+
__typename?: 'MarketplaceStoreSiteProductEntry';
|
|
148180
|
+
displayName: Scalars['String']['output'];
|
|
148181
|
+
productType: MarketplaceStoreProductType;
|
|
148182
|
+
};
|
|
147664
148183
|
export declare type MarketplaceStoreThirdPartyDetails = {
|
|
147665
148184
|
__typename?: 'MarketplaceStoreThirdPartyDetails';
|
|
147666
148185
|
link: Scalars['String']['output'];
|
|
@@ -147740,6 +148259,43 @@ export declare type MarketplaceStoreUserProfileResponse = {
|
|
|
147740
148259
|
name: Scalars['String']['output'];
|
|
147741
148260
|
picture: Scalars['String']['output'];
|
|
147742
148261
|
};
|
|
148262
|
+
export declare type MarketplaceStoreUserSite = {
|
|
148263
|
+
__typename?: 'MarketplaceStoreUserSite';
|
|
148264
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
148265
|
+
cloudId: Scalars['String']['output'];
|
|
148266
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
148267
|
+
isAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
148268
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
148269
|
+
orgName?: Maybe<Scalars['String']['output']>;
|
|
148270
|
+
products: Array<MarketplaceStoreSiteProductEntry>;
|
|
148271
|
+
unitId?: Maybe<Scalars['String']['output']>;
|
|
148272
|
+
unitName?: Maybe<Scalars['String']['output']>;
|
|
148273
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
148274
|
+
};
|
|
148275
|
+
export declare enum MarketplaceStoreUserSitesContext {
|
|
148276
|
+
Emcee = "EMCEE",
|
|
148277
|
+
Store = "STORE"
|
|
148278
|
+
}
|
|
148279
|
+
export declare type MarketplaceStoreUserSitesInput = {
|
|
148280
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
148281
|
+
context?: InputMaybe<MarketplaceStoreUserSitesContext>;
|
|
148282
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
148283
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
148284
|
+
productFilter?: InputMaybe<Array<MarketplaceStoreProductType>>;
|
|
148285
|
+
};
|
|
148286
|
+
export declare type MarketplaceStoreUserSitesPageInfo = {
|
|
148287
|
+
__typename?: 'MarketplaceStoreUserSitesPageInfo';
|
|
148288
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
148289
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
148290
|
+
totalSites: Scalars['Int']['output'];
|
|
148291
|
+
};
|
|
148292
|
+
export declare type MarketplaceStoreUserSitesResult = {
|
|
148293
|
+
__typename?: 'MarketplaceStoreUserSitesResult';
|
|
148294
|
+
context: MarketplaceStoreUserSitesContext;
|
|
148295
|
+
hasErrors: Scalars['Boolean']['output'];
|
|
148296
|
+
pageInfo: MarketplaceStoreUserSitesPageInfo;
|
|
148297
|
+
sites: Array<MarketplaceStoreUserSite>;
|
|
148298
|
+
};
|
|
147743
148299
|
export declare type MarketplaceStoreWatchedAppsResponse = {
|
|
147744
148300
|
__typename?: 'MarketplaceStoreWatchedAppsResponse';
|
|
147745
148301
|
limit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -152824,6 +153380,7 @@ export declare type MercuryProviderOrchestrationQueryApi = {
|
|
|
152824
153380
|
providers?: Maybe<MercuryProviderConnection>;
|
|
152825
153381
|
searchWorkByBenefitItem?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152826
153382
|
searchWorkByChangeProposal?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
153383
|
+
searchWorkByCostItem?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152827
153384
|
searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152828
153385
|
searchWorkByRisk?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152829
153386
|
workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
|
|
@@ -152876,6 +153433,13 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangePropos
|
|
|
152876
153433
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
152877
153434
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
152878
153435
|
};
|
|
153436
|
+
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByCostItemArgs = {
|
|
153437
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
153438
|
+
cloudId: Scalars['ID']['input'];
|
|
153439
|
+
costItemId: Scalars['ID']['input'];
|
|
153440
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
153441
|
+
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
153442
|
+
};
|
|
152879
153443
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
|
|
152880
153444
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
152881
153445
|
applicationKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -155370,7 +155934,6 @@ export declare type MercuryWorkspaceContext = {
|
|
|
155370
155934
|
};
|
|
155371
155935
|
export declare type MercuryWorkspaceSettings = {
|
|
155372
155936
|
__typename?: 'MercuryWorkspaceSettings';
|
|
155373
|
-
focusAreaRankingEnabled: Scalars['Boolean']['output'];
|
|
155374
155937
|
laborCostEnabled: Scalars['Boolean']['output'];
|
|
155375
155938
|
managedTeamsOnlyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155376
155939
|
};
|
|
@@ -155672,13 +156235,12 @@ export declare type Mutation = {
|
|
|
155672
156235
|
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
155673
156236
|
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
|
|
155674
156237
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
155675
|
-
|
|
156238
|
+
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
155676
156239
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
155677
156240
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
155678
156241
|
agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteCoverShiftPayload>;
|
|
155679
156242
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
155680
156243
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
155681
|
-
agentWorkspace_discardDraftedRoutingTable?: Maybe<AgentWorkspaceDiscardDraftedRoutingTablePayload>;
|
|
155682
156244
|
agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditCoverShiftPayload>;
|
|
155683
156245
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
155684
156246
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
@@ -155696,6 +156258,7 @@ export declare type Mutation = {
|
|
|
155696
156258
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
155697
156259
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
155698
156260
|
agentWorkspace_updateSkillCategory?: Maybe<AgentWorkspaceSkillCategoryUpdatePayload>;
|
|
156261
|
+
agentWorkspace_updateSkillMappingsInProject?: Maybe<AgentWorkspaceUpdateSkillMappingsInProjectPayload>;
|
|
155699
156262
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
155700
156263
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
155701
156264
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
@@ -155704,8 +156267,6 @@ export declare type Mutation = {
|
|
|
155704
156267
|
aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
155705
156268
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
155706
156269
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
155707
|
-
aiops_createInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
155708
|
-
aiops_reviewRootCause?: Maybe<AiOpsReviewRootCausePayload>;
|
|
155709
156270
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
155710
156271
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
155711
156272
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -155732,6 +156293,7 @@ export declare type Mutation = {
|
|
|
155732
156293
|
assetsDM_createDataSourceType?: Maybe<AssetsDmCreateDataSourceTypeResponse>;
|
|
155733
156294
|
assetsDM_createDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
|
|
155734
156295
|
assetsDM_createDefaultCleansingRule?: Maybe<AssetsDmCreateDefaultCleansingRuleResponse>;
|
|
156296
|
+
assetsDM_createJobSchedule?: Maybe<AssetsDmJobScheduleMutationResponse>;
|
|
155735
156297
|
assetsDM_createObjectAttribute?: Maybe<AssetsDmCreateObjectAttributeResponse>;
|
|
155736
156298
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
155737
156299
|
assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
|
|
@@ -155752,6 +156314,7 @@ export declare type Mutation = {
|
|
|
155752
156314
|
assetsDM_deleteDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
|
|
155753
156315
|
assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
|
|
155754
156316
|
assetsDM_deleteDefaultCleansingRule?: Maybe<AssetsDmDeleteDefaultCleansingRuleResponse>;
|
|
156317
|
+
assetsDM_deleteJobSchedule?: Maybe<AssetsDmJobScheduleMutationResponse>;
|
|
155755
156318
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
155756
156319
|
assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
|
|
155757
156320
|
assetsDM_dissociateObjectTag?: Maybe<AssetsDmObjectTagDissociateResponse>;
|
|
@@ -155760,6 +156323,7 @@ export declare type Mutation = {
|
|
|
155760
156323
|
assetsDM_editDataDictionaryGroupValue?: Maybe<AssetsDmEditDataDictionaryGroupValueResponse>;
|
|
155761
156324
|
assetsDM_editDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
|
|
155762
156325
|
assetsDM_editDefaultAttributeMapping?: Maybe<AssetsDmEditDefaultAttributeMappingResponse>;
|
|
156326
|
+
assetsDM_editJobSchedule?: Maybe<AssetsDmJobScheduleMutationResponse>;
|
|
155763
156327
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
155764
156328
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
155765
156329
|
assetsDM_importDataDictionary?: Maybe<AssetsDmImportDataDictionaryResponse>;
|
|
@@ -155831,6 +156395,7 @@ export declare type Mutation = {
|
|
|
155831
156395
|
avp_trackDashboardView?: Maybe<AvpTrackDashboardViewPayload>;
|
|
155832
156396
|
avp_unstarDashboard?: Maybe<AvpUnstarDashboardPayload>;
|
|
155833
156397
|
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
156398
|
+
avp_updateChartByConfigId?: Maybe<AvpUpdateChartPayload>;
|
|
155834
156399
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
155835
156400
|
avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
|
|
155836
156401
|
avp_updateDashboardIdentityAccess?: Maybe<AvpUpdateDashboardIdentityAccessPayload>;
|
|
@@ -155937,6 +156502,7 @@ export declare type Mutation = {
|
|
|
155937
156502
|
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
155938
156503
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
155939
156504
|
confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
|
|
156505
|
+
confluence_disableSystemRole?: Maybe<ConfluenceDisableSystemRolePayload>;
|
|
155940
156506
|
confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
|
|
155941
156507
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
155942
156508
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
@@ -155981,11 +156547,13 @@ export declare type Mutation = {
|
|
|
155981
156547
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
155982
156548
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
155983
156549
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
156550
|
+
confluence_restoreSystemRole?: Maybe<ConfluenceRestoreSystemRolePayload>;
|
|
155984
156551
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
155985
156552
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
155986
156553
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
155987
156554
|
confluence_setRolesHubTransitionStep?: Maybe<ConfluenceSetRolesHubTransitionStepPayload>;
|
|
155988
156555
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
156556
|
+
confluence_setSystemOperationRoleConfiguration?: Maybe<ConfluenceSetSystemOperationRoleConfigurationPayload>;
|
|
155989
156557
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
155990
156558
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
155991
156559
|
confluence_syncSmartFolder?: Maybe<ConfluenceSyncSmartFolderPayload>;
|
|
@@ -156191,12 +156759,14 @@ export declare type Mutation = {
|
|
|
156191
156759
|
devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
|
|
156192
156760
|
devai_autodevNextAddMembers?: Maybe<DevAiAutodevNextAddMembersPayload>;
|
|
156193
156761
|
devai_autodevNextAddProjects?: Maybe<DevAiAutodevNextAddProjectsPayload>;
|
|
156762
|
+
devai_autodevNextCompleteWorkItemRefinement?: Maybe<DevAiAutodevNextCompleteWorkItemRefinementPayload>;
|
|
156194
156763
|
devai_autodevNextCreateWorkstream?: Maybe<DevAiAutodevNextCreateWorkstreamPayload>;
|
|
156195
156764
|
devai_autodevNextDeleteWorkstream?: Maybe<DevAiAutodevNextDeleteWorkstreamPayload>;
|
|
156196
156765
|
devai_autodevNextReassignWorkItem?: Maybe<DevAiAutodevNextReassignWorkItemPayload>;
|
|
156197
156766
|
devai_autodevNextRemoveMembers?: Maybe<DevAiAutodevNextRemoveMembersPayload>;
|
|
156198
156767
|
devai_autodevNextRemoveProjects?: Maybe<DevAiAutodevNextRemoveProjectsPayload>;
|
|
156199
156768
|
devai_autodevNextSendWorkstreamNudges?: Maybe<DevAiAutodevNextSendWorkstreamNudgesPayload>;
|
|
156769
|
+
devai_autodevNextTriggerWorkstreamScan?: Maybe<DevAiAutodevNextTriggerWorkstreamScanPayload>;
|
|
156200
156770
|
devai_autodevNextUpdateWorkstream?: Maybe<DevAiAutodevNextUpdateWorkstreamPayload>;
|
|
156201
156771
|
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
156202
156772
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
@@ -156262,6 +156832,7 @@ export declare type Mutation = {
|
|
|
156262
156832
|
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
156263
156833
|
goals_createGoalTypePair?: Maybe<TownsquareCreateGoalTypePairPayload>;
|
|
156264
156834
|
goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
|
|
156835
|
+
goals_createMetricValue?: Maybe<TownsquareGoalsCreateMetricValuePayload>;
|
|
156265
156836
|
goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
|
|
156266
156837
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
156267
156838
|
goals_deleteComment?: Maybe<TownsquareGoalsDeleteCommentPayload>;
|
|
@@ -156321,6 +156892,7 @@ export declare type Mutation = {
|
|
|
156321
156892
|
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
156322
156893
|
graphIntegration_mcpAdminManagementUpdateMcpRegistration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpRegistrationPayload>;
|
|
156323
156894
|
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
156895
|
+
graphIntegration_mcpServerRequestSubmit?: Maybe<GraphIntegrationMcpServerRequestSubmitPayload>;
|
|
156324
156896
|
graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
|
|
156325
156897
|
graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
|
|
156326
156898
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
@@ -156350,7 +156922,6 @@ export declare type Mutation = {
|
|
|
156350
156922
|
home_removeTags?: Maybe<TownsquareRemoveTagsPayload>;
|
|
156351
156923
|
insightsMutation?: Maybe<InsightsMutation>;
|
|
156352
156924
|
installApp?: Maybe<AppInstallationResponse>;
|
|
156353
|
-
invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
|
|
156354
156925
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
156355
156926
|
invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
|
|
156356
156927
|
jira?: Maybe<JiraMutation>;
|
|
@@ -156370,6 +156941,7 @@ export declare type Mutation = {
|
|
|
156370
156941
|
jira_createBoardViewIssue?: Maybe<JiraBoardViewIssueCreatePayload>;
|
|
156371
156942
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
156372
156943
|
jira_createBoardViewsForWorkflows?: Maybe<JiraCreateBoardViewsForWorkflowsPayload>;
|
|
156944
|
+
jira_createCategoryOption?: Maybe<JiraCreateCategoryOptionPayload>;
|
|
156373
156945
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
156374
156946
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
156375
156947
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
@@ -156504,7 +157076,7 @@ export declare type Mutation = {
|
|
|
156504
157076
|
jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
|
|
156505
157077
|
jpdViewsService_updateGlobalViewV2?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
156506
157078
|
jpdViewsService_updateGlobalViewV3?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
156507
|
-
|
|
157079
|
+
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
156508
157080
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
156509
157081
|
jsmChannels_executeDraftResolutionPlanDeletion: JsmChannelsResolutionPlanActionPayload;
|
|
156510
157082
|
jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
|
|
@@ -156541,6 +157113,7 @@ export declare type Mutation = {
|
|
|
156541
157113
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
156542
157114
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
156543
157115
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
157116
|
+
kitsune_resyncInsights?: Maybe<KitsuneJob>;
|
|
156544
157117
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
156545
157118
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
156546
157119
|
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
@@ -156560,6 +157133,7 @@ export declare type Mutation = {
|
|
|
156560
157133
|
knowledgeBase_updateSourceViewPermission?: Maybe<KnowledgeBaseUpdateSourceViewPermissionResponse>;
|
|
156561
157134
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
156562
157135
|
likeContent?: Maybe<LikeContentPayload>;
|
|
157136
|
+
liveChat_sendTypingSignal?: Maybe<LiveChatTypingSignalPayload>;
|
|
156563
157137
|
liveChat_sendUserMessage?: Maybe<LiveChatUserMessagePayload>;
|
|
156564
157138
|
loom_acceptOrganizationInvite?: Maybe<LoomAcceptOrganizationInvitation>;
|
|
156565
157139
|
loom_deleteVideos?: Maybe<LoomDeleteVideo>;
|
|
@@ -156860,6 +157434,8 @@ export declare type Mutation = {
|
|
|
156860
157434
|
startSprint?: Maybe<SprintResponse>;
|
|
156861
157435
|
studio_createDraftBuild?: Maybe<StudioCreateDraftBuildPayload>;
|
|
156862
157436
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
157437
|
+
tags_createTag?: Maybe<TagsResponse>;
|
|
157438
|
+
tags_updateTag?: Maybe<TagsResponse>;
|
|
156863
157439
|
team?: Maybe<TeamMutation>;
|
|
156864
157440
|
templateMigration?: Maybe<TemplateMigration>;
|
|
156865
157441
|
templatize?: Maybe<Scalars['ID']['output']>;
|
|
@@ -157279,8 +157855,8 @@ export declare type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
|
|
|
157279
157855
|
export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
|
|
157280
157856
|
input: AgentWorkspaceCreateAndLinkTeamsInput;
|
|
157281
157857
|
};
|
|
157282
|
-
export declare type
|
|
157283
|
-
input:
|
|
157858
|
+
export declare type MutationAgentWorkspace_CreateDraftedRoutingTableEntriesArgs = {
|
|
157859
|
+
input: AgentWorkspaceCreateDraftedRoutingTableEntriesInput;
|
|
157284
157860
|
};
|
|
157285
157861
|
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
157286
157862
|
input: AgentWorkspaceCreateScheduleInput;
|
|
@@ -157297,9 +157873,6 @@ export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
|
157297
157873
|
export declare type MutationAgentWorkspace_DeleteShiftArgs = {
|
|
157298
157874
|
input: AgentWorkspaceDeleteShiftInput;
|
|
157299
157875
|
};
|
|
157300
|
-
export declare type MutationAgentWorkspace_DiscardDraftedRoutingTableArgs = {
|
|
157301
|
-
input: AgentWorkspaceDiscardDraftedRoutingTableInput;
|
|
157302
|
-
};
|
|
157303
157876
|
export declare type MutationAgentWorkspace_EditCoverShiftArgs = {
|
|
157304
157877
|
input: AgentWorkspaceEditCoverShiftInput;
|
|
157305
157878
|
};
|
|
@@ -157353,6 +157926,9 @@ export declare type MutationAgentWorkspace_UpdateSkillArgs = {
|
|
|
157353
157926
|
export declare type MutationAgentWorkspace_UpdateSkillCategoryArgs = {
|
|
157354
157927
|
input: AgentWorkspaceSkillCategoryUpdateInput;
|
|
157355
157928
|
};
|
|
157929
|
+
export declare type MutationAgentWorkspace_UpdateSkillMappingsInProjectArgs = {
|
|
157930
|
+
input: AgentWorkspaceUpdateSkillMappingsInProjectInput;
|
|
157931
|
+
};
|
|
157356
157932
|
export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
|
|
157357
157933
|
input: AgentWorkspaceUpdateSmartRoutingConfigInput;
|
|
157358
157934
|
};
|
|
@@ -157380,13 +157956,6 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
157380
157956
|
id: Scalars['ID']['input'];
|
|
157381
157957
|
input: AiManagedObjectUpdateInput;
|
|
157382
157958
|
};
|
|
157383
|
-
export declare type MutationAiops_CreateInvestigationArgs = {
|
|
157384
|
-
input: AiOpsCreateInvestigationInput;
|
|
157385
|
-
};
|
|
157386
|
-
export declare type MutationAiops_ReviewRootCauseArgs = {
|
|
157387
|
-
cloudId: Scalars['ID']['input'];
|
|
157388
|
-
input: AiOpsReviewRootCauseInput;
|
|
157389
|
-
};
|
|
157390
157959
|
export declare type MutationAiops_TriggerInvestigationArgs = {
|
|
157391
157960
|
cloudId: Scalars['ID']['input'];
|
|
157392
157961
|
input: AiOpsTriggerInvestigationInput;
|
|
@@ -157490,6 +158059,12 @@ export declare type MutationAssetsDm_CreateDefaultCleansingRuleArgs = {
|
|
|
157490
158059
|
input: AssetsDmCreateDefaultCleansingRuleInput;
|
|
157491
158060
|
workspaceId: Scalars['ID']['input'];
|
|
157492
158061
|
};
|
|
158062
|
+
export declare type MutationAssetsDm_CreateJobScheduleArgs = {
|
|
158063
|
+
cloudId: Scalars['ID']['input'];
|
|
158064
|
+
input: AssetsDmJobScheduleInput;
|
|
158065
|
+
jobId: Scalars['ID']['input'];
|
|
158066
|
+
workspaceId: Scalars['ID']['input'];
|
|
158067
|
+
};
|
|
157493
158068
|
export declare type MutationAssetsDm_CreateObjectAttributeArgs = {
|
|
157494
158069
|
cloudId: Scalars['ID']['input'];
|
|
157495
158070
|
payload: AssetsDmCreateObjectAttributeInput;
|
|
@@ -157602,6 +158177,11 @@ export declare type MutationAssetsDm_DeleteDefaultCleansingRuleArgs = {
|
|
|
157602
158177
|
input: AssetsDmDeleteDefaultCleansingRuleInput;
|
|
157603
158178
|
workspaceId: Scalars['ID']['input'];
|
|
157604
158179
|
};
|
|
158180
|
+
export declare type MutationAssetsDm_DeleteJobScheduleArgs = {
|
|
158181
|
+
cloudId: Scalars['ID']['input'];
|
|
158182
|
+
jobId: Scalars['ID']['input'];
|
|
158183
|
+
workspaceId: Scalars['ID']['input'];
|
|
158184
|
+
};
|
|
157605
158185
|
export declare type MutationAssetsDm_DeleteObjectTagArgs = {
|
|
157606
158186
|
cloudId: Scalars['ID']['input'];
|
|
157607
158187
|
tagId: Scalars['ID']['input'];
|
|
@@ -157642,6 +158222,12 @@ export declare type MutationAssetsDm_EditDefaultAttributeMappingArgs = {
|
|
|
157642
158222
|
payload: AssetsDmEditDefaultAttributeMappingInput;
|
|
157643
158223
|
workspaceId: Scalars['ID']['input'];
|
|
157644
158224
|
};
|
|
158225
|
+
export declare type MutationAssetsDm_EditJobScheduleArgs = {
|
|
158226
|
+
cloudId: Scalars['ID']['input'];
|
|
158227
|
+
input: AssetsDmJobScheduleInput;
|
|
158228
|
+
jobId: Scalars['ID']['input'];
|
|
158229
|
+
workspaceId: Scalars['ID']['input'];
|
|
158230
|
+
};
|
|
157645
158231
|
export declare type MutationAssetsDm_EditObjectTagArgs = {
|
|
157646
158232
|
cloudId: Scalars['ID']['input'];
|
|
157647
158233
|
input: Array<AssetsDmObjectTagEditInput>;
|
|
@@ -157892,6 +158478,9 @@ export declare type MutationAvp_UnstarDashboardArgs = {
|
|
|
157892
158478
|
export declare type MutationAvp_UpdateChartArgs = {
|
|
157893
158479
|
input: AvpUpdateChartInput;
|
|
157894
158480
|
};
|
|
158481
|
+
export declare type MutationAvp_UpdateChartByConfigIdArgs = {
|
|
158482
|
+
input: AvpUpdateChartByConfigIdInput;
|
|
158483
|
+
};
|
|
157895
158484
|
export declare type MutationAvp_UpdateDashboardArgs = {
|
|
157896
158485
|
input: AvpUpdateDashboardInput;
|
|
157897
158486
|
};
|
|
@@ -158246,6 +158835,10 @@ export declare type MutationConfluence_DeleteTopicArgs = {
|
|
|
158246
158835
|
cloudId: Scalars['ID']['input'];
|
|
158247
158836
|
input: ConfluenceDeleteTopicInput;
|
|
158248
158837
|
};
|
|
158838
|
+
export declare type MutationConfluence_DisableSystemRoleArgs = {
|
|
158839
|
+
cloudId: Scalars['ID']['input'];
|
|
158840
|
+
input: ConfluenceDisableSystemRoleInput;
|
|
158841
|
+
};
|
|
158249
158842
|
export declare type MutationConfluence_EnableGlobalAnonymousEnforcementArgs = {
|
|
158250
158843
|
cloudId: Scalars['ID']['input'];
|
|
158251
158844
|
};
|
|
@@ -158425,6 +159018,10 @@ export declare type MutationConfluence_RestoreContentVersionArgs = {
|
|
|
158425
159018
|
cloudId: Scalars['ID']['input'];
|
|
158426
159019
|
input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
|
|
158427
159020
|
};
|
|
159021
|
+
export declare type MutationConfluence_RestoreSystemRoleArgs = {
|
|
159022
|
+
cloudId: Scalars['ID']['input'];
|
|
159023
|
+
input: ConfluenceRestoreSystemRoleInput;
|
|
159024
|
+
};
|
|
158428
159025
|
export declare type MutationConfluence_SendToDesktopArgs = {
|
|
158429
159026
|
cloudId: Scalars['ID']['input'];
|
|
158430
159027
|
input: ConfluenceSendToDesktopRequestInput;
|
|
@@ -158447,6 +159044,10 @@ export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
|
158447
159044
|
cloudId: Scalars['ID']['input'];
|
|
158448
159045
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
158449
159046
|
};
|
|
159047
|
+
export declare type MutationConfluence_SetSystemOperationRoleConfigurationArgs = {
|
|
159048
|
+
cloudId: Scalars['ID']['input'];
|
|
159049
|
+
input: ConfluenceSetSystemOperationRoleConfigurationInput;
|
|
159050
|
+
};
|
|
158450
159051
|
export declare type MutationConfluence_ShareContentArgs = {
|
|
158451
159052
|
ContentShareRequestInput?: InputMaybe<ConfluenceContentShareRequestInput>;
|
|
158452
159053
|
cloudId: Scalars['ID']['input'];
|
|
@@ -159180,6 +159781,9 @@ export declare type MutationDevai_AutodevNextAddMembersArgs = {
|
|
|
159180
159781
|
export declare type MutationDevai_AutodevNextAddProjectsArgs = {
|
|
159181
159782
|
input: DevAiAutodevNextAddProjectsInput;
|
|
159182
159783
|
};
|
|
159784
|
+
export declare type MutationDevai_AutodevNextCompleteWorkItemRefinementArgs = {
|
|
159785
|
+
input: DevAiAutodevNextCompleteWorkItemRefinementInput;
|
|
159786
|
+
};
|
|
159183
159787
|
export declare type MutationDevai_AutodevNextCreateWorkstreamArgs = {
|
|
159184
159788
|
input: DevAiAutodevNextCreateWorkstreamInput;
|
|
159185
159789
|
};
|
|
@@ -159198,6 +159802,9 @@ export declare type MutationDevai_AutodevNextRemoveProjectsArgs = {
|
|
|
159198
159802
|
export declare type MutationDevai_AutodevNextSendWorkstreamNudgesArgs = {
|
|
159199
159803
|
input: DevAiAutodevNextSendWorkstreamNudgesInput;
|
|
159200
159804
|
};
|
|
159805
|
+
export declare type MutationDevai_AutodevNextTriggerWorkstreamScanArgs = {
|
|
159806
|
+
input: DevAiAutodevNextTriggerWorkstreamScanInput;
|
|
159807
|
+
};
|
|
159201
159808
|
export declare type MutationDevai_AutodevNextUpdateWorkstreamArgs = {
|
|
159202
159809
|
input: DevAiAutodevNextUpdateWorkstreamInput;
|
|
159203
159810
|
};
|
|
@@ -159409,6 +160016,9 @@ export declare type MutationGoals_CreateGoalTypePairArgs = {
|
|
|
159409
160016
|
export declare type MutationGoals_CreateLearningArgs = {
|
|
159410
160017
|
input: TownsquareGoalsCreateLearningInput;
|
|
159411
160018
|
};
|
|
160019
|
+
export declare type MutationGoals_CreateMetricValueArgs = {
|
|
160020
|
+
input: TownsquareGoalsCreateMetricValueInput;
|
|
160021
|
+
};
|
|
159412
160022
|
export declare type MutationGoals_CreateRiskArgs = {
|
|
159413
160023
|
input: TownsquareGoalsCreateRiskInput;
|
|
159414
160024
|
};
|
|
@@ -159586,6 +160196,9 @@ export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpRegistra
|
|
|
159586
160196
|
export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpToolConfigurationArgs = {
|
|
159587
160197
|
input: GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput;
|
|
159588
160198
|
};
|
|
160199
|
+
export declare type MutationGraphIntegration_McpServerRequestSubmitArgs = {
|
|
160200
|
+
input: GraphIntegrationMcpServerRequestSubmitInput;
|
|
160201
|
+
};
|
|
159589
160202
|
export declare type MutationGraphIntegration_RemoveTwgCapabilityContainerArgs = {
|
|
159590
160203
|
input: GraphIntegrationRemoveTwgCapabilityContainerInput;
|
|
159591
160204
|
};
|
|
@@ -159672,9 +160285,6 @@ export declare type MutationHome_RemoveTagsArgs = {
|
|
|
159672
160285
|
export declare type MutationInstallAppArgs = {
|
|
159673
160286
|
input: AppInstallationInput;
|
|
159674
160287
|
};
|
|
159675
|
-
export declare type MutationInvokeAuxEffectsArgs = {
|
|
159676
|
-
input: InvokeAuxEffectsInput;
|
|
159677
|
-
};
|
|
159678
160288
|
export declare type MutationInvokeExtensionArgs = {
|
|
159679
160289
|
input: InvokeExtensionInput;
|
|
159680
160290
|
};
|
|
@@ -159729,6 +160339,9 @@ export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
|
|
|
159729
160339
|
export declare type MutationJira_CreateBoardViewsForWorkflowsArgs = {
|
|
159730
160340
|
input: JiraCreateBoardViewsForWorkflowsInput;
|
|
159731
160341
|
};
|
|
160342
|
+
export declare type MutationJira_CreateCategoryOptionArgs = {
|
|
160343
|
+
input: JiraCreateCategoryOptionInput;
|
|
160344
|
+
};
|
|
159732
160345
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
159733
160346
|
input: JiraCreateCustomBackgroundInput;
|
|
159734
160347
|
};
|
|
@@ -160317,6 +160930,9 @@ export declare type MutationKitsune_RemoveViewArgs = {
|
|
|
160317
160930
|
export declare type MutationKitsune_ResyncFeedbackArgs = {
|
|
160318
160931
|
workspaceAri: Scalars['ID']['input'];
|
|
160319
160932
|
};
|
|
160933
|
+
export declare type MutationKitsune_ResyncInsightsArgs = {
|
|
160934
|
+
workspaceAri: Scalars['ID']['input'];
|
|
160935
|
+
};
|
|
160320
160936
|
export declare type MutationKitsune_SyncCsmPropertiesArgs = {
|
|
160321
160937
|
workspaceAri: Scalars['ID']['input'];
|
|
160322
160938
|
};
|
|
@@ -160408,6 +161024,9 @@ export declare type MutationKnowledgeBase_UpdateSourceViewPermissionArgs = {
|
|
|
160408
161024
|
export declare type MutationLikeContentArgs = {
|
|
160409
161025
|
input: LikeContentInput;
|
|
160410
161026
|
};
|
|
161027
|
+
export declare type MutationLiveChat_SendTypingSignalArgs = {
|
|
161028
|
+
liveChatSendTypingSignalInput: LiveChatSendTypingSignalInput;
|
|
161029
|
+
};
|
|
160411
161030
|
export declare type MutationLiveChat_SendUserMessageArgs = {
|
|
160412
161031
|
liveChatSendUserMessageInput: LiveChatSendUserMessageInput;
|
|
160413
161032
|
};
|
|
@@ -161361,6 +161980,15 @@ export declare type MutationStudio_CreateDraftBuildArgs = {
|
|
|
161361
161980
|
export declare type MutationSubscribeToAppArgs = {
|
|
161362
161981
|
input: AppSubscribeInput;
|
|
161363
161982
|
};
|
|
161983
|
+
export declare type MutationTags_CreateTagArgs = {
|
|
161984
|
+
input: TagsCreateInput;
|
|
161985
|
+
kind: Scalars['String']['input'];
|
|
161986
|
+
};
|
|
161987
|
+
export declare type MutationTags_UpdateTagArgs = {
|
|
161988
|
+
input: TagsUpdateInput;
|
|
161989
|
+
kind: Scalars['String']['input'];
|
|
161990
|
+
tagId: Scalars['String']['input'];
|
|
161991
|
+
};
|
|
161364
161992
|
export declare type MutationTemplateMigrationArgs = {
|
|
161365
161993
|
spaceKey: Scalars['String']['input'];
|
|
161366
161994
|
};
|
|
@@ -163879,6 +164507,7 @@ export declare enum PolarisTimelineTodayMarker {
|
|
|
163879
164507
|
}
|
|
163880
164508
|
export declare type PolarisTreeConfig = {
|
|
163881
164509
|
__typename?: 'PolarisTreeConfig';
|
|
164510
|
+
allowMultipleParents?: Maybe<Scalars['Boolean']['output']>;
|
|
163882
164511
|
defaultFields?: Maybe<Array<PolarisIdeaField>>;
|
|
163883
164512
|
hierarchy?: Maybe<Array<PolarisTreeHierarchyItem>>;
|
|
163884
164513
|
mode?: Maybe<PolarisTreeMode>;
|
|
@@ -164253,6 +164882,30 @@ export declare type PrivacyEnhancingTechniques = {
|
|
|
164253
164882
|
arePrivacyEnhancingTechniquesSupported: Scalars['Boolean']['output'];
|
|
164254
164883
|
privacyEnhancingTechniquesSupported?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
164255
164884
|
};
|
|
164885
|
+
export declare type ProactiveAiEchoEdge = {
|
|
164886
|
+
__typename?: 'ProactiveAiEchoEdge';
|
|
164887
|
+
cursor: Scalars['String']['output'];
|
|
164888
|
+
node?: Maybe<ProactiveAiEchoMessage>;
|
|
164889
|
+
};
|
|
164890
|
+
export declare type ProactiveAiEchoMessage = {
|
|
164891
|
+
__typename?: 'ProactiveAiEchoMessage';
|
|
164892
|
+
index: Scalars['Int']['output'];
|
|
164893
|
+
originalMessage: Scalars['String']['output'];
|
|
164894
|
+
};
|
|
164895
|
+
export declare type ProactiveAiEchoResponse = {
|
|
164896
|
+
__typename?: 'ProactiveAiEchoResponse';
|
|
164897
|
+
message: Scalars['String']['output'];
|
|
164898
|
+
paginatedResults?: Maybe<ProactiveAiEchoResultsConnection>;
|
|
164899
|
+
timestamp: Scalars['String']['output'];
|
|
164900
|
+
userAccountId: Scalars['String']['output'];
|
|
164901
|
+
};
|
|
164902
|
+
export declare type ProactiveAiEchoResultsConnection = {
|
|
164903
|
+
__typename?: 'ProactiveAiEchoResultsConnection';
|
|
164904
|
+
edges?: Maybe<Array<ProactiveAiEchoEdge>>;
|
|
164905
|
+
errors?: Maybe<Array<QueryError>>;
|
|
164906
|
+
pageInfo: PageInfo;
|
|
164907
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
164908
|
+
};
|
|
164256
164909
|
export declare enum Product {
|
|
164257
164910
|
Confluence = "CONFLUENCE"
|
|
164258
164911
|
}
|
|
@@ -164740,17 +165393,16 @@ export declare type Query = {
|
|
|
164740
165393
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
164741
165394
|
agentWorkspace_coverShiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
164742
165395
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
164743
|
-
|
|
165396
|
+
agentWorkspace_draftedRoutingTableEntries?: Maybe<AgentWorkspaceDraftedRoutingTableEntries>;
|
|
164744
165397
|
agentWorkspace_draftedRoutingTableStatus?: Maybe<AgentWorkspaceDraftedRoutingTableStatus>;
|
|
164745
165398
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
164746
165399
|
agentWorkspace_issueRoutingHistory?: Maybe<AgentWorkspaceIssueRoutingHistory>;
|
|
165400
|
+
agentWorkspace_liveRoutingTable?: Maybe<AgentWorkspaceLiveRoutingTable>;
|
|
164747
165401
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
164748
165402
|
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<AgentWorkspaceRecommendedAgentsForCoverageGapPayload>;
|
|
164749
165403
|
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
164750
165404
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
164751
165405
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
164752
|
-
agentWorkspace_routingSetupState?: Maybe<AgentWorkspaceRoutingSetupState>;
|
|
164753
|
-
agentWorkspace_routingTableEntries?: Maybe<AgentWorkspaceRoutingTableEntries>;
|
|
164754
165406
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
164755
165407
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
164756
165408
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
@@ -164770,6 +165422,8 @@ export declare type Query = {
|
|
|
164770
165422
|
agentWorkspace_teamsConnectedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
164771
165423
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
164772
165424
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
165425
|
+
aiCoreApi_fetchRsaEmployeeTickets?: Maybe<AiCoreApiRsaEmployeeTicketsResult>;
|
|
165426
|
+
aiCoreApi_fetchRsaFunnelMetrics?: Maybe<AiCoreApiRsaFunnelMetricsResult>;
|
|
164773
165427
|
aiCoreApi_fetchRsaReport?: Maybe<AiCoreApiRsaFetchReportResult>;
|
|
164774
165428
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
164775
165429
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
@@ -164777,12 +165431,10 @@ export declare type Query = {
|
|
|
164777
165431
|
aiManagedObject_aiManagedObject?: Maybe<AiManagedObject>;
|
|
164778
165432
|
aiManagedObject_aiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
164779
165433
|
aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
|
|
164780
|
-
aiops_echo?: Maybe<Scalars['String']['output']>;
|
|
164781
165434
|
aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
|
|
164782
165435
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
164783
|
-
aiops_investigationById?: Maybe<
|
|
165436
|
+
aiops_investigationById?: Maybe<AiOpsInvestigationQueryResult>;
|
|
164784
165437
|
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
164785
|
-
aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
164786
165438
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
164787
165439
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
164788
165440
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -164880,6 +165532,9 @@ export declare type Query = {
|
|
|
164880
165532
|
assetsVertical_customInsights?: Maybe<AssetsVerticalCustomInsightsResult>;
|
|
164881
165533
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
164882
165534
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
165535
|
+
assetsVertical_hardwareCountByStatus?: Maybe<AssetsVerticalHardwareCountByStatusResult>;
|
|
165536
|
+
assetsVertical_hardwareObjectTypes?: Maybe<AssetsVerticalHardwareObjectTypesResult>;
|
|
165537
|
+
assetsVertical_hardwareObjects?: Maybe<AssetsVerticalHardwareObjectsResult>;
|
|
164883
165538
|
assetsVertical_insightDefinitions?: Maybe<AssetsVerticalInsightDefinitionResult>;
|
|
164884
165539
|
assetsVertical_insightDetails?: Maybe<AssetsVerticalInsightDetailsResult>;
|
|
164885
165540
|
assetsVertical_insightDetailsByDefinition?: Maybe<AssetsVerticalInsightDetailsByDefinitionResult>;
|
|
@@ -164931,6 +165586,8 @@ export declare type Query = {
|
|
|
164931
165586
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
164932
165587
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
164933
165588
|
avp_getDashboardIdBySlug?: Maybe<AvpGetDashboardIdBySlugPayload>;
|
|
165589
|
+
avp_getDashboardIdentityAccess?: Maybe<AvpDashboardIdentityAccess>;
|
|
165590
|
+
avp_getDashboardResourcePermission?: Maybe<AvpDashboardResourcePermission>;
|
|
164934
165591
|
avp_getDashboardTemplateJson?: Maybe<Scalars['String']['output']>;
|
|
164935
165592
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
164936
165593
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
@@ -164939,6 +165596,7 @@ export declare type Query = {
|
|
|
164939
165596
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
164940
165597
|
avp_getRecentDashboards?: Maybe<Array<AvpRecentDashboard>>;
|
|
164941
165598
|
avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
|
|
165599
|
+
avp_getWorkspaceExperience?: Maybe<AvpWorkspaceExperience>;
|
|
164942
165600
|
avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
|
|
164943
165601
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
164944
165602
|
avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
@@ -165182,6 +165840,7 @@ export declare type Query = {
|
|
|
165182
165840
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
165183
165841
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
165184
165842
|
confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
|
|
165843
|
+
confluence_systemOperationRoleConfigurations?: Maybe<Array<Maybe<ConfluenceSystemOperationRoleConfiguration>>>;
|
|
165185
165844
|
confluence_teamAdminControlsSettings?: Maybe<ConfluenceTeamAdminControlsSettings>;
|
|
165186
165845
|
confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
|
|
165187
165846
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
@@ -165273,6 +165932,7 @@ export declare type Query = {
|
|
|
165273
165932
|
csm_emailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigQueryResult>;
|
|
165274
165933
|
csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
|
|
165275
165934
|
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
165935
|
+
csm_liveChatAgents?: Maybe<CustomerServiceLiveChatAgentConnection>;
|
|
165276
165936
|
csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
|
|
165277
165937
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
165278
165938
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
@@ -165407,6 +166067,7 @@ export declare type Query = {
|
|
|
165407
166067
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
165408
166068
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
165409
166069
|
goals_capabilities?: Maybe<TownsquareGoalAppCapabilities>;
|
|
166070
|
+
goals_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
165410
166071
|
goals_goalStatuses?: Maybe<Array<TownsquareStatus>>;
|
|
165411
166072
|
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
165412
166073
|
goals_goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
@@ -165416,6 +166077,7 @@ export declare type Query = {
|
|
|
165416
166077
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
165417
166078
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
165418
166079
|
goals_search?: Maybe<TownsquareGoalConnection>;
|
|
166080
|
+
graphInference_getRelatedRepos?: Maybe<GraphInferenceGetRelatedReposResponse>;
|
|
165419
166081
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
165420
166082
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
165421
166083
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -165424,6 +166086,8 @@ export declare type Query = {
|
|
|
165424
166086
|
graphIntegration_mcpAdminManagementMcpServerMetaData?: Maybe<GraphIntegrationMcpAdminManagementMcpServerMetaData>;
|
|
165425
166087
|
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
165426
166088
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
166089
|
+
graphIntegration_mcpServerRequests?: Maybe<GraphIntegrationMcpServerRequestConnection>;
|
|
166090
|
+
graphIntegration_mcpServerUserRequests?: Maybe<GraphIntegrationMcpServerUserRequestConnection>;
|
|
165427
166091
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
165428
166092
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
165429
166093
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
@@ -165551,7 +166215,7 @@ export declare type Query = {
|
|
|
165551
166215
|
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
165552
166216
|
jpdViewsService_globalViewsByIdV2?: Maybe<Array<Maybe<JpdViewsServiceGlobalView2>>>;
|
|
165553
166217
|
jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
|
|
165554
|
-
|
|
166218
|
+
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
165555
166219
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
165556
166220
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
165557
166221
|
jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
|
|
@@ -165559,6 +166223,7 @@ export declare type Query = {
|
|
|
165559
166223
|
jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
|
|
165560
166224
|
jsmChannels_getRovoAgentsByProject?: Maybe<JsmChannelsRovoAgentsByProjectResult>;
|
|
165561
166225
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
166226
|
+
jsmChannels_hasRovoServiceResolutionPlanGenerated?: Maybe<JsmChannelsRovoServiceResolutionPlanGeneratedResult>;
|
|
165562
166227
|
jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
|
|
165563
166228
|
jsmChannels_rovoServiceAgentConfigByProjectId?: Maybe<JsmChannelsRovoServiceAgentConfigResult>;
|
|
165564
166229
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
@@ -165712,6 +166377,7 @@ export declare type Query = {
|
|
|
165712
166377
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
165713
166378
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
165714
166379
|
playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
|
|
166380
|
+
playbook_jiraPlaybookRuleIdsForProject?: Maybe<JiraPlaybookRuleIdsConnection>;
|
|
165715
166381
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
165716
166382
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
165717
166383
|
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
@@ -165738,6 +166404,7 @@ export declare type Query = {
|
|
|
165738
166404
|
popularFeed?: Maybe<PaginatedPopularFeed>;
|
|
165739
166405
|
postOffice_getMessages?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
165740
166406
|
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
166407
|
+
proactiveAi_echo?: Maybe<ProactiveAiEchoResponse>;
|
|
165741
166408
|
productListing?: Maybe<ProductListingResult>;
|
|
165742
166409
|
productListings: Array<ProductListingResult>;
|
|
165743
166410
|
projects_allWatchedProjectUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
@@ -165752,6 +166419,7 @@ export declare type Query = {
|
|
|
165752
166419
|
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
165753
166420
|
projects_capabilities?: Maybe<TownsquareProjectAppCapabilities>;
|
|
165754
166421
|
projects_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
166422
|
+
projects_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
165755
166423
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
165756
166424
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
165757
166425
|
projects_searchJiraWorkItemsToLink?: Maybe<TownsquareJiraWorkItemConnection>;
|
|
@@ -165948,6 +166616,9 @@ export declare type Query = {
|
|
|
165948
166616
|
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
165949
166617
|
supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
|
|
165950
166618
|
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
166619
|
+
tags_getTag?: Maybe<TagsResponse>;
|
|
166620
|
+
tags_getTagByNameKindOrg?: Maybe<TagsResponse>;
|
|
166621
|
+
tags_listTags?: Maybe<TagsListResponse>;
|
|
165951
166622
|
team?: Maybe<TeamQuery>;
|
|
165952
166623
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
165953
166624
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
@@ -165997,6 +166668,7 @@ export declare type Query = {
|
|
|
165997
166668
|
userWithContentRestrictions?: Maybe<UserWithRestrictions>;
|
|
165998
166669
|
users?: Maybe<Array<User>>;
|
|
165999
166670
|
usersWithContentRestrictions?: Maybe<Array<Maybe<UserWithRestrictions>>>;
|
|
166671
|
+
uts_allowanceExemptions?: Maybe<UtsAllowanceExemptionList>;
|
|
166000
166672
|
uts_usageAlerts?: Maybe<Array<Maybe<UtsUsageAlert>>>;
|
|
166001
166673
|
validateConvertPageToLiveEdit?: Maybe<ConvertPageToLiveEditValidationResult>;
|
|
166002
166674
|
validatePageCopy?: Maybe<ValidatePageCopyPayload>;
|
|
@@ -166731,8 +167403,10 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
166731
167403
|
cloudId: Scalars['ID']['input'];
|
|
166732
167404
|
projectKey: Scalars['String']['input'];
|
|
166733
167405
|
};
|
|
166734
|
-
export declare type
|
|
166735
|
-
|
|
167406
|
+
export declare type QueryAgentWorkspace_DraftedRoutingTableEntriesArgs = {
|
|
167407
|
+
cloudId: Scalars['ID']['input'];
|
|
167408
|
+
projectKey: Scalars['String']['input'];
|
|
167409
|
+
serviceFieldId: Scalars['String']['input'];
|
|
166736
167410
|
};
|
|
166737
167411
|
export declare type QueryAgentWorkspace_DraftedRoutingTableStatusArgs = {
|
|
166738
167412
|
cloudId: Scalars['ID']['input'];
|
|
@@ -166745,6 +167419,10 @@ export declare type QueryAgentWorkspace_IssueRoutingHistoryArgs = {
|
|
|
166745
167419
|
cloudId: Scalars['ID']['input'];
|
|
166746
167420
|
issueKey: Scalars['String']['input'];
|
|
166747
167421
|
};
|
|
167422
|
+
export declare type QueryAgentWorkspace_LiveRoutingTableArgs = {
|
|
167423
|
+
cloudId: Scalars['ID']['input'];
|
|
167424
|
+
projectKey: Scalars['String']['input'];
|
|
167425
|
+
};
|
|
166748
167426
|
export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
166749
167427
|
cloudId: Scalars['ID']['input'];
|
|
166750
167428
|
projectId: Scalars['ID']['input'];
|
|
@@ -166764,12 +167442,6 @@ export declare type QueryAgentWorkspace_RoutingConfigArgs = {
|
|
|
166764
167442
|
cloudId: Scalars['ID']['input'];
|
|
166765
167443
|
projectKey: Scalars['String']['input'];
|
|
166766
167444
|
};
|
|
166767
|
-
export declare type QueryAgentWorkspace_RoutingSetupStateArgs = {
|
|
166768
|
-
projectAri: Scalars['ID']['input'];
|
|
166769
|
-
};
|
|
166770
|
-
export declare type QueryAgentWorkspace_RoutingTableEntriesArgs = {
|
|
166771
|
-
projectAri: Scalars['ID']['input'];
|
|
166772
|
-
};
|
|
166773
167445
|
export declare type QueryAgentWorkspace_RoutingTableGenerationStatusArgs = {
|
|
166774
167446
|
cloudId: Scalars['ID']['input'];
|
|
166775
167447
|
generationId: Scalars['ID']['input'];
|
|
@@ -166833,6 +167505,7 @@ export declare type QueryAgentWorkspace_SkillsArgs = {
|
|
|
166833
167505
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
166834
167506
|
cloudId: Scalars['ID']['input'];
|
|
166835
167507
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167508
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
166836
167509
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
166837
167510
|
};
|
|
166838
167511
|
export declare type QueryAgentWorkspace_SkillsInCategoryArgs = {
|
|
@@ -166882,8 +167555,19 @@ export declare type QueryAgent_SessionQueryArgs = {
|
|
|
166882
167555
|
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
166883
167556
|
sort?: InputMaybe<Scalars['String']['input']>;
|
|
166884
167557
|
};
|
|
167558
|
+
export declare type QueryAiCoreApi_FetchRsaEmployeeTicketsArgs = {
|
|
167559
|
+
accountIds: Array<Scalars['ID']['input']>;
|
|
167560
|
+
jobId: Scalars['ID']['input'];
|
|
167561
|
+
projectAri: Scalars['ID']['input'];
|
|
167562
|
+
};
|
|
167563
|
+
export declare type QueryAiCoreApi_FetchRsaFunnelMetricsArgs = {
|
|
167564
|
+
durationInDays?: InputMaybe<Scalars['Int']['input']>;
|
|
167565
|
+
jobId: Scalars['ID']['input'];
|
|
167566
|
+
projectAri: Scalars['ID']['input'];
|
|
167567
|
+
};
|
|
166885
167568
|
export declare type QueryAiCoreApi_FetchRsaReportArgs = {
|
|
166886
167569
|
jobId: Scalars['ID']['input'];
|
|
167570
|
+
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
166887
167571
|
queryTypes?: InputMaybe<Array<AiCoreApiRsaQueryType>>;
|
|
166888
167572
|
};
|
|
166889
167573
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
@@ -166910,9 +167594,6 @@ export declare type QueryAiManagedObject_AiManagedObjectsByReferenceObjectAriArg
|
|
|
166910
167594
|
referenceObjectAri: Scalars['ID']['input'];
|
|
166911
167595
|
status?: InputMaybe<AiManagedObjectStatus>;
|
|
166912
167596
|
};
|
|
166913
|
-
export declare type QueryAiops_EchoArgs = {
|
|
166914
|
-
input?: InputMaybe<Scalars['String']['input']>;
|
|
166915
|
-
};
|
|
166916
167597
|
export declare type QueryAiops_IncidentRelatedAlertsArgs = {
|
|
166917
167598
|
cloudId: Scalars['ID']['input'];
|
|
166918
167599
|
filter: AiOpsIncidentRelatedAlertsInput;
|
|
@@ -166930,9 +167611,6 @@ export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
|
|
|
166930
167611
|
entityId: Scalars['ID']['input'];
|
|
166931
167612
|
entityType: AiOpsInvestigationSourceEntityType;
|
|
166932
167613
|
};
|
|
166933
|
-
export declare type QueryAiops_LatestInvestigationByIssueIdArgs = {
|
|
166934
|
-
issueId: Scalars['ID']['input'];
|
|
166935
|
-
};
|
|
166936
167614
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
166937
167615
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
166938
167616
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -167480,6 +168158,18 @@ export declare type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
167480
168158
|
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
167481
168159
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
167482
168160
|
};
|
|
168161
|
+
export declare type QueryAssetsVertical_HardwareCountByStatusArgs = {
|
|
168162
|
+
cloudId: Scalars['ID']['input'];
|
|
168163
|
+
input: AssetsVerticalHardwareCountByStatusInput;
|
|
168164
|
+
};
|
|
168165
|
+
export declare type QueryAssetsVertical_HardwareObjectTypesArgs = {
|
|
168166
|
+
cloudId: Scalars['ID']['input'];
|
|
168167
|
+
input: AssetsVerticalHardwareObjectTypesInput;
|
|
168168
|
+
};
|
|
168169
|
+
export declare type QueryAssetsVertical_HardwareObjectsArgs = {
|
|
168170
|
+
cloudId: Scalars['ID']['input'];
|
|
168171
|
+
input: AssetsVerticalHardwareObjectsInput;
|
|
168172
|
+
};
|
|
167483
168173
|
export declare type QueryAssetsVertical_InsightDefinitionsArgs = {
|
|
167484
168174
|
cloudId: Scalars['ID']['input'];
|
|
167485
168175
|
};
|
|
@@ -167691,6 +168381,12 @@ export declare type QueryAvp_GetDashboardIdBySlugArgs = {
|
|
|
167691
168381
|
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
167692
168382
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
167693
168383
|
};
|
|
168384
|
+
export declare type QueryAvp_GetDashboardIdentityAccessArgs = {
|
|
168385
|
+
input: AvpGetDashboardIdentityAccessInput;
|
|
168386
|
+
};
|
|
168387
|
+
export declare type QueryAvp_GetDashboardResourcePermissionArgs = {
|
|
168388
|
+
input: AvpGetDashboardResourcePermissionInput;
|
|
168389
|
+
};
|
|
167694
168390
|
export declare type QueryAvp_GetDashboardTemplateJsonArgs = {
|
|
167695
168391
|
dashboardAri: Scalars['ID']['input'];
|
|
167696
168392
|
templateType: Scalars['String']['input'];
|
|
@@ -167727,6 +168423,10 @@ export declare type QueryAvp_GetStarredDashboardsArgs = {
|
|
|
167727
168423
|
principalAri: Scalars['ID']['input'];
|
|
167728
168424
|
workspaceAri: Scalars['ID']['input'];
|
|
167729
168425
|
};
|
|
168426
|
+
export declare type QueryAvp_GetWorkspaceExperienceArgs = {
|
|
168427
|
+
cloudId: Scalars['ID']['input'];
|
|
168428
|
+
workspaceAri: Scalars['ID']['input'];
|
|
168429
|
+
};
|
|
167730
168430
|
export declare type QueryAvp_SearchDashboardsArgs = {
|
|
167731
168431
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167732
168432
|
cloudId: Scalars['ID']['input'];
|
|
@@ -168775,6 +169475,9 @@ export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
|
|
|
168775
169475
|
cloudId: Scalars['ID']['input'];
|
|
168776
169476
|
subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
168777
169477
|
};
|
|
169478
|
+
export declare type QueryConfluence_SystemOperationRoleConfigurationsArgs = {
|
|
169479
|
+
cloudId: Scalars['ID']['input'];
|
|
169480
|
+
};
|
|
168778
169481
|
export declare type QueryConfluence_TeamAdminControlsSettingsArgs = {
|
|
168779
169482
|
cloudId: Scalars['ID']['input'];
|
|
168780
169483
|
};
|
|
@@ -168829,6 +169532,7 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
|
168829
169532
|
jql: Scalars['String']['input'];
|
|
168830
169533
|
};
|
|
168831
169534
|
export declare type QueryConfluence_ValidateConvertPageToMarkdownModeArgs = {
|
|
169535
|
+
adf?: InputMaybe<Scalars['String']['input']>;
|
|
168832
169536
|
cloudId: Scalars['ID']['input'];
|
|
168833
169537
|
contentId: Scalars['ID']['input'];
|
|
168834
169538
|
};
|
|
@@ -169247,6 +169951,12 @@ export declare type QueryCsm_LiveChatAgentArgs = {
|
|
|
169247
169951
|
accountId: Scalars['ID']['input'];
|
|
169248
169952
|
cloudId: Scalars['ID']['input'];
|
|
169249
169953
|
};
|
|
169954
|
+
export declare type QueryCsm_LiveChatAgentsArgs = {
|
|
169955
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
169956
|
+
cloudId: Scalars['ID']['input'];
|
|
169957
|
+
filter?: InputMaybe<CustomerServiceLiveChatAgentsFilterInput>;
|
|
169958
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169959
|
+
};
|
|
169250
169960
|
export declare type QueryCsm_LiveChatSettingsArgs = {
|
|
169251
169961
|
cloudId: Scalars['ID']['input'];
|
|
169252
169962
|
};
|
|
@@ -169783,6 +170493,11 @@ export declare type QueryGoals_ByKeyArgs = {
|
|
|
169783
170493
|
export declare type QueryGoals_CapabilitiesArgs = {
|
|
169784
170494
|
containerId: Scalars['ID']['input'];
|
|
169785
170495
|
};
|
|
170496
|
+
export declare type QueryGoals_ExplainSearchArgs = {
|
|
170497
|
+
containerId: Scalars['ID']['input'];
|
|
170498
|
+
directoryViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
170499
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
170500
|
+
};
|
|
169786
170501
|
export declare type QueryGoals_GoalStatusesArgs = {
|
|
169787
170502
|
containerId: Scalars['ID']['input'];
|
|
169788
170503
|
};
|
|
@@ -169821,6 +170536,9 @@ export declare type QueryGoals_SearchArgs = {
|
|
|
169821
170536
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
169822
170537
|
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
169823
170538
|
};
|
|
170539
|
+
export declare type QueryGraphInference_GetRelatedReposArgs = {
|
|
170540
|
+
input: GraphInferenceGetRelatedReposInput;
|
|
170541
|
+
};
|
|
169824
170542
|
export declare type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
169825
170543
|
contextAri: Scalars['ID']['input'];
|
|
169826
170544
|
};
|
|
@@ -169866,6 +170584,18 @@ export declare type QueryGraphIntegration_McpAdminManagementMcpToolsArgs = {
|
|
|
169866
170584
|
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
169867
170585
|
serverId: Scalars['ID']['input'];
|
|
169868
170586
|
};
|
|
170587
|
+
export declare type QueryGraphIntegration_McpServerRequestsArgs = {
|
|
170588
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170589
|
+
cloudId: Scalars['ID']['input'];
|
|
170590
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170591
|
+
status?: InputMaybe<GraphIntegrationMcpServerRequestStatus>;
|
|
170592
|
+
};
|
|
170593
|
+
export declare type QueryGraphIntegration_McpServerUserRequestsArgs = {
|
|
170594
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170595
|
+
aggregateRequestId: Scalars['ID']['input'];
|
|
170596
|
+
cloudId: Scalars['ID']['input'];
|
|
170597
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170598
|
+
};
|
|
169869
170599
|
export declare type QueryGraphIntegration_McpServersArgs = {
|
|
169870
170600
|
ids: Array<Scalars['ID']['input']>;
|
|
169871
170601
|
};
|
|
@@ -170329,14 +171059,6 @@ export declare type QueryJpdViewsService_GlobalViewsByIdV2Args = {
|
|
|
170329
171059
|
export declare type QueryJpdViewsService_HydrateUserArgs = {
|
|
170330
171060
|
cloudId: Scalars['ID']['input'];
|
|
170331
171061
|
};
|
|
170332
|
-
export declare type QueryJsmAgentWorkspace_LocationsArgs = {
|
|
170333
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
170334
|
-
cloudId: Scalars['ID']['input'];
|
|
170335
|
-
conversationAssignee?: InputMaybe<Scalars['String']['input']>;
|
|
170336
|
-
conversationStatus?: InputMaybe<Scalars['String']['input']>;
|
|
170337
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170338
|
-
projectKey: Scalars['String']['input'];
|
|
170339
|
-
};
|
|
170340
171062
|
export declare type QueryJsmChannels_ConversationsByContainerAriArgs = {
|
|
170341
171063
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170342
171064
|
containerAri: Scalars['ID']['input'];
|
|
@@ -170366,6 +171088,9 @@ export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArg
|
|
|
170366
171088
|
jiraProjectAri: Scalars['ID']['input'];
|
|
170367
171089
|
ticketId: Scalars['ID']['input'];
|
|
170368
171090
|
};
|
|
171091
|
+
export declare type QueryJsmChannels_HasRovoServiceResolutionPlanGeneratedArgs = {
|
|
171092
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
171093
|
+
};
|
|
170369
171094
|
export declare type QueryJsmChannels_IsPreviewModeEnabledArgs = {
|
|
170370
171095
|
experience: JsmChannelsExperience;
|
|
170371
171096
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -170869,6 +171594,13 @@ export declare type QueryPlaybook_JiraPlaybookLabelsForProjectArgs = {
|
|
|
170869
171594
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170870
171595
|
projectKey: Scalars['String']['input'];
|
|
170871
171596
|
};
|
|
171597
|
+
export declare type QueryPlaybook_JiraPlaybookRuleIdsForProjectArgs = {
|
|
171598
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
171599
|
+
cloudId: Scalars['ID']['input'];
|
|
171600
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171601
|
+
issueId: Scalars['String']['input'];
|
|
171602
|
+
projectKey: Scalars['String']['input'];
|
|
171603
|
+
};
|
|
170872
171604
|
export declare type QueryPlaybook_JiraPlaybookStepRunsForPlaybookInstanceArgs = {
|
|
170873
171605
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170874
171606
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -170962,6 +171694,14 @@ export declare type QueryPostOffice_GetMessagesArgs = {
|
|
|
170962
171694
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
170963
171695
|
payload: PostOfficeGetMessagesInput;
|
|
170964
171696
|
};
|
|
171697
|
+
export declare type QueryProactiveAi_EchoArgs = {
|
|
171698
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
171699
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
171700
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171701
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171702
|
+
message: Scalars['String']['input'];
|
|
171703
|
+
pageId: Scalars['ID']['input'];
|
|
171704
|
+
};
|
|
170965
171705
|
export declare type QueryProductListingArgs = {
|
|
170966
171706
|
id: Scalars['ID']['input'];
|
|
170967
171707
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -171022,6 +171762,11 @@ export declare type QueryProjects_CustomFieldDefinitionSearchArgs = {
|
|
|
171022
171762
|
sort?: InputMaybe<Array<InputMaybe<TownsquareCustomFieldSortEnum>>>;
|
|
171023
171763
|
workspaceUuid?: InputMaybe<Scalars['UUID']['input']>;
|
|
171024
171764
|
};
|
|
171765
|
+
export declare type QueryProjects_ExplainSearchArgs = {
|
|
171766
|
+
containerId: Scalars['ID']['input'];
|
|
171767
|
+
directoryViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
171768
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
171769
|
+
};
|
|
171025
171770
|
export declare type QueryProjects_LinksByIdsArgs = {
|
|
171026
171771
|
linkIds: Array<Scalars['ID']['input']>;
|
|
171027
171772
|
};
|
|
@@ -171850,6 +172595,22 @@ export declare type QuerySuggestedSpacesArgs = {
|
|
|
171850
172595
|
export declare type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
|
|
171851
172596
|
request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
|
|
171852
172597
|
};
|
|
172598
|
+
export declare type QueryTags_GetTagArgs = {
|
|
172599
|
+
kind: Scalars['String']['input'];
|
|
172600
|
+
orgId: Scalars['String']['input'];
|
|
172601
|
+
tagId: Scalars['String']['input'];
|
|
172602
|
+
};
|
|
172603
|
+
export declare type QueryTags_GetTagByNameKindOrgArgs = {
|
|
172604
|
+
kind: Scalars['String']['input'];
|
|
172605
|
+
name: Scalars['String']['input'];
|
|
172606
|
+
orgId: Scalars['String']['input'];
|
|
172607
|
+
};
|
|
172608
|
+
export declare type QueryTags_ListTagsArgs = {
|
|
172609
|
+
kind: Scalars['String']['input'];
|
|
172610
|
+
namePrefix?: InputMaybe<Scalars['String']['input']>;
|
|
172611
|
+
orgId: Scalars['String']['input'];
|
|
172612
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
172613
|
+
};
|
|
171853
172614
|
export declare type QueryTeamLabelsArgs = {
|
|
171854
172615
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171855
172616
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -172037,6 +172798,11 @@ export declare type QueryUsersWithContentRestrictionsArgs = {
|
|
|
172037
172798
|
accountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
172038
172799
|
contentId: Scalars['ID']['input'];
|
|
172039
172800
|
};
|
|
172801
|
+
export declare type QueryUts_AllowanceExemptionsArgs = {
|
|
172802
|
+
scopeId: Scalars['ID']['input'];
|
|
172803
|
+
scopeType?: InputMaybe<UtsAllowanceExemptionScopeType>;
|
|
172804
|
+
usageKey?: InputMaybe<Scalars['String']['input']>;
|
|
172805
|
+
};
|
|
172040
172806
|
export declare type QueryUts_UsageAlertsArgs = {
|
|
172041
172807
|
state?: InputMaybe<UtsAlertState>;
|
|
172042
172808
|
usageIdentifier: Scalars['ID']['input'];
|
|
@@ -172554,6 +173320,8 @@ export declare type RadarMoney = {
|
|
|
172554
173320
|
__typename?: 'RadarMoney';
|
|
172555
173321
|
amount: Scalars['String']['output'];
|
|
172556
173322
|
currency: Scalars['String']['output'];
|
|
173323
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
173324
|
+
displayValueCompact?: Maybe<Scalars['String']['output']>;
|
|
172557
173325
|
};
|
|
172558
173326
|
export declare type RadarMoneyFieldValue = {
|
|
172559
173327
|
__typename?: 'RadarMoneyFieldValue';
|
|
@@ -174575,6 +175343,10 @@ export declare enum Scope {
|
|
|
174575
175343
|
ReadFeedbackSource = "READ_FEEDBACK_SOURCE",
|
|
174576
175344
|
ReadFeedbackSpace = "READ_FEEDBACK_SPACE",
|
|
174577
175345
|
ReadFeedbackView = "READ_FEEDBACK_VIEW",
|
|
175346
|
+
ReadGuardDetectAlert = "READ_GUARD_DETECT_ALERT",
|
|
175347
|
+
ReadGuardDetectDetection = "READ_GUARD_DETECT_DETECTION",
|
|
175348
|
+
ReadGuardDetectDetectionSetting = "READ_GUARD_DETECT_DETECTION_SETTING",
|
|
175349
|
+
ReadGuardDetectSubscription = "READ_GUARD_DETECT_SUBSCRIPTION",
|
|
174578
175350
|
ReadHomeTwgCli = "READ_HOME_TWG_CLI",
|
|
174579
175351
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
174580
175352
|
ReadItamConfigJsm = "READ_ITAM_CONFIG_JSM",
|
|
@@ -174732,6 +175504,12 @@ export declare enum Scope {
|
|
|
174732
175504
|
WriteFeedbackJob = "WRITE_FEEDBACK_JOB",
|
|
174733
175505
|
WriteFeedbackSpace = "WRITE_FEEDBACK_SPACE",
|
|
174734
175506
|
WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
|
|
175507
|
+
WriteGuardDetectAlert = "WRITE_GUARD_DETECT_ALERT",
|
|
175508
|
+
WriteGuardDetectDetection = "WRITE_GUARD_DETECT_DETECTION",
|
|
175509
|
+
WriteGuardDetectDetectionSetting = "WRITE_GUARD_DETECT_DETECTION_SETTING",
|
|
175510
|
+
WriteGuardDetectRedaction = "WRITE_GUARD_DETECT_REDACTION",
|
|
175511
|
+
WriteGuardDetectRestoration = "WRITE_GUARD_DETECT_RESTORATION",
|
|
175512
|
+
WriteGuardDetectSubscription = "WRITE_GUARD_DETECT_SUBSCRIPTION",
|
|
174735
175513
|
WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
|
|
174736
175514
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
174737
175515
|
WriteItamConfigJsm = "WRITE_ITAM_CONFIG_JSM",
|
|
@@ -175192,6 +175970,7 @@ export declare type SearchLayerDefinition = {
|
|
|
175192
175970
|
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
175193
175971
|
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
175194
175972
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
175973
|
+
statsigLayerId?: InputMaybe<Scalars['String']['input']>;
|
|
175195
175974
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
175196
175975
|
};
|
|
175197
175976
|
export declare enum SearchLinkedEntitiesType {
|
|
@@ -175499,6 +176278,27 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
175499
176278
|
type: SearchResultType;
|
|
175500
176279
|
url: Scalars['String']['output'];
|
|
175501
176280
|
};
|
|
176281
|
+
export declare type SearchResultCodeChunk = {
|
|
176282
|
+
__typename?: 'SearchResultCodeChunk';
|
|
176283
|
+
id: Scalars['ID']['output'];
|
|
176284
|
+
lineRange: SearchResultCodeLineRange;
|
|
176285
|
+
matchedLineNumbers: Array<Scalars['Int']['output']>;
|
|
176286
|
+
matchedRanges: Array<Array<Scalars['Int']['output']>>;
|
|
176287
|
+
sourceCode: Scalars['String']['output'];
|
|
176288
|
+
};
|
|
176289
|
+
export declare type SearchResultCodeLineRange = {
|
|
176290
|
+
__typename?: 'SearchResultCodeLineRange';
|
|
176291
|
+
end: Scalars['Int']['output'];
|
|
176292
|
+
start: Scalars['Int']['output'];
|
|
176293
|
+
};
|
|
176294
|
+
export declare type SearchResultCodeRepository = {
|
|
176295
|
+
__typename?: 'SearchResultCodeRepository';
|
|
176296
|
+
host: Scalars['String']['output'];
|
|
176297
|
+
id: Scalars['ID']['output'];
|
|
176298
|
+
name: Scalars['String']['output'];
|
|
176299
|
+
namespace: Scalars['String']['output'];
|
|
176300
|
+
url: Scalars['String']['output'];
|
|
176301
|
+
};
|
|
175502
176302
|
export declare type SearchResultCompassComponent = SearchResult & {
|
|
175503
176303
|
__typename?: 'SearchResultCompassComponent';
|
|
175504
176304
|
component?: Maybe<CompassComponent>;
|
|
@@ -175603,6 +176403,32 @@ export declare type SearchResultGraphAttachment = {
|
|
|
175603
176403
|
title?: Maybe<Scalars['String']['output']>;
|
|
175604
176404
|
url?: Maybe<Scalars['String']['output']>;
|
|
175605
176405
|
};
|
|
176406
|
+
export declare type SearchResultGraphCode = SearchL2FeatureProvider & SearchResult & {
|
|
176407
|
+
__typename?: 'SearchResultGraphCode';
|
|
176408
|
+
branchOrTagName?: Maybe<Scalars['String']['output']>;
|
|
176409
|
+
commitHash: Scalars['String']['output'];
|
|
176410
|
+
customPropertiesKeyword?: Maybe<Scalars['String']['output']>;
|
|
176411
|
+
description: Scalars['String']['output'];
|
|
176412
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
176413
|
+
id: Scalars['ID']['output'];
|
|
176414
|
+
isDefaultBranch?: Maybe<Scalars['Boolean']['output']>;
|
|
176415
|
+
isMatchedPath: Scalars['Boolean']['output'];
|
|
176416
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
176417
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
176418
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
176419
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
176420
|
+
language?: Maybe<Scalars['String']['output']>;
|
|
176421
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
176422
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
176423
|
+
matchedChunks: Array<SearchResultCodeChunk>;
|
|
176424
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
176425
|
+
path: Scalars['String']['output'];
|
|
176426
|
+
repository: SearchResultCodeRepository;
|
|
176427
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
176428
|
+
title: Scalars['String']['output'];
|
|
176429
|
+
type: SearchResultType;
|
|
176430
|
+
url: Scalars['String']['output'];
|
|
176431
|
+
};
|
|
175606
176432
|
export declare type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult & {
|
|
175607
176433
|
__typename?: 'SearchResultGraphDocument';
|
|
175608
176434
|
allContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
@@ -175935,6 +176761,7 @@ export declare enum SearchResultType {
|
|
|
175935
176761
|
Attachment = "attachment",
|
|
175936
176762
|
Blogpost = "blogpost",
|
|
175937
176763
|
Board = "board",
|
|
176764
|
+
Code = "code",
|
|
175938
176765
|
Comment = "comment",
|
|
175939
176766
|
Component = "component",
|
|
175940
176767
|
Dashboard = "dashboard",
|
|
@@ -195449,13 +196276,13 @@ export declare type SmartsContextServiceOrbitObjectRecommendation = {
|
|
|
195449
196276
|
export declare type SmartsContextServiceQueryApi = {
|
|
195450
196277
|
__typename?: 'SmartsContextServiceQueryApi';
|
|
195451
196278
|
orbitObjectRecommendations?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
195452
|
-
|
|
196279
|
+
orbitUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
|
|
195453
196280
|
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
195454
196281
|
};
|
|
195455
196282
|
export declare type SmartsContextServiceQueryApiOrbitObjectRecommendationsArgs = {
|
|
195456
196283
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
195457
196284
|
};
|
|
195458
|
-
export declare type
|
|
196285
|
+
export declare type SmartsContextServiceQueryApiOrbitUserRecommendationsArgs = {
|
|
195459
196286
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
195460
196287
|
};
|
|
195461
196288
|
export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs = {
|
|
@@ -195542,7 +196369,7 @@ export declare type SmartsRecommendedContainerV2 = {
|
|
|
195542
196369
|
id: Scalars['ID']['output'];
|
|
195543
196370
|
score?: Maybe<Scalars['Float']['output']>;
|
|
195544
196371
|
};
|
|
195545
|
-
export declare type SmartsRecommendedEntity = ConfluenceBlogPost | ConfluencePage | ExternalDocument;
|
|
196372
|
+
export declare type SmartsRecommendedEntity = ConfluenceBlogPost | ConfluencePage | ExternalDocument | ExternalPullRequest | JiraIssue | TownsquareProject;
|
|
195546
196373
|
export declare type SmartsRecommendedFieldObject = {
|
|
195547
196374
|
__typename?: 'SmartsRecommendedFieldObject';
|
|
195548
196375
|
id: Scalars['ID']['output'];
|
|
@@ -199891,11 +200718,19 @@ export declare type SupportRequestOrganizationsInput = {
|
|
|
199891
200718
|
};
|
|
199892
200719
|
export declare type SupportRequestPage = {
|
|
199893
200720
|
__typename?: 'SupportRequestPage';
|
|
200721
|
+
ecosystemRequests?: Maybe<SupportRequests>;
|
|
199894
200722
|
migrationRequests?: Maybe<SupportRequestHierarchyRequests>;
|
|
199895
200723
|
namedContactRelations?: Maybe<SupportRequestNamedContactRelations>;
|
|
199896
200724
|
profile?: Maybe<SupportRequestUser>;
|
|
199897
200725
|
requests?: Maybe<SupportRequests>;
|
|
199898
200726
|
};
|
|
200727
|
+
export declare type SupportRequestPageEcosystemRequestsArgs = {
|
|
200728
|
+
offset?: Scalars['Int']['input'];
|
|
200729
|
+
ownership?: InputMaybe<SupportRequestQueryOwnership>;
|
|
200730
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
200731
|
+
size?: Scalars['Int']['input'];
|
|
200732
|
+
status?: InputMaybe<SupportRequestQueryStatusCategory>;
|
|
200733
|
+
};
|
|
199899
200734
|
export declare type SupportRequestPageMigrationRequestsArgs = {
|
|
199900
200735
|
offset?: Scalars['Int']['input'];
|
|
199901
200736
|
ownership?: InputMaybe<SupportRequestQueryOwnership>;
|
|
@@ -200080,6 +200915,34 @@ export declare type SystemUser = {
|
|
|
200080
200915
|
isMentionable?: Maybe<Scalars['Boolean']['output']>;
|
|
200081
200916
|
nickName?: Maybe<Scalars['String']['output']>;
|
|
200082
200917
|
};
|
|
200918
|
+
export declare type TagsCreateInput = {
|
|
200919
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
200920
|
+
name: Scalars['String']['input'];
|
|
200921
|
+
orgId: Scalars['String']['input'];
|
|
200922
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
200923
|
+
};
|
|
200924
|
+
export declare type TagsListResponse = {
|
|
200925
|
+
__typename?: 'TagsListResponse';
|
|
200926
|
+
items: Array<TagsResponse>;
|
|
200927
|
+
totalCount: Scalars['Int']['output'];
|
|
200928
|
+
};
|
|
200929
|
+
export declare type TagsResponse = {
|
|
200930
|
+
__typename?: 'TagsResponse';
|
|
200931
|
+
createdAt: Scalars['String']['output'];
|
|
200932
|
+
id: Scalars['String']['output'];
|
|
200933
|
+
kind: Scalars['String']['output'];
|
|
200934
|
+
metadata?: Maybe<Scalars['String']['output']>;
|
|
200935
|
+
name: Scalars['String']['output'];
|
|
200936
|
+
status: Scalars['String']['output'];
|
|
200937
|
+
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
200938
|
+
};
|
|
200939
|
+
export declare type TagsUpdateInput = {
|
|
200940
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
200941
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
200942
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
200943
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
200944
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
200945
|
+
};
|
|
200083
200946
|
export declare type TapExperiment = {
|
|
200084
200947
|
__typename?: 'TapExperiment';
|
|
200085
200948
|
experimentKey: Scalars['String']['output'];
|
|
@@ -202464,8 +203327,10 @@ export declare type TownsquareGoalManageAccessModifiedInput = {
|
|
|
202464
203327
|
export declare type TownsquareGoalManageAccessPayload = {
|
|
202465
203328
|
__typename?: 'TownsquareGoalManageAccessPayload';
|
|
202466
203329
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareGoalAccessEdge>>>;
|
|
203330
|
+
addedWatchers?: Maybe<Array<User>>;
|
|
202467
203331
|
errors?: Maybe<Array<MutationError>>;
|
|
202468
203332
|
goal?: Maybe<TownsquareGoal>;
|
|
203333
|
+
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
202469
203334
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
202470
203335
|
success: Scalars['Boolean']['output'];
|
|
202471
203336
|
};
|
|
@@ -202513,6 +203378,7 @@ export declare type TownsquareGoalProgressTypeChange = {
|
|
|
202513
203378
|
__typename?: 'TownsquareGoalProgressTypeChange';
|
|
202514
203379
|
newProgressType: TownsquareGoalProgressType;
|
|
202515
203380
|
oldProgressType: TownsquareGoalProgressType;
|
|
203381
|
+
successMeasure?: Maybe<TownsquareGoalType>;
|
|
202516
203382
|
};
|
|
202517
203383
|
export declare type TownsquareGoalRenamedChange = {
|
|
202518
203384
|
__typename?: 'TownsquareGoalRenamedChange';
|
|
@@ -202940,6 +203806,17 @@ export declare type TownsquareGoalsCreateLearningPayload = {
|
|
|
202940
203806
|
learning?: Maybe<TownsquareLearning>;
|
|
202941
203807
|
success: Scalars['Boolean']['output'];
|
|
202942
203808
|
};
|
|
203809
|
+
export declare type TownsquareGoalsCreateMetricValueInput = {
|
|
203810
|
+
metricId: Scalars['ID']['input'];
|
|
203811
|
+
time?: InputMaybe<Scalars['DateTime']['input']>;
|
|
203812
|
+
value: Scalars['Float']['input'];
|
|
203813
|
+
};
|
|
203814
|
+
export declare type TownsquareGoalsCreateMetricValuePayload = {
|
|
203815
|
+
__typename?: 'TownsquareGoalsCreateMetricValuePayload';
|
|
203816
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203817
|
+
metricValue?: Maybe<TownsquareMetricValue>;
|
|
203818
|
+
success: Scalars['Boolean']['output'];
|
|
203819
|
+
};
|
|
202943
203820
|
export declare type TownsquareGoalsCreatePayload = {
|
|
202944
203821
|
__typename?: 'TownsquareGoalsCreatePayload';
|
|
202945
203822
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -203600,6 +204477,7 @@ export declare type TownsquareMetricUpdateEditInput = {
|
|
|
203600
204477
|
export declare type TownsquareMetricUpdateInput = {
|
|
203601
204478
|
newValue: Scalars['Float']['input'];
|
|
203602
204479
|
targetId: Scalars['ID']['input'];
|
|
204480
|
+
time?: InputMaybe<Scalars['DateTime']['input']>;
|
|
203603
204481
|
};
|
|
203604
204482
|
export declare type TownsquareMetricValue = Node & {
|
|
203605
204483
|
__typename?: 'TownsquareMetricValue';
|
|
@@ -204109,8 +204987,10 @@ export declare type TownsquareProjectManageAccessModifiedInput = {
|
|
|
204109
204987
|
export declare type TownsquareProjectManageAccessPayload = {
|
|
204110
204988
|
__typename?: 'TownsquareProjectManageAccessPayload';
|
|
204111
204989
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
204990
|
+
addedWatchers?: Maybe<Array<User>>;
|
|
204112
204991
|
errors?: Maybe<Array<MutationError>>;
|
|
204113
204992
|
project?: Maybe<TownsquareProject>;
|
|
204993
|
+
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
204114
204994
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
204115
204995
|
success: Scalars['Boolean']['output'];
|
|
204116
204996
|
};
|
|
@@ -204999,6 +205879,33 @@ export declare enum TownsquareRiskSortEnum {
|
|
|
204999
205879
|
SummaryAsc = "SUMMARY_ASC",
|
|
205000
205880
|
SummaryDesc = "SUMMARY_DESC"
|
|
205001
205881
|
}
|
|
205882
|
+
export declare enum TownsquareSearchEntity {
|
|
205883
|
+
Goal = "GOAL",
|
|
205884
|
+
Project = "PROJECT"
|
|
205885
|
+
}
|
|
205886
|
+
export declare type TownsquareSearchExplanation = {
|
|
205887
|
+
__typename?: 'TownsquareSearchExplanation';
|
|
205888
|
+
availableFields?: Maybe<Array<Maybe<TownsquareSearchExplanationField>>>;
|
|
205889
|
+
entity?: Maybe<TownsquareSearchEntity>;
|
|
205890
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
205891
|
+
logSafeQuery?: Maybe<Scalars['String']['output']>;
|
|
205892
|
+
queryCost: Scalars['Int']['output'];
|
|
205893
|
+
};
|
|
205894
|
+
export declare type TownsquareSearchExplanationField = {
|
|
205895
|
+
__typename?: 'TownsquareSearchExplanationField';
|
|
205896
|
+
aliases?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
205897
|
+
cost: Scalars['Int']['output'];
|
|
205898
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
205899
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
205900
|
+
operators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
205901
|
+
type?: Maybe<TownsquareSearchType>;
|
|
205902
|
+
};
|
|
205903
|
+
export declare enum TownsquareSearchType {
|
|
205904
|
+
Integer = "Integer",
|
|
205905
|
+
Numeric = "Numeric",
|
|
205906
|
+
String = "String",
|
|
205907
|
+
User = "User"
|
|
205908
|
+
}
|
|
205002
205909
|
export declare type TownsquareSetParentGoalInput = {
|
|
205003
205910
|
goalAri: Scalars['String']['input'];
|
|
205004
205911
|
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -208509,6 +209416,7 @@ export declare type TrelloMember = Node & {
|
|
|
208509
209416
|
referral?: Maybe<TrelloMemberReferral>;
|
|
208510
209417
|
referrer?: Maybe<TrelloMember>;
|
|
208511
209418
|
url?: Maybe<Scalars['URL']['output']>;
|
|
209419
|
+
usageLimits?: Maybe<Array<TrelloUsageLimit>>;
|
|
208512
209420
|
user?: Maybe<User>;
|
|
208513
209421
|
username?: Maybe<Scalars['String']['output']>;
|
|
208514
209422
|
webhooks?: Maybe<TrelloMemberOwnedWebhookConnection>;
|
|
@@ -208649,6 +209557,7 @@ export declare type TrelloMemberOwnedWebhook = {
|
|
|
208649
209557
|
id: Scalars['ID']['output'];
|
|
208650
209558
|
modelId: Scalars['ID']['output'];
|
|
208651
209559
|
oauth2Client?: Maybe<TrelloMemberOwnedWebhookOAuth2Client>;
|
|
209560
|
+
tokenId?: Maybe<Scalars['ID']['output']>;
|
|
208652
209561
|
};
|
|
208653
209562
|
export declare type TrelloMemberOwnedWebhookConnection = {
|
|
208654
209563
|
__typename?: 'TrelloMemberOwnedWebhookConnection';
|
|
@@ -211545,6 +212454,22 @@ export declare type TrelloUploadedBackground = {
|
|
|
211545
212454
|
__typename?: 'TrelloUploadedBackground';
|
|
211546
212455
|
objectId: Scalars['ID']['output'];
|
|
211547
212456
|
};
|
|
212457
|
+
export declare type TrelloUsageLimit = {
|
|
212458
|
+
__typename?: 'TrelloUsageLimit';
|
|
212459
|
+
count: Scalars['Int']['output'];
|
|
212460
|
+
interval?: Maybe<TrelloUsageLimitInterval>;
|
|
212461
|
+
key: TrelloUsageLimitKey;
|
|
212462
|
+
limit: Scalars['Int']['output'];
|
|
212463
|
+
periodEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
212464
|
+
periodStart?: Maybe<Scalars['DateTime']['output']>;
|
|
212465
|
+
};
|
|
212466
|
+
export declare enum TrelloUsageLimitInterval {
|
|
212467
|
+
Monthly = "MONTHLY"
|
|
212468
|
+
}
|
|
212469
|
+
export declare enum TrelloUsageLimitKey {
|
|
212470
|
+
AiBoardBackgroundGeneration = "AI_BOARD_BACKGROUND_GENERATION",
|
|
212471
|
+
AiCardCoverGeneration = "AI_CARD_COVER_GENERATION"
|
|
212472
|
+
}
|
|
211548
212473
|
export declare type TrelloUserGeneratedText = {
|
|
211549
212474
|
__typename?: 'TrelloUserGeneratedText';
|
|
211550
212475
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -213984,6 +214909,7 @@ export declare type UpdatePolarisTimelineConfig = {
|
|
|
213984
214909
|
todayMarker?: InputMaybe<PolarisTimelineTodayMarker>;
|
|
213985
214910
|
};
|
|
213986
214911
|
export declare type UpdatePolarisTreeConfig = {
|
|
214912
|
+
allowMultipleParents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
213987
214913
|
defaultFields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
213988
214914
|
hierarchy?: InputMaybe<Array<UpdatePolarisTreeHierarchyItem>>;
|
|
213989
214915
|
mode?: InputMaybe<PolarisTreeMode>;
|
|
@@ -214464,6 +215390,33 @@ export declare type UtsAlertThreshold = {
|
|
|
214464
215390
|
usageIdentifier: Scalars['String']['output'];
|
|
214465
215391
|
value?: Maybe<Scalars['Float']['output']>;
|
|
214466
215392
|
};
|
|
215393
|
+
export declare type UtsAllowanceExemption = {
|
|
215394
|
+
__typename?: 'UtsAllowanceExemption';
|
|
215395
|
+
exemptionType?: Maybe<Scalars['String']['output']>;
|
|
215396
|
+
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
215397
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
215398
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
215399
|
+
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
215400
|
+
scopeType?: Maybe<UtsAllowanceExemptionScopeType>;
|
|
215401
|
+
status?: Maybe<UtsAllowanceExemptionStatus>;
|
|
215402
|
+
usageKey?: Maybe<Scalars['String']['output']>;
|
|
215403
|
+
};
|
|
215404
|
+
export declare type UtsAllowanceExemptionList = {
|
|
215405
|
+
__typename?: 'UtsAllowanceExemptionList';
|
|
215406
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
215407
|
+
exemptions?: Maybe<Array<Maybe<UtsAllowanceExemption>>>;
|
|
215408
|
+
nextPageToken?: Maybe<Scalars['String']['output']>;
|
|
215409
|
+
};
|
|
215410
|
+
export declare enum UtsAllowanceExemptionScopeType {
|
|
215411
|
+
Org = "ORG",
|
|
215412
|
+
OrgMeter = "ORG_METER"
|
|
215413
|
+
}
|
|
215414
|
+
export declare enum UtsAllowanceExemptionStatus {
|
|
215415
|
+
Active = "ACTIVE",
|
|
215416
|
+
Cancelled = "CANCELLED",
|
|
215417
|
+
Expired = "EXPIRED",
|
|
215418
|
+
Scheduled = "SCHEDULED"
|
|
215419
|
+
}
|
|
214467
215420
|
export declare type UtsAllowancePoolAllocationUpdateInput = {
|
|
214468
215421
|
allocationId: Scalars['ID']['input'];
|
|
214469
215422
|
billingEntity?: InputMaybe<Scalars['String']['input']>;
|