@forge/cli-shared 8.24.0-next.7-experimental-a344346 → 8.24.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 +9 -3
- package/out/config/config-file.d.ts +0 -1
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +4 -33
- package/out/graphql/graphql-types.d.ts +932 -26
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +141 -47
- package/package.json +2 -2
|
@@ -141,10 +141,40 @@ export declare type AiConfigResponse = {
|
|
|
141
141
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
142
142
|
isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
143
143
|
};
|
|
144
|
+
export declare enum AiOpsActivityEntityType {
|
|
145
|
+
Alert = "ALERT",
|
|
146
|
+
Deployment = "DEPLOYMENT",
|
|
147
|
+
FeatureFlag = "FEATURE_FLAG",
|
|
148
|
+
Incident = "INCIDENT"
|
|
149
|
+
}
|
|
150
|
+
export declare type AiOpsAlertActivity = AiOpsServiceActivity & {
|
|
151
|
+
__typename?: 'AIOpsAlertActivity';
|
|
152
|
+
entityId: Scalars['ID']['output'];
|
|
153
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
154
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
155
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
156
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
157
|
+
timestamp: Scalars['DateTime']['output'];
|
|
158
|
+
type: AiOpsActivityEntityType;
|
|
159
|
+
};
|
|
160
|
+
export declare type AiOpsAlertDetail = {
|
|
161
|
+
__typename?: 'AIOpsAlertDetail';
|
|
162
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
163
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
164
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
165
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
166
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
167
|
+
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
168
|
+
};
|
|
144
169
|
export declare type AiOpsAnalysisScopeTaskOutput = {
|
|
145
170
|
__typename?: 'AIOpsAnalysisScopeTaskOutput';
|
|
146
171
|
dependencyMappings?: Maybe<Array<AiOpsServiceDependencyMapping>>;
|
|
147
172
|
};
|
|
173
|
+
export declare type AiOpsAssetServiceObject = {
|
|
174
|
+
__typename?: 'AIOpsAssetServiceObject';
|
|
175
|
+
assetObjectId: Scalars['ID']['output'];
|
|
176
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
177
|
+
};
|
|
148
178
|
export declare type AiOpsAutomationRuleUserPrompt = {
|
|
149
179
|
__typename?: 'AIOpsAutomationRuleUserPrompt';
|
|
150
180
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -169,11 +199,55 @@ export declare type AiOpsCreateInvestigationPayload = Payload & {
|
|
|
169
199
|
investigation?: Maybe<AiOpsInvestigation>;
|
|
170
200
|
success: Scalars['Boolean']['output'];
|
|
171
201
|
};
|
|
202
|
+
export declare type AiOpsDeploymentActivity = AiOpsServiceActivity & {
|
|
203
|
+
__typename?: 'AIOpsDeploymentActivity';
|
|
204
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
205
|
+
entityId: Scalars['ID']['output'];
|
|
206
|
+
environmentCategory?: Maybe<Scalars['String']['output']>;
|
|
207
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
208
|
+
timestamp: Scalars['DateTime']['output'];
|
|
209
|
+
type: AiOpsActivityEntityType;
|
|
210
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
211
|
+
};
|
|
212
|
+
export declare type AiOpsDeploymentDetail = {
|
|
213
|
+
__typename?: 'AIOpsDeploymentDetail';
|
|
214
|
+
commitCount?: Maybe<Scalars['Int']['output']>;
|
|
215
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
216
|
+
environmentCategory?: Maybe<Scalars['String']['output']>;
|
|
217
|
+
pullRequests?: Maybe<Array<AiOpsDeploymentPullRequest>>;
|
|
218
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
219
|
+
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
220
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
221
|
+
};
|
|
222
|
+
export declare type AiOpsDeploymentPrAuthor = {
|
|
223
|
+
__typename?: 'AIOpsDeploymentPrAuthor';
|
|
224
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
225
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
226
|
+
};
|
|
227
|
+
export declare type AiOpsDeploymentPullRequest = {
|
|
228
|
+
__typename?: 'AIOpsDeploymentPullRequest';
|
|
229
|
+
author?: Maybe<AiOpsDeploymentPrAuthor>;
|
|
230
|
+
destinationBranch?: Maybe<Scalars['String']['output']>;
|
|
231
|
+
pullRequestId?: Maybe<Scalars['String']['output']>;
|
|
232
|
+
sourceBranch?: Maybe<Scalars['String']['output']>;
|
|
233
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
234
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
235
|
+
totalCommits?: Maybe<Scalars['Int']['output']>;
|
|
236
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
237
|
+
};
|
|
172
238
|
export declare type AiOpsEntityCount = {
|
|
173
239
|
__typename?: 'AIOpsEntityCount';
|
|
174
240
|
count?: Maybe<Scalars['Int']['output']>;
|
|
175
241
|
entityType?: Maybe<AiOpsRcaEntityType>;
|
|
176
242
|
};
|
|
243
|
+
export declare type AiOpsEntityDetail = {
|
|
244
|
+
__typename?: 'AIOpsEntityDetail';
|
|
245
|
+
detail?: Maybe<AiOpsEntityDetailPayload>;
|
|
246
|
+
entityId?: Maybe<Scalars['ID']['output']>;
|
|
247
|
+
type: AiOpsActivityEntityType;
|
|
248
|
+
};
|
|
249
|
+
export declare type AiOpsEntityDetailPayload = AiOpsAlertDetail | AiOpsDeploymentDetail | AiOpsFeatureFlagDetail | AiOpsIncidentDetail;
|
|
250
|
+
export declare type AiOpsEntityDetailResult = AiOpsEntityDetail | QueryError;
|
|
177
251
|
export declare type AiOpsFaultyChange = {
|
|
178
252
|
__typename?: 'AIOpsFaultyChange';
|
|
179
253
|
associations?: Maybe<Array<AiOpsFaultyChange>>;
|
|
@@ -225,11 +299,47 @@ export declare type AiOpsFaultyPullRequestAttributes = AiOpsFaultyChangeAttribut
|
|
|
225
299
|
title?: Maybe<Scalars['String']['output']>;
|
|
226
300
|
url?: Maybe<Scalars['String']['output']>;
|
|
227
301
|
};
|
|
302
|
+
export declare type AiOpsFeatureFlagActivity = AiOpsServiceActivity & {
|
|
303
|
+
__typename?: 'AIOpsFeatureFlagActivity';
|
|
304
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
305
|
+
entityId: Scalars['ID']['output'];
|
|
306
|
+
timestamp: Scalars['DateTime']['output'];
|
|
307
|
+
type: AiOpsActivityEntityType;
|
|
308
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
309
|
+
};
|
|
310
|
+
export declare type AiOpsFeatureFlagDetail = {
|
|
311
|
+
__typename?: 'AIOpsFeatureFlagDetail';
|
|
312
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
313
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
314
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
315
|
+
previousValue?: Maybe<Scalars['String']['output']>;
|
|
316
|
+
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
317
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
318
|
+
};
|
|
319
|
+
export declare type AiOpsIncidentActivity = AiOpsServiceActivity & {
|
|
320
|
+
__typename?: 'AIOpsIncidentActivity';
|
|
321
|
+
entityId: Scalars['ID']['output'];
|
|
322
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
323
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
324
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
325
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
326
|
+
timestamp: Scalars['DateTime']['output'];
|
|
327
|
+
type: AiOpsActivityEntityType;
|
|
328
|
+
};
|
|
228
329
|
export declare type AiOpsIncidentAffectedServiceDetail = {
|
|
229
330
|
__typename?: 'AIOpsIncidentAffectedServiceDetail';
|
|
230
331
|
name?: Maybe<Scalars['String']['output']>;
|
|
231
332
|
serviceId?: Maybe<Scalars['String']['output']>;
|
|
232
333
|
};
|
|
334
|
+
export declare type AiOpsIncidentDetail = {
|
|
335
|
+
__typename?: 'AIOpsIncidentDetail';
|
|
336
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
337
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
338
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
339
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
340
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
341
|
+
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
342
|
+
};
|
|
233
343
|
export declare type AiOpsIncidentRelatedAlertsInput = {
|
|
234
344
|
incidentId: Scalars['String']['input'];
|
|
235
345
|
onlyAlerts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -432,6 +542,7 @@ export declare type AiOpsInvestigationInProgress = {
|
|
|
432
542
|
};
|
|
433
543
|
export declare type AiOpsInvestigationInputContext = {
|
|
434
544
|
__typename?: 'AIOpsInvestigationInputContext';
|
|
545
|
+
inScopeServiceAssetObjects?: Maybe<Array<AiOpsAssetServiceObject>>;
|
|
435
546
|
inScopeServiceIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
436
547
|
sourceEntityId: Scalars['String']['output'];
|
|
437
548
|
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
@@ -490,6 +601,7 @@ export declare type AiOpsLikelyRootCause = {
|
|
|
490
601
|
confidenceLabel?: Maybe<AiOpsLikelyRootCauseConfidenceLabel>;
|
|
491
602
|
faultyChange?: Maybe<AiOpsFaultyChange>;
|
|
492
603
|
faultyService?: Maybe<DevOpsService>;
|
|
604
|
+
faultyServiceAssetObject?: Maybe<AiOpsAssetServiceObject>;
|
|
493
605
|
reasoning?: Maybe<Scalars['String']['output']>;
|
|
494
606
|
reasoningSummary?: Maybe<Scalars['String']['output']>;
|
|
495
607
|
reviewStatus?: Maybe<AiOpsLikelyRootCauseReviewStatus>;
|
|
@@ -585,6 +697,23 @@ export declare type AiOpsRootCauseTaskOutput = {
|
|
|
585
697
|
__typename?: 'AIOpsRootCauseTaskOutput';
|
|
586
698
|
likelyRootCauses?: Maybe<Array<AiOpsLikelyRootCause>>;
|
|
587
699
|
};
|
|
700
|
+
export declare type AiOpsServiceActivity = {
|
|
701
|
+
entityId: Scalars['ID']['output'];
|
|
702
|
+
timestamp: Scalars['DateTime']['output'];
|
|
703
|
+
type: AiOpsActivityEntityType;
|
|
704
|
+
};
|
|
705
|
+
export declare type AiOpsServiceActivityEdge = {
|
|
706
|
+
__typename?: 'AIOpsServiceActivityEdge';
|
|
707
|
+
cursor: Scalars['String']['output'];
|
|
708
|
+
node?: Maybe<AiOpsServiceActivity>;
|
|
709
|
+
};
|
|
710
|
+
export declare type AiOpsServiceActivityTimelineConnection = {
|
|
711
|
+
__typename?: 'AIOpsServiceActivityTimelineConnection';
|
|
712
|
+
edges?: Maybe<Array<AiOpsServiceActivityEdge>>;
|
|
713
|
+
nodes?: Maybe<Array<AiOpsServiceActivity>>;
|
|
714
|
+
pageInfo: PageInfo;
|
|
715
|
+
};
|
|
716
|
+
export declare type AiOpsServiceActivityTimelineResult = AiOpsServiceActivityTimelineConnection | QueryError;
|
|
588
717
|
export declare type AiOpsServiceChangeAnalysis = {
|
|
589
718
|
__typename?: 'AIOpsServiceChangeAnalysis';
|
|
590
719
|
deployments?: Maybe<Array<AiOpsServiceDeployment>>;
|
|
@@ -7515,10 +7644,18 @@ export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesInput = {
|
|
|
7515
7644
|
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesPayload = {
|
|
7516
7645
|
__typename?: 'AgentWorkspaceCreateDraftedRoutingTableEntriesPayload';
|
|
7517
7646
|
draftId: Scalars['ID']['output'];
|
|
7647
|
+
generationId?: Maybe<Scalars['ID']['output']>;
|
|
7518
7648
|
pageInfo: AgentWorkspacePageInfo;
|
|
7519
7649
|
rows: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7520
7650
|
rowsInserted: Scalars['Int']['output'];
|
|
7521
7651
|
};
|
|
7652
|
+
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesV2Input = {
|
|
7653
|
+
cloudId: Scalars['ID']['input'];
|
|
7654
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
7655
|
+
fieldId: Scalars['String']['input'];
|
|
7656
|
+
projectKey: Scalars['String']['input'];
|
|
7657
|
+
serviceFieldType: AgentWorkspaceSmartRoutingServiceFieldType;
|
|
7658
|
+
};
|
|
7522
7659
|
export declare type AgentWorkspaceCreateScheduleInput = {
|
|
7523
7660
|
agentIds: Array<Scalars['ID']['input']>;
|
|
7524
7661
|
cloudId: Scalars['ID']['input'];
|
|
@@ -7916,6 +8053,7 @@ export declare type AgentWorkspaceRoutingTableGeneration = {
|
|
|
7916
8053
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
7917
8054
|
generationId: Scalars['ID']['output'];
|
|
7918
8055
|
selectedRowServiceIds: Array<Scalars['String']['output']>;
|
|
8056
|
+
serviceProgress?: Maybe<Array<AgentWorkspaceServiceProgressEntry>>;
|
|
7919
8057
|
startedAt: Scalars['DateTime']['output'];
|
|
7920
8058
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
7921
8059
|
totalServices: Scalars['Int']['output'];
|
|
@@ -8064,6 +8202,25 @@ export declare type AgentWorkspaceServiceEdge = {
|
|
|
8064
8202
|
cursor: Scalars['String']['output'];
|
|
8065
8203
|
node: AgentWorkspaceService;
|
|
8066
8204
|
};
|
|
8205
|
+
export declare enum AgentWorkspaceServiceProcessingStatus {
|
|
8206
|
+
Enriched = "ENRICHED",
|
|
8207
|
+
Enriching = "ENRICHING",
|
|
8208
|
+
Pending = "PENDING",
|
|
8209
|
+
Skipped = "SKIPPED"
|
|
8210
|
+
}
|
|
8211
|
+
export declare type AgentWorkspaceServiceProgressEntry = {
|
|
8212
|
+
__typename?: 'AgentWorkspaceServiceProgressEntry';
|
|
8213
|
+
serviceId: Scalars['ID']['output'];
|
|
8214
|
+
skipReason?: Maybe<AgentWorkspaceServiceSkipReason>;
|
|
8215
|
+
status: AgentWorkspaceServiceProcessingStatus;
|
|
8216
|
+
};
|
|
8217
|
+
export declare enum AgentWorkspaceServiceSkipReason {
|
|
8218
|
+
Cancelled = "CANCELLED",
|
|
8219
|
+
Error = "ERROR",
|
|
8220
|
+
NoClusters = "NO_CLUSTERS",
|
|
8221
|
+
NoTickets = "NO_TICKETS",
|
|
8222
|
+
Timeout = "TIMEOUT"
|
|
8223
|
+
}
|
|
8067
8224
|
export declare type AgentWorkspaceSetDefaultCapacityInput = {
|
|
8068
8225
|
cloudId: Scalars['ID']['input'];
|
|
8069
8226
|
defaultCapacity: Scalars['Int']['input'];
|
|
@@ -8802,7 +8959,7 @@ export declare type AiManagedObjectConfig = {
|
|
|
8802
8959
|
aiManagedObjectId: Scalars['ID']['output'];
|
|
8803
8960
|
createdAt: Scalars['Long']['output'];
|
|
8804
8961
|
createdBy: Scalars['String']['output'];
|
|
8805
|
-
|
|
8962
|
+
desiredUpdateFrequency?: Maybe<AiManagedObjectDesiredUpdateFrequency>;
|
|
8806
8963
|
goal?: Maybe<Scalars['String']['output']>;
|
|
8807
8964
|
goalOperations?: Maybe<Scalars['JSON']['output']>;
|
|
8808
8965
|
id: Scalars['ID']['output'];
|
|
@@ -8812,7 +8969,7 @@ export declare type AiManagedObjectConfig = {
|
|
|
8812
8969
|
};
|
|
8813
8970
|
export declare type AiManagedObjectConfigCreateInput = {
|
|
8814
8971
|
agentId?: InputMaybe<Scalars['String']['input']>;
|
|
8815
|
-
|
|
8972
|
+
desiredUpdateFrequency?: InputMaybe<AiManagedObjectDesiredUpdateFrequencyInput>;
|
|
8816
8973
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
8817
8974
|
goalOperations?: InputMaybe<Scalars['JSON']['input']>;
|
|
8818
8975
|
prompt: Scalars['String']['input'];
|
|
@@ -8831,6 +8988,21 @@ export declare type AiManagedObjectCreateInput = {
|
|
|
8831
8988
|
status?: InputMaybe<AiManagedObjectStatus>;
|
|
8832
8989
|
type: AiManagedObjectType;
|
|
8833
8990
|
};
|
|
8991
|
+
export declare type AiManagedObjectDesiredUpdateFrequency = {
|
|
8992
|
+
__typename?: 'AiManagedObjectDesiredUpdateFrequency';
|
|
8993
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
8994
|
+
type: AiManagedObjectDesiredUpdateFrequencyType;
|
|
8995
|
+
value: Scalars['String']['output'];
|
|
8996
|
+
};
|
|
8997
|
+
export declare type AiManagedObjectDesiredUpdateFrequencyInput = {
|
|
8998
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
8999
|
+
type: AiManagedObjectDesiredUpdateFrequencyType;
|
|
9000
|
+
value: Scalars['String']['input'];
|
|
9001
|
+
};
|
|
9002
|
+
export declare enum AiManagedObjectDesiredUpdateFrequencyType {
|
|
9003
|
+
Cron = "CRON",
|
|
9004
|
+
Interval = "INTERVAL"
|
|
9005
|
+
}
|
|
8834
9006
|
export declare type AiManagedObjectEdge = {
|
|
8835
9007
|
__typename?: 'AiManagedObjectEdge';
|
|
8836
9008
|
cursor: Scalars['String']['output'];
|
|
@@ -10034,6 +10206,32 @@ export declare enum AppSecurityPoliciesPermissionTypeExtension {
|
|
|
10034
10206
|
Scripts = "SCRIPTS",
|
|
10035
10207
|
Styles = "STYLES"
|
|
10036
10208
|
}
|
|
10209
|
+
export declare type AppService = {
|
|
10210
|
+
__typename?: 'AppService';
|
|
10211
|
+
containers?: Maybe<Array<AppServiceContainer>>;
|
|
10212
|
+
environmentId?: Maybe<Scalars['String']['output']>;
|
|
10213
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
10214
|
+
key: Scalars['ID']['output'];
|
|
10215
|
+
maxReplicas?: Maybe<Scalars['Int']['output']>;
|
|
10216
|
+
minReplicas?: Maybe<Scalars['Int']['output']>;
|
|
10217
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
10218
|
+
};
|
|
10219
|
+
export declare type AppServiceContainer = {
|
|
10220
|
+
__typename?: 'AppServiceContainer';
|
|
10221
|
+
key: Scalars['String']['output'];
|
|
10222
|
+
tag: Scalars['String']['output'];
|
|
10223
|
+
};
|
|
10224
|
+
export declare type AppServiceEdge = {
|
|
10225
|
+
__typename?: 'AppServiceEdge';
|
|
10226
|
+
cursor: Scalars['String']['output'];
|
|
10227
|
+
node: AppService;
|
|
10228
|
+
};
|
|
10229
|
+
export declare type AppServicesConnection = {
|
|
10230
|
+
__typename?: 'AppServicesConnection';
|
|
10231
|
+
edges?: Maybe<Array<AppServiceEdge>>;
|
|
10232
|
+
nodes: Array<AppService>;
|
|
10233
|
+
pageInfo: PageInfo;
|
|
10234
|
+
};
|
|
10037
10235
|
export declare type AppServicesFilter = {
|
|
10038
10236
|
name: Scalars['String']['input'];
|
|
10039
10237
|
};
|
|
@@ -10774,6 +10972,7 @@ export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
10774
10972
|
attribute?: Maybe<AssetsAriAttribute>;
|
|
10775
10973
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
10776
10974
|
id: Scalars['ID']['output'];
|
|
10975
|
+
identityGroups?: Maybe<Array<AssetsIdentityGroup>>;
|
|
10777
10976
|
name: Scalars['String']['output'];
|
|
10778
10977
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10779
10978
|
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -13361,6 +13560,11 @@ export declare type AssetsIcon = {
|
|
|
13361
13560
|
url16?: Maybe<Scalars['String']['output']>;
|
|
13362
13561
|
url48?: Maybe<Scalars['String']['output']>;
|
|
13363
13562
|
};
|
|
13563
|
+
export declare type AssetsIdentityGroup = {
|
|
13564
|
+
__typename?: 'AssetsIdentityGroup';
|
|
13565
|
+
id: Scalars['ID']['output'];
|
|
13566
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13567
|
+
};
|
|
13364
13568
|
export declare type AssetsIntegerAttribute = AssetsObjectTypeAttribute & {
|
|
13365
13569
|
__typename?: 'AssetsIntegerAttribute';
|
|
13366
13570
|
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -20628,6 +20832,10 @@ export declare type CommerceExpChargeQuantity = {
|
|
|
20628
20832
|
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
20629
20833
|
quantity: Scalars['Int']['output'];
|
|
20630
20834
|
};
|
|
20835
|
+
export declare type CommerceExpChargeQuantityInput = {
|
|
20836
|
+
chargeElement: Scalars['String']['input'];
|
|
20837
|
+
quantity: Scalars['Float']['input'];
|
|
20838
|
+
};
|
|
20631
20839
|
export declare type CommerceExpChargingDetails = {
|
|
20632
20840
|
__typename?: 'CommerceExpChargingDetails';
|
|
20633
20841
|
chargeQuantities?: Maybe<Array<Maybe<CommerceExpChargeQuantity>>>;
|
|
@@ -20640,6 +20848,10 @@ export declare type CommerceExpCollectionRecommendation = {
|
|
|
20640
20848
|
offering?: Maybe<CcpOffering>;
|
|
20641
20849
|
offeringId?: Maybe<Scalars['String']['output']>;
|
|
20642
20850
|
};
|
|
20851
|
+
export declare type CommerceExpCollectionStandaloneComparison = {
|
|
20852
|
+
__typename?: 'CommerceExpCollectionStandaloneComparison';
|
|
20853
|
+
recurringEstimate?: Maybe<CommerceExpOrderIntentEstimate>;
|
|
20854
|
+
};
|
|
20643
20855
|
export declare type CommerceExpCommercialContract = {
|
|
20644
20856
|
__typename?: 'CommerceExpCommercialContract';
|
|
20645
20857
|
billToParty?: Maybe<CommerceExpContractBillToParty>;
|
|
@@ -20932,6 +21144,7 @@ export declare type CommerceExpCreateEntitlementCartDirectBuyInput = {
|
|
|
20932
21144
|
pricingPlanId: Scalars['ID']['input'];
|
|
20933
21145
|
};
|
|
20934
21146
|
export declare type CommerceExpCreateEntitlementExistingEntitlementInformation = {
|
|
21147
|
+
chargeQuantitiesForRecurringEstimate?: InputMaybe<Array<CommerceExpChargeQuantityInput>>;
|
|
20935
21148
|
entitlementId: Scalars['ID']['input'];
|
|
20936
21149
|
};
|
|
20937
21150
|
export declare type CommerceExpCreateEntitlementInput = {
|
|
@@ -22014,6 +22227,7 @@ export declare type CommerceExpOrderBillEstimate = {
|
|
|
22014
22227
|
__typename?: 'CommerceExpOrderBillEstimate';
|
|
22015
22228
|
created?: Maybe<Scalars['Float']['output']>;
|
|
22016
22229
|
currency?: Maybe<Scalars['String']['output']>;
|
|
22230
|
+
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
22017
22231
|
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
22018
22232
|
grandTotal?: Maybe<Scalars['Float']['output']>;
|
|
22019
22233
|
itemId?: Maybe<Scalars['String']['output']>;
|
|
@@ -23305,6 +23519,7 @@ export declare type CommerceExpValidOrderResponse = CommerceExpGenericError | Co
|
|
|
23305
23519
|
export declare type CommerceExpValidOrderSuccess = {
|
|
23306
23520
|
__typename?: 'CommerceExpValidOrderSuccess';
|
|
23307
23521
|
collectionRecommendation?: Maybe<CommerceExpCollectionRecommendation>;
|
|
23522
|
+
collectionStandaloneComparison?: Maybe<CommerceExpCollectionStandaloneComparison>;
|
|
23308
23523
|
estimate?: Maybe<CommerceExpOrderIntentEstimate>;
|
|
23309
23524
|
order?: Maybe<CommerceExpOrderRequest>;
|
|
23310
23525
|
orderPreview?: Maybe<CommerceExpCcpOrderPreview>;
|
|
@@ -28705,6 +28920,10 @@ export declare type ConfluenceAdvancedDiagramsFeature = {
|
|
|
28705
28920
|
export declare enum ConfluenceAggregationDimension {
|
|
28706
28921
|
PerformanceRating = "PERFORMANCE_RATING"
|
|
28707
28922
|
}
|
|
28923
|
+
export declare enum ConfluenceAnalyticsAccountType {
|
|
28924
|
+
Agent = "AGENT",
|
|
28925
|
+
User = "USER"
|
|
28926
|
+
}
|
|
28708
28927
|
export declare enum ConfluenceAnalyticsCommentContentType {
|
|
28709
28928
|
Database = "database",
|
|
28710
28929
|
Page = "page",
|
|
@@ -29333,6 +29552,7 @@ export declare type ConfluenceComment = {
|
|
|
29333
29552
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
29334
29553
|
name?: Maybe<Scalars['String']['output']>;
|
|
29335
29554
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
29555
|
+
reactions?: Maybe<Array<ConfluenceCommentReactionSummary>>;
|
|
29336
29556
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
29337
29557
|
};
|
|
29338
29558
|
export declare type ConfluenceCommentConnection = {
|
|
@@ -29371,6 +29591,17 @@ export declare type ConfluenceCommentLinks = {
|
|
|
29371
29591
|
base?: Maybe<Scalars['String']['output']>;
|
|
29372
29592
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
29373
29593
|
};
|
|
29594
|
+
export declare type ConfluenceCommentReactionSummary = {
|
|
29595
|
+
__typename?: 'ConfluenceCommentReactionSummary';
|
|
29596
|
+
ari: Scalars['ID']['output'];
|
|
29597
|
+
containerAri: Scalars['ID']['output'];
|
|
29598
|
+
count: Scalars['Int']['output'];
|
|
29599
|
+
emojiId: Scalars['ID']['output'];
|
|
29600
|
+
emojiName: Scalars['String']['output'];
|
|
29601
|
+
emojiPath: Scalars['String']['output'];
|
|
29602
|
+
id: Scalars['ID']['output'];
|
|
29603
|
+
reacted: Scalars['Boolean']['output'];
|
|
29604
|
+
};
|
|
29374
29605
|
export declare type ConfluenceCommentResolutionState = {
|
|
29375
29606
|
__typename?: 'ConfluenceCommentResolutionState';
|
|
29376
29607
|
commentId: Scalars['ID']['output'];
|
|
@@ -30932,6 +31163,7 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
30932
31163
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
30933
31164
|
name?: Maybe<Scalars['String']['output']>;
|
|
30934
31165
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
31166
|
+
reactions?: Maybe<Array<ConfluenceCommentReactionSummary>>;
|
|
30935
31167
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
30936
31168
|
};
|
|
30937
31169
|
export declare type ConfluenceForgeContextToken = {
|
|
@@ -31215,6 +31447,7 @@ export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
|
31215
31447
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
31216
31448
|
name?: Maybe<Scalars['String']['output']>;
|
|
31217
31449
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
31450
|
+
reactions?: Maybe<Array<ConfluenceCommentReactionSummary>>;
|
|
31218
31451
|
resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
|
|
31219
31452
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
31220
31453
|
};
|
|
@@ -31332,6 +31565,7 @@ export declare type ConfluenceInlineTask = Node & {
|
|
|
31332
31565
|
__typename?: 'ConfluenceInlineTask';
|
|
31333
31566
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
31334
31567
|
body?: Maybe<ConfluenceContentBody>;
|
|
31568
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
31335
31569
|
completedBy?: Maybe<ConfluenceUserInfo>;
|
|
31336
31570
|
container?: Maybe<ConfluenceInlineTaskContainer>;
|
|
31337
31571
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -33609,6 +33843,11 @@ export declare enum ConfluenceRecommendationType {
|
|
|
33609
33843
|
export declare enum ConfluenceRecommendedAction {
|
|
33610
33844
|
ConvertToRole = "CONVERT_TO_ROLE"
|
|
33611
33845
|
}
|
|
33846
|
+
export declare type ConfluenceRecordCompanionTipScrollSignalPayload = {
|
|
33847
|
+
__typename?: 'ConfluenceRecordCompanionTipScrollSignalPayload';
|
|
33848
|
+
errors?: Maybe<Array<Maybe<MutationError>>>;
|
|
33849
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
33850
|
+
};
|
|
33612
33851
|
export declare type ConfluenceRedactionMetadata = {
|
|
33613
33852
|
__typename?: 'ConfluenceRedactionMetadata';
|
|
33614
33853
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -33872,9 +34111,16 @@ export declare enum ConfluenceRolesHubTransitionStep {
|
|
|
33872
34111
|
UpdateDefaultAccess = "UPDATE_DEFAULT_ACCESS",
|
|
33873
34112
|
ViewPermissionsCombinations = "VIEW_PERMISSIONS_COMBINATIONS"
|
|
33874
34113
|
}
|
|
34114
|
+
export declare type ConfluenceRolesHubTransitionStepCompletedBy = {
|
|
34115
|
+
__typename?: 'ConfluenceRolesHubTransitionStepCompletedBy';
|
|
34116
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
34117
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
34118
|
+
};
|
|
33875
34119
|
export declare type ConfluenceRolesHubTransitionStepState = {
|
|
33876
34120
|
__typename?: 'ConfluenceRolesHubTransitionStepState';
|
|
33877
34121
|
completed: Scalars['Boolean']['output'];
|
|
34122
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
34123
|
+
completedBy?: Maybe<ConfluenceRolesHubTransitionStepCompletedBy>;
|
|
33878
34124
|
step: ConfluenceRolesHubTransitionStep;
|
|
33879
34125
|
};
|
|
33880
34126
|
export declare type ConfluenceSaveOrUpdateSpaceOwnerInput = {
|
|
@@ -36328,6 +36574,7 @@ export declare type ContentAnalyticsLastViewedAtByPageItem = {
|
|
|
36328
36574
|
};
|
|
36329
36575
|
export declare type ContentAnalyticsPageViewInfo = {
|
|
36330
36576
|
__typename?: 'ContentAnalyticsPageViewInfo';
|
|
36577
|
+
accountType?: Maybe<ConfluenceAnalyticsAccountType>;
|
|
36331
36578
|
confluenceUser?: Maybe<ConfluenceUser>;
|
|
36332
36579
|
confluenceUserDetailsId: Scalars['ID']['output'];
|
|
36333
36580
|
isEngaged?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -42197,6 +42444,28 @@ export declare enum DevAiAutodevNextWorkstreamStatus {
|
|
|
42197
42444
|
Active = "ACTIVE",
|
|
42198
42445
|
Disabled = "DISABLED"
|
|
42199
42446
|
}
|
|
42447
|
+
export declare type DevAiAutodevNextWorkstreamSweepSummary = {
|
|
42448
|
+
__typename?: 'DevAiAutodevNextWorkstreamSweepSummary';
|
|
42449
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
42450
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
42451
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
42452
|
+
id: Scalars['ID']['output'];
|
|
42453
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
42454
|
+
status?: Maybe<Scalars['ID']['output']>;
|
|
42455
|
+
totalWorkItemCount?: Maybe<Scalars['Int']['output']>;
|
|
42456
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
42457
|
+
workItemStateCounts?: Maybe<Array<DevAiAutodevNextWorkstreamSweepWorkItemStateCount>>;
|
|
42458
|
+
};
|
|
42459
|
+
export declare type DevAiAutodevNextWorkstreamSweepSummaryPayload = {
|
|
42460
|
+
__typename?: 'DevAiAutodevNextWorkstreamSweepSummaryPayload';
|
|
42461
|
+
activeSweep?: Maybe<DevAiAutodevNextWorkstreamSweepSummary>;
|
|
42462
|
+
latestSweep?: Maybe<DevAiAutodevNextWorkstreamSweepSummary>;
|
|
42463
|
+
};
|
|
42464
|
+
export declare type DevAiAutodevNextWorkstreamSweepWorkItemStateCount = {
|
|
42465
|
+
__typename?: 'DevAiAutodevNextWorkstreamSweepWorkItemStateCount';
|
|
42466
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
42467
|
+
state?: Maybe<Scalars['ID']['output']>;
|
|
42468
|
+
};
|
|
42200
42469
|
export declare type DevAiAutofixConfiguration = {
|
|
42201
42470
|
__typename?: 'DevAiAutofixConfiguration';
|
|
42202
42471
|
autofixScans?: Maybe<DevAiAutofixScansConnection>;
|
|
@@ -49620,10 +49889,15 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
49620
49889
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
49621
49890
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
49622
49891
|
};
|
|
49892
|
+
export declare type GetAllPlanOwnersFilterInput = {
|
|
49893
|
+
jiraProjectAri?: InputMaybe<Scalars['String']['input']>;
|
|
49894
|
+
};
|
|
49623
49895
|
export declare type GetAllPlansFilterInput = {
|
|
49624
49896
|
excludeOwnerId?: InputMaybe<Scalars['String']['input']>;
|
|
49625
49897
|
jiraProjectAri?: InputMaybe<Scalars['String']['input']>;
|
|
49626
49898
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
49899
|
+
ownerIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
49900
|
+
planName?: InputMaybe<Scalars['String']['input']>;
|
|
49627
49901
|
};
|
|
49628
49902
|
export declare enum GlanceEnvironment {
|
|
49629
49903
|
Dev = "DEV",
|
|
@@ -50731,14 +51005,33 @@ export declare type GraphInferenceGetRelatedReposResponse = {
|
|
|
50731
51005
|
outputs?: Maybe<Scalars['JSON']['output']>;
|
|
50732
51006
|
status?: Maybe<Scalars['JSON']['output']>;
|
|
50733
51007
|
};
|
|
51008
|
+
export declare type GraphInferenceGetRelatedReposV2Response = {
|
|
51009
|
+
__typename?: 'GraphInferenceGetRelatedReposV2Response';
|
|
51010
|
+
apiVersion: Scalars['String']['output'];
|
|
51011
|
+
meta: GraphInferenceRelatedReposMeta;
|
|
51012
|
+
repos: Array<GraphInferenceRelatedRepoCandidate>;
|
|
51013
|
+
root: GraphInferenceRelatedReposRoot;
|
|
51014
|
+
};
|
|
51015
|
+
export declare type GraphInferenceGetRelatedReposV3Input = {
|
|
51016
|
+
workItemAri: Scalars['String']['input'];
|
|
51017
|
+
};
|
|
51018
|
+
export declare type GraphInferenceGetRelatedReposV3Response = {
|
|
51019
|
+
__typename?: 'GraphInferenceGetRelatedReposV3Response';
|
|
51020
|
+
apiVersion: Scalars['String']['output'];
|
|
51021
|
+
meta: GraphInferenceRelatedReposMeta;
|
|
51022
|
+
repos: Array<GraphInferenceRelatedRepoCandidate>;
|
|
51023
|
+
root: GraphInferenceRelatedReposRoot;
|
|
51024
|
+
};
|
|
50734
51025
|
export declare type GraphInferenceJiraEntityContextCandidate = {
|
|
50735
51026
|
__typename?: 'GraphInferenceJiraEntityContextCandidate';
|
|
50736
51027
|
ari: Scalars['String']['output'];
|
|
51028
|
+
entity?: Maybe<GraphInferenceJiraEntityContextEntityUnion>;
|
|
50737
51029
|
evidence?: Maybe<Array<GraphInferenceJiraEntityContextEvidence>>;
|
|
50738
51030
|
nodeType: Scalars['String']['output'];
|
|
50739
51031
|
reasonCodes: Array<Scalars['String']['output']>;
|
|
50740
51032
|
score: Scalars['Float']['output'];
|
|
50741
51033
|
};
|
|
51034
|
+
export declare type GraphInferenceJiraEntityContextEntityUnion = ConfluencePage | ConfluenceWhiteboard | DevOpsOperationsIncidentDetails | DevOpsPullRequestDetails | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalVulnerability | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraServiceManagementComment | JiraWebRemoteIssueLink | TownsquareGoal | TownsquareProject;
|
|
50742
51035
|
export declare type GraphInferenceJiraEntityContextEvidence = {
|
|
50743
51036
|
__typename?: 'GraphInferenceJiraEntityContextEvidence';
|
|
50744
51037
|
contextType: Scalars['String']['output'];
|
|
@@ -50758,6 +51051,25 @@ export declare type GraphInferenceJiraEntityContextRoot = {
|
|
|
50758
51051
|
key?: Maybe<Scalars['String']['output']>;
|
|
50759
51052
|
url?: Maybe<Scalars['String']['output']>;
|
|
50760
51053
|
};
|
|
51054
|
+
export declare type GraphInferenceRelatedRepoCandidate = {
|
|
51055
|
+
__typename?: 'GraphInferenceRelatedRepoCandidate';
|
|
51056
|
+
ari: Scalars['String']['output'];
|
|
51057
|
+
entity?: Maybe<ExternalRepository>;
|
|
51058
|
+
level: Scalars['String']['output'];
|
|
51059
|
+
nodeType: Scalars['String']['output'];
|
|
51060
|
+
score: Scalars['Float']['output'];
|
|
51061
|
+
};
|
|
51062
|
+
export declare type GraphInferenceRelatedReposMeta = {
|
|
51063
|
+
__typename?: 'GraphInferenceRelatedReposMeta';
|
|
51064
|
+
degraded: Array<Scalars['String']['output']>;
|
|
51065
|
+
servedBy: Scalars['String']['output'];
|
|
51066
|
+
traceId?: Maybe<Scalars['String']['output']>;
|
|
51067
|
+
warnings: Array<Scalars['String']['output']>;
|
|
51068
|
+
};
|
|
51069
|
+
export declare type GraphInferenceRelatedReposRoot = {
|
|
51070
|
+
__typename?: 'GraphInferenceRelatedReposRoot';
|
|
51071
|
+
ari: Scalars['String']['output'];
|
|
51072
|
+
};
|
|
50761
51073
|
export declare type GraphIntegrationActionAdminManagementActionConfiguration = {
|
|
50762
51074
|
__typename?: 'GraphIntegrationActionAdminManagementActionConfiguration';
|
|
50763
51075
|
status: GraphIntegrationActionAdminManagementActionStatus;
|
|
@@ -50839,6 +51151,7 @@ export declare type GraphIntegrationCreateSkillInput = {
|
|
|
50839
51151
|
contextAri: Scalars['ID']['input'];
|
|
50840
51152
|
description: Scalars['String']['input'];
|
|
50841
51153
|
displayName: Scalars['String']['input'];
|
|
51154
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
50842
51155
|
instructions: Scalars['String']['input'];
|
|
50843
51156
|
name: Scalars['String']['input'];
|
|
50844
51157
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -51265,6 +51578,7 @@ export declare type GraphIntegrationSkill = {
|
|
|
51265
51578
|
__typename?: 'GraphIntegrationSkill';
|
|
51266
51579
|
description: Scalars['String']['output'];
|
|
51267
51580
|
file?: Maybe<GraphIntegrationSkillFile>;
|
|
51581
|
+
hasAdditionalFiles: Scalars['Boolean']['output'];
|
|
51268
51582
|
id: Scalars['ID']['output'];
|
|
51269
51583
|
instructions: Scalars['String']['output'];
|
|
51270
51584
|
metadata: GraphIntegrationSkillMetadata;
|
|
@@ -51371,6 +51685,7 @@ export declare type GraphIntegrationSkillUiMetadata = {
|
|
|
51371
51685
|
__typename?: 'GraphIntegrationSkillUiMetadata';
|
|
51372
51686
|
color?: Maybe<GraphIntegrationSkillColor>;
|
|
51373
51687
|
displayName: Scalars['String']['output'];
|
|
51688
|
+
helpText?: Maybe<Scalars['String']['output']>;
|
|
51374
51689
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
51375
51690
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
51376
51691
|
products: Array<Scalars['String']['output']>;
|
|
@@ -51466,6 +51781,7 @@ export declare type GraphIntegrationUpdateSkillInput = {
|
|
|
51466
51781
|
contextAri: Scalars['ID']['input'];
|
|
51467
51782
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
51468
51783
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
51784
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
51469
51785
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
51470
51786
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
51471
51787
|
skillAri: Scalars['ID']['input'];
|
|
@@ -51903,6 +52219,7 @@ export declare type GraphQlInlineTask = {
|
|
|
51903
52219
|
__typename?: 'GraphQLInlineTask';
|
|
51904
52220
|
assignedTo?: Maybe<GraphQlUserInfo>;
|
|
51905
52221
|
body?: Maybe<ConfluenceContentBody>;
|
|
52222
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
51906
52223
|
completedBy?: Maybe<GraphQlUserInfo>;
|
|
51907
52224
|
container?: Maybe<ConfluenceInlineTaskContainer>;
|
|
51908
52225
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -110567,6 +110884,7 @@ export declare type GrowthUnifiedProfileTrialHistoryResult = {
|
|
|
110567
110884
|
trialType: GrowthUnifiedProfileTrialType;
|
|
110568
110885
|
};
|
|
110569
110886
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
110887
|
+
AutoUpgradeStorageLimit = "AUTO_UPGRADE_STORAGE_LIMIT",
|
|
110570
110888
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
110571
110889
|
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
110572
110890
|
EditionParity = "EDITION_PARITY",
|
|
@@ -115363,6 +115681,32 @@ export declare enum JiraAttachmentsPermissions {
|
|
|
115363
115681
|
CreateAttachments = "CREATE_ATTACHMENTS",
|
|
115364
115682
|
DeleteOwnAttachments = "DELETE_OWN_ATTACHMENTS"
|
|
115365
115683
|
}
|
|
115684
|
+
export declare enum JiraAutoManagedSprintErrorType {
|
|
115685
|
+
Generic = "GENERIC",
|
|
115686
|
+
OpenSubtasks = "OPEN_SUBTASKS"
|
|
115687
|
+
}
|
|
115688
|
+
export declare type JiraAutoManagedSprintGenericError = JiraAutoManagedSprintJobError & {
|
|
115689
|
+
__typename?: 'JiraAutoManagedSprintGenericError';
|
|
115690
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
115691
|
+
retriesExhausted?: Maybe<Scalars['Boolean']['output']>;
|
|
115692
|
+
type: JiraAutoManagedSprintErrorType;
|
|
115693
|
+
};
|
|
115694
|
+
export declare type JiraAutoManagedSprintJobError = {
|
|
115695
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
115696
|
+
retriesExhausted?: Maybe<Scalars['Boolean']['output']>;
|
|
115697
|
+
type: JiraAutoManagedSprintErrorType;
|
|
115698
|
+
};
|
|
115699
|
+
export declare type JiraAutoManagedSprintOpenSubtasksError = JiraAutoManagedSprintJobError & {
|
|
115700
|
+
__typename?: 'JiraAutoManagedSprintOpenSubtasksError';
|
|
115701
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
115702
|
+
parentIssueKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
115703
|
+
retriesExhausted?: Maybe<Scalars['Boolean']['output']>;
|
|
115704
|
+
type: JiraAutoManagedSprintErrorType;
|
|
115705
|
+
};
|
|
115706
|
+
export declare enum JiraAutoManagedSprintSetting {
|
|
115707
|
+
Disabled = "DISABLED",
|
|
115708
|
+
Enabled = "ENABLED"
|
|
115709
|
+
}
|
|
115366
115710
|
export declare type JiraAutodevBasicPayload = Payload & {
|
|
115367
115711
|
__typename?: 'JiraAutodevBasicPayload';
|
|
115368
115712
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -116862,6 +117206,7 @@ export declare type JiraBoardViewStatusAssociatedIssueTypesArgs = {
|
|
|
116862
117206
|
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
116863
117207
|
__typename?: 'JiraBoardViewStatusColumn';
|
|
116864
117208
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
117209
|
+
canInlineRename?: Maybe<Scalars['Boolean']['output']>;
|
|
116865
117210
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
116866
117211
|
id: Scalars['ID']['output'];
|
|
116867
117212
|
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
@@ -117849,6 +118194,11 @@ export declare type JiraCappedCount = {
|
|
|
117849
118194
|
count?: Maybe<Scalars['Int']['output']>;
|
|
117850
118195
|
exceeded?: Maybe<Scalars['Boolean']['output']>;
|
|
117851
118196
|
};
|
|
118197
|
+
export declare enum JiraCardsDestinationEnum {
|
|
118198
|
+
Backlog = "BACKLOG",
|
|
118199
|
+
ExistingSprint = "EXISTING_SPRINT",
|
|
118200
|
+
NewSprint = "NEW_SPRINT"
|
|
118201
|
+
}
|
|
117852
118202
|
export declare type JiraCascadingOption = {
|
|
117853
118203
|
__typename?: 'JiraCascadingOption';
|
|
117854
118204
|
childOptionValue?: Maybe<JiraOption>;
|
|
@@ -121026,7 +121376,22 @@ export declare type JiraFieldEdge = {
|
|
|
121026
121376
|
};
|
|
121027
121377
|
export declare type JiraFieldForGlobalView = {
|
|
121028
121378
|
__typename?: 'JiraFieldForGlobalView';
|
|
121379
|
+
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
121380
|
+
custom?: Maybe<Scalars['Boolean']['output']>;
|
|
121381
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
121382
|
+
hasRestrictedContext?: Maybe<Scalars['Boolean']['output']>;
|
|
121029
121383
|
id: Scalars['ID']['output'];
|
|
121384
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
121385
|
+
options?: Maybe<Array<JiraFieldForGlobalViewOption>>;
|
|
121386
|
+
stableId?: Maybe<Scalars['String']['output']>;
|
|
121387
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
121388
|
+
};
|
|
121389
|
+
export declare type JiraFieldForGlobalViewOption = {
|
|
121390
|
+
__typename?: 'JiraFieldForGlobalViewOption';
|
|
121391
|
+
disabled?: Maybe<Scalars['Boolean']['output']>;
|
|
121392
|
+
externalUuid?: Maybe<Scalars['String']['output']>;
|
|
121393
|
+
id?: Maybe<Scalars['Long']['output']>;
|
|
121394
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
121030
121395
|
};
|
|
121031
121396
|
export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
|
|
121032
121397
|
export declare type JiraFieldFormatConfigInput = {
|
|
@@ -122228,21 +122593,6 @@ export declare type JiraGeneratedJqlInvalidError = {
|
|
|
122228
122593
|
__typename?: 'JiraGeneratedJqlInvalidError';
|
|
122229
122594
|
message?: Maybe<Scalars['String']['output']>;
|
|
122230
122595
|
};
|
|
122231
|
-
export declare type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & Node & {
|
|
122232
|
-
__typename?: 'JiraGenericIssueField';
|
|
122233
|
-
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
122234
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
122235
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122236
|
-
fieldId: Scalars['String']['output'];
|
|
122237
|
-
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122238
|
-
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122239
|
-
id: Scalars['ID']['output'];
|
|
122240
|
-
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122241
|
-
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
122242
|
-
issue?: Maybe<JiraIssue>;
|
|
122243
|
-
name: Scalars['String']['output'];
|
|
122244
|
-
type: Scalars['String']['output'];
|
|
122245
|
-
};
|
|
122246
122596
|
export declare type JiraGenericResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
122247
122597
|
__typename?: 'JiraGenericResourceUsageMetric';
|
|
122248
122598
|
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
@@ -122759,6 +123109,12 @@ export declare type JiraImproveDescriptionSuggestion = JiraBaseNextActionsEntity
|
|
|
122759
123109
|
rank?: Maybe<Scalars['Float']['output']>;
|
|
122760
123110
|
rationale?: Maybe<Scalars['String']['output']>;
|
|
122761
123111
|
};
|
|
123112
|
+
export declare type JiraInCompleteCardsDestination = {
|
|
123113
|
+
__typename?: 'JiraInCompleteCardsDestination';
|
|
123114
|
+
destination?: Maybe<JiraCardsDestinationEnum>;
|
|
123115
|
+
sprintId?: Maybe<Scalars['ID']['output']>;
|
|
123116
|
+
sprintName?: Maybe<Scalars['String']['output']>;
|
|
123117
|
+
};
|
|
122762
123118
|
export declare type JiraIncidentActivityActor = {
|
|
122763
123119
|
__typename?: 'JiraIncidentActivityActor';
|
|
122764
123120
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -122973,6 +123329,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
122973
123329
|
id: Scalars['ID']['output'];
|
|
122974
123330
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
122975
123331
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
123332
|
+
incidentSuggestion?: Maybe<AiOpsIncidentSuggestionAsyncResult>;
|
|
122976
123333
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
122977
123334
|
isChatOpsEntitlementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
122978
123335
|
isFlagged?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -130537,8 +130894,10 @@ export declare type JiraProject = Node & {
|
|
|
130537
130894
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
130538
130895
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130539
130896
|
isAccessRequestsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130897
|
+
isAgenticWorkItemViewEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130540
130898
|
isAiContextFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130541
130899
|
isAutomationDiscoverabilityEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130900
|
+
isCreatedFromAgenticTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
130542
130901
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130543
130902
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
130544
130903
|
isGlobalComponentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -133871,6 +134230,7 @@ export declare type JiraRemoteLinkResource = JiraConsolidatedResource & {
|
|
|
133871
134230
|
__typename?: 'JiraRemoteLinkResource';
|
|
133872
134231
|
applicationName?: Maybe<Scalars['String']['output']>;
|
|
133873
134232
|
applicationType?: Maybe<Scalars['String']['output']>;
|
|
134233
|
+
author?: Maybe<User>;
|
|
133874
134234
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
133875
134235
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
133876
134236
|
details?: Maybe<JiraRemoteLinkDetails>;
|
|
@@ -135284,6 +135644,7 @@ export declare type JiraServiceManagementCompletedApprovalEdge = {
|
|
|
135284
135644
|
};
|
|
135285
135645
|
export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput = {
|
|
135286
135646
|
avatarId?: InputMaybe<Scalars['ID']['input']>;
|
|
135647
|
+
existingIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
135287
135648
|
issueTypeName?: InputMaybe<Scalars['String']['input']>;
|
|
135288
135649
|
projectId: Scalars['ID']['input'];
|
|
135289
135650
|
templateId: Scalars['String']['input'];
|
|
@@ -137588,18 +137949,22 @@ export declare type JiraSpreadsheetViewSettings = {
|
|
|
137588
137949
|
};
|
|
137589
137950
|
export declare type JiraSprint = Node & {
|
|
137590
137951
|
__typename?: 'JiraSprint';
|
|
137952
|
+
autoManaged?: Maybe<JiraAutoManagedSprintSetting>;
|
|
137591
137953
|
boardId?: Maybe<Scalars['Long']['output']>;
|
|
137592
137954
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
137593
137955
|
canUpdateSprint?: Maybe<Scalars['Boolean']['output']>;
|
|
137956
|
+
completeSprintError?: Maybe<JiraAutoManagedSprintJobError>;
|
|
137594
137957
|
completionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
137595
137958
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
137596
137959
|
goal?: Maybe<Scalars['String']['output']>;
|
|
137597
137960
|
id: Scalars['ID']['output'];
|
|
137961
|
+
incompleteCardsDestination?: Maybe<JiraInCompleteCardsDestination>;
|
|
137598
137962
|
name?: Maybe<Scalars['String']['output']>;
|
|
137599
137963
|
projects?: Maybe<JiraProjectConnection>;
|
|
137600
137964
|
sprintId: Scalars['String']['output'];
|
|
137601
137965
|
sprintProgress?: Maybe<JiraSprintProgress>;
|
|
137602
137966
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
137967
|
+
startSprintError?: Maybe<JiraAutoManagedSprintJobError>;
|
|
137603
137968
|
state?: Maybe<JiraSprintState>;
|
|
137604
137969
|
};
|
|
137605
137970
|
export declare type JiraSprintProjectsArgs = {
|
|
@@ -140541,6 +140906,7 @@ export declare type JiraWhiteboardDetails = JiraConsolidatedResourceDetails & {
|
|
|
140541
140906
|
};
|
|
140542
140907
|
export declare type JiraWhiteboardResource = JiraConsolidatedResource & {
|
|
140543
140908
|
__typename?: 'JiraWhiteboardResource';
|
|
140909
|
+
author?: Maybe<User>;
|
|
140544
140910
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
140545
140911
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
140546
140912
|
details?: Maybe<JiraWhiteboardDetails>;
|
|
@@ -142118,6 +142484,26 @@ export declare type JsmChannelsProjectQueryFilter = {
|
|
|
142118
142484
|
projectId: Scalars['String']['input'];
|
|
142119
142485
|
requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
142120
142486
|
};
|
|
142487
|
+
export declare type JsmChannelsReasoningEvent = {
|
|
142488
|
+
__typename?: 'JsmChannelsReasoningEvent';
|
|
142489
|
+
excerpt?: Maybe<Scalars['String']['output']>;
|
|
142490
|
+
extras?: Maybe<Scalars['JSON']['output']>;
|
|
142491
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
142492
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
142493
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
142494
|
+
recoverable?: Maybe<Scalars['Boolean']['output']>;
|
|
142495
|
+
relevanceScore?: Maybe<Scalars['Float']['output']>;
|
|
142496
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
142497
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
142498
|
+
stage: Scalars['String']['output'];
|
|
142499
|
+
stepId: Scalars['String']['output'];
|
|
142500
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
142501
|
+
tier?: Maybe<Scalars['String']['output']>;
|
|
142502
|
+
timestampMs?: Maybe<Scalars['Float']['output']>;
|
|
142503
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
142504
|
+
type: Scalars['String']['output'];
|
|
142505
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
142506
|
+
};
|
|
142121
142507
|
export declare enum JsmChannelsRequestTypeAgentStatus {
|
|
142122
142508
|
Assistive = "ASSISTIVE",
|
|
142123
142509
|
Autonomous = "AUTONOMOUS",
|
|
@@ -142149,6 +142535,7 @@ export declare type JsmChannelsRequestTypesInput = {
|
|
|
142149
142535
|
export declare enum JsmChannelsResolutionPlanAction {
|
|
142150
142536
|
Approve = "APPROVE",
|
|
142151
142537
|
Pause = "PAUSE",
|
|
142538
|
+
Regenerate = "REGENERATE",
|
|
142152
142539
|
Reject = "REJECT",
|
|
142153
142540
|
Resume = "RESUME"
|
|
142154
142541
|
}
|
|
@@ -142246,6 +142633,7 @@ export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
|
142246
142633
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
142247
142634
|
contentSources?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionContentSource>>>;
|
|
142248
142635
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
142636
|
+
isRetriable: Scalars['Boolean']['output'];
|
|
142249
142637
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
142250
142638
|
runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
|
|
142251
142639
|
status?: Maybe<JsmChannelsResolutionPlanStatus>;
|
|
@@ -142253,6 +142641,7 @@ export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
|
142253
142641
|
};
|
|
142254
142642
|
export declare type JsmChannelsServiceAgentResolutionPlanStep = {
|
|
142255
142643
|
__typename?: 'JsmChannelsServiceAgentResolutionPlanStep';
|
|
142644
|
+
assigneeType?: Maybe<JsmChannelsResolutionPlanAssigneeType>;
|
|
142256
142645
|
description?: Maybe<Scalars['String']['output']>;
|
|
142257
142646
|
status?: Maybe<JsmChannelsResolutionPlanStepStatus>;
|
|
142258
142647
|
title: Scalars['String']['output'];
|
|
@@ -142321,6 +142710,7 @@ export declare type JsmChannelsTicketServiceAgentResolutionState = {
|
|
|
142321
142710
|
isLoading: Scalars['Boolean']['output'];
|
|
142322
142711
|
message?: Maybe<Scalars['String']['output']>;
|
|
142323
142712
|
plan?: Maybe<JsmChannelsServiceAgentResolutionPlan>;
|
|
142713
|
+
reasoningEvent?: Maybe<JsmChannelsReasoningEvent>;
|
|
142324
142714
|
};
|
|
142325
142715
|
export declare type JsmChannelsTicketServiceAgentResolutionStateResult = JsmChannelsTicketServiceAgentResolutionState | QueryError;
|
|
142326
142716
|
export declare type JsmChatAppendixActionItem = {
|
|
@@ -146792,6 +147182,7 @@ export declare type MarketplaceAppTrustInformation = {
|
|
|
146792
147182
|
export declare type MarketplaceAppTrustInformationResult = MarketplaceAppTrustInformation | QueryError;
|
|
146793
147183
|
export declare type MarketplaceAppVersion = {
|
|
146794
147184
|
__typename?: 'MarketplaceAppVersion';
|
|
147185
|
+
bonTermsSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
146795
147186
|
buildNumber: Scalars['ID']['output'];
|
|
146796
147187
|
deployment: MarketplaceAppDeployment;
|
|
146797
147188
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -146804,6 +147195,7 @@ export declare type MarketplaceAppVersion = {
|
|
|
146804
147195
|
learnMoreUrl?: Maybe<Scalars['URL']['output']>;
|
|
146805
147196
|
licenseType?: Maybe<MarketplaceAppVersionLicenseType>;
|
|
146806
147197
|
moreDetails?: Maybe<Scalars['String']['output']>;
|
|
147198
|
+
partnerSpecificTerms?: Maybe<Scalars['String']['output']>;
|
|
146807
147199
|
paymentModel: MarketplaceAppPaymentModel;
|
|
146808
147200
|
productHostingOptions: Array<AtlassianProductHostingType>;
|
|
146809
147201
|
purchaseUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -149599,15 +149991,6 @@ export declare type MarketplaceStoreHomePageHighlightedSection = MarketplaceStor
|
|
|
149599
149991
|
export declare enum MarketplaceStoreHomePageHighlightedSectionVariation {
|
|
149600
149992
|
Prominent = "PROMINENT"
|
|
149601
149993
|
}
|
|
149602
|
-
export declare type MarketplaceStoreHomePageRecommendationsSection = MarketplaceStoreHomePageSection & {
|
|
149603
|
-
__typename?: 'MarketplaceStoreHomePageRecommendationsSection';
|
|
149604
|
-
description: Scalars['String']['output'];
|
|
149605
|
-
id: Scalars['ID']['output'];
|
|
149606
|
-
recommendationResultsCount: Scalars['Int']['output'];
|
|
149607
|
-
screenSpecificProperties: MarketplaceStoreHomePageSectionScreenSpecificProperties;
|
|
149608
|
-
searchMetadata: MarketplaceStoreSearchMetadata;
|
|
149609
|
-
title: Scalars['String']['output'];
|
|
149610
|
-
};
|
|
149611
149994
|
export declare type MarketplaceStoreHomePageRegularSection = MarketplaceStoreHomePageSection & {
|
|
149612
149995
|
__typename?: 'MarketplaceStoreHomePageRegularSection';
|
|
149613
149996
|
algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
|
|
@@ -150084,6 +150467,7 @@ export declare type MarketplaceStorePersonalisationContextInput = {
|
|
|
150084
150467
|
userLocation?: InputMaybe<Scalars['String']['input']>;
|
|
150085
150468
|
};
|
|
150086
150469
|
export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
150470
|
+
Marketplace = "MARKETPLACE",
|
|
150087
150471
|
StoreCategory = "STORE_CATEGORY",
|
|
150088
150472
|
StoreCollection = "STORE_COLLECTION",
|
|
150089
150473
|
StorePartnerProfile = "STORE_PARTNER_PROFILE",
|
|
@@ -150446,6 +150830,7 @@ export declare type MarketplaceStoreQueryApiProductTagsArgs = {
|
|
|
150446
150830
|
tagType?: InputMaybe<MarketplaceStoreProductTagType>;
|
|
150447
150831
|
};
|
|
150448
150832
|
export declare type MarketplaceStoreQueryApiRecommendationsSectionArgs = {
|
|
150833
|
+
input?: InputMaybe<MarketplaceStoreRecommendationsSectionInput>;
|
|
150449
150834
|
usecase: MarketplaceStoreRecommendationsUsecase;
|
|
150450
150835
|
};
|
|
150451
150836
|
export declare type MarketplaceStoreQueryApiReviewSummaryArgs = {
|
|
@@ -150479,6 +150864,14 @@ export declare type MarketplaceStoreRecommendationsSection = {
|
|
|
150479
150864
|
searchMetadata: MarketplaceStoreSearchMetadata;
|
|
150480
150865
|
title: Scalars['String']['output'];
|
|
150481
150866
|
};
|
|
150867
|
+
export declare type MarketplaceStoreRecommendationsSectionInput = {
|
|
150868
|
+
appId?: InputMaybe<Scalars['String']['input']>;
|
|
150869
|
+
complianceBoundary?: InputMaybe<MarketplaceStoreCloudComplianceBoundary>;
|
|
150870
|
+
count?: InputMaybe<Scalars['Int']['input']>;
|
|
150871
|
+
productId?: InputMaybe<Scalars['String']['input']>;
|
|
150872
|
+
surface?: InputMaybe<MarketplaceStorePersonalisationTargetSurface>;
|
|
150873
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
150874
|
+
};
|
|
150482
150875
|
export declare enum MarketplaceStoreRecommendationsUsecase {
|
|
150483
150876
|
RecommendedAppsForYou = "RECOMMENDED_APPS_FOR_YOU",
|
|
150484
150877
|
SimilarApps = "SIMILAR_APPS"
|
|
@@ -151292,6 +151685,7 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
151292
151685
|
goalLinks?: Maybe<GraphStoreSimplifiedChangeProposalHasAtlasGoalConnection>;
|
|
151293
151686
|
id: Scalars['ID']['output'];
|
|
151294
151687
|
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
151688
|
+
linkedGoals?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
151295
151689
|
linkedWork?: Maybe<Array<Maybe<MercuryLinkedWork>>>;
|
|
151296
151690
|
name: Scalars['String']['output'];
|
|
151297
151691
|
owner?: Maybe<User>;
|
|
@@ -152906,6 +153300,8 @@ export declare type MercuryFocusArea = Node & {
|
|
|
152906
153300
|
parent?: Maybe<MercuryFocusArea>;
|
|
152907
153301
|
path?: Maybe<Array<Scalars['String']['output']>>;
|
|
152908
153302
|
ranks?: Maybe<MercuryFocusAreaRankConnection>;
|
|
153303
|
+
sponsorOrganization?: Maybe<MercuryOrganization>;
|
|
153304
|
+
sponsorOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
152909
153305
|
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
152910
153306
|
status: MercuryFocusAreaStatus;
|
|
152911
153307
|
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
@@ -155579,6 +155975,7 @@ export declare type MercuryOrganizationsQueryApiOrganizationsByExternalIdsArgs =
|
|
|
155579
155975
|
};
|
|
155580
155976
|
export declare type MercuryOrganizationsQueryApiOrganizationsForUserArgs = {
|
|
155581
155977
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
155978
|
+
cloudId: Scalars['ID']['input'];
|
|
155582
155979
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155583
155980
|
userId: Scalars['ID']['input'];
|
|
155584
155981
|
};
|
|
@@ -156748,6 +157145,7 @@ export declare type MercuryRisksMutationApi = {
|
|
|
156748
157145
|
updateRiskLikelihood?: Maybe<MercuryUpdateRiskPayload>;
|
|
156749
157146
|
updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
|
|
156750
157147
|
updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
|
|
157148
|
+
updateRiskOwnership?: Maybe<MercuryUpdateRiskPayload>;
|
|
156751
157149
|
updateRiskSubmitter?: Maybe<MercuryUpdateRiskPayload>;
|
|
156752
157150
|
updateRiskTargetDate?: Maybe<MercuryUpdateRiskPayload>;
|
|
156753
157151
|
};
|
|
@@ -156790,6 +157188,9 @@ export declare type MercuryRisksMutationApiUpdateRiskNameArgs = {
|
|
|
156790
157188
|
export declare type MercuryRisksMutationApiUpdateRiskOwnerArgs = {
|
|
156791
157189
|
input: MercuryUpdateRiskOwnerInput;
|
|
156792
157190
|
};
|
|
157191
|
+
export declare type MercuryRisksMutationApiUpdateRiskOwnershipArgs = {
|
|
157192
|
+
input: MercuryUpdateRiskOwnershipInput;
|
|
157193
|
+
};
|
|
156793
157194
|
export declare type MercuryRisksMutationApiUpdateRiskSubmitterArgs = {
|
|
156794
157195
|
input: MercuryUpdateRiskSubmitterInput;
|
|
156795
157196
|
};
|
|
@@ -158285,10 +158686,21 @@ export declare type MercuryUpdateRiskNameInput = {
|
|
|
158285
158686
|
id: Scalars['ID']['input'];
|
|
158286
158687
|
name: Scalars['String']['input'];
|
|
158287
158688
|
};
|
|
158689
|
+
export declare type MercuryUpdateRiskOrganizationFieldInput = {
|
|
158690
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
158691
|
+
};
|
|
158692
|
+
export declare type MercuryUpdateRiskOwnerFieldInput = {
|
|
158693
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
158694
|
+
};
|
|
158288
158695
|
export declare type MercuryUpdateRiskOwnerInput = {
|
|
158289
158696
|
id: Scalars['ID']['input'];
|
|
158290
158697
|
owner: Scalars['ID']['input'];
|
|
158291
158698
|
};
|
|
158699
|
+
export declare type MercuryUpdateRiskOwnershipInput = {
|
|
158700
|
+
id: Scalars['ID']['input'];
|
|
158701
|
+
organization?: InputMaybe<MercuryUpdateRiskOrganizationFieldInput>;
|
|
158702
|
+
owner?: InputMaybe<MercuryUpdateRiskOwnerFieldInput>;
|
|
158703
|
+
};
|
|
158292
158704
|
export declare type MercuryUpdateRiskPayload = Payload & {
|
|
158293
158705
|
__typename?: 'MercuryUpdateRiskPayload';
|
|
158294
158706
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -158850,6 +159262,7 @@ export declare type Mutation = {
|
|
|
158850
159262
|
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
|
|
158851
159263
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
158852
159264
|
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
159265
|
+
agentWorkspace_createDraftedRoutingTableEntriesV2?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
158853
159266
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
158854
159267
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
158855
159268
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
@@ -159163,6 +159576,7 @@ export declare type Mutation = {
|
|
|
159163
159576
|
confluence_patchSpaceSettings?: Maybe<ConfluencePatchSpaceSettingsPayload>;
|
|
159164
159577
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
159165
159578
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
159579
|
+
confluence_recordCompanionTipScrollSignal?: Maybe<ConfluenceRecordCompanionTipScrollSignalPayload>;
|
|
159166
159580
|
confluence_refreshSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
|
|
159167
159581
|
confluence_removeContentApprovalReviewer?: Maybe<ConfluenceContentApprovalPayload>;
|
|
159168
159582
|
confluence_removeEnforcedReviewer?: Maybe<ConfluenceContentApprovalsSpaceSettingConfigPayload>;
|
|
@@ -159337,8 +159751,34 @@ export declare type Mutation = {
|
|
|
159337
159751
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
159338
159752
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
159339
159753
|
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
159754
|
+
csm_acceptEscalation?: Maybe<CustomerServiceAcceptEscalationPayload>;
|
|
159755
|
+
csm_addEntitlement?: Maybe<CustomerServiceEntitlementAddPayload>;
|
|
159756
|
+
csm_createCustomDetail?: Maybe<CustomerServiceCustomDetailCreatePayload>;
|
|
159757
|
+
csm_createNote?: Maybe<CustomerServiceNoteCreatePayload>;
|
|
159758
|
+
csm_createProduct?: Maybe<CustomerServiceProductCreatePayload>;
|
|
159759
|
+
csm_createTemplateForm?: Maybe<CustomerServiceTemplateFormCreatePayload>;
|
|
159760
|
+
csm_deleteCustomDetail?: Maybe<CustomerServiceCustomDetailDeletePayload>;
|
|
159761
|
+
csm_deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
|
|
159762
|
+
csm_deleteProduct?: Maybe<CustomerServiceProductDeletePayload>;
|
|
159763
|
+
csm_deleteTemplateForm?: Maybe<CustomerServiceTemplateFormDeletePayload>;
|
|
159764
|
+
csm_escalateWorkItem?: Maybe<CustomerServiceEscalateWorkItemPayload>;
|
|
159765
|
+
csm_removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
159766
|
+
csm_returnEscalation?: Maybe<CustomerServiceReturnEscalationPayload>;
|
|
159767
|
+
csm_updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
159768
|
+
csm_updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
159769
|
+
csm_updateCustomDetailContextConfigs?: Maybe<CustomerServiceUpdateCustomDetailContextConfigsPayload>;
|
|
159770
|
+
csm_updateCustomDetailPermissions?: Maybe<CustomerServiceCustomDetailPermissionsUpdatePayload>;
|
|
159771
|
+
csm_updateCustomDetailValue?: Maybe<CustomerServiceUpdateCustomDetailValuePayload>;
|
|
159340
159772
|
csm_updateCustomerName?: Maybe<CustomerServiceUpdateCustomerNamePayload>;
|
|
159773
|
+
csm_updateLiveChatAgentActivities?: Maybe<CustomerServiceUpdateLiveChatAgentActivitiesPayload>;
|
|
159341
159774
|
csm_updateLiveChatSettings?: Maybe<CustomerServiceLiveChatSettingsPayload>;
|
|
159775
|
+
csm_updateNote?: Maybe<CustomerServiceNoteUpdatePayload>;
|
|
159776
|
+
csm_updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
159777
|
+
csm_updateParticipants?: Maybe<CustomerServiceRequestUpdateParticipantsPayload>;
|
|
159778
|
+
csm_updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
|
|
159779
|
+
csm_updateStatusMapping?: Maybe<CustomerServiceStatusMappingUpdatePayload>;
|
|
159780
|
+
csm_updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
|
|
159781
|
+
csm_upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
|
|
159342
159782
|
csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
|
|
159343
159783
|
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
159344
159784
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
@@ -159874,6 +160314,7 @@ export declare type Mutation = {
|
|
|
159874
160314
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
159875
160315
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
159876
160316
|
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
160317
|
+
kitsune_removeFieldValue?: Maybe<KitsuneDeletedRecord>;
|
|
159877
160318
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
159878
160319
|
kitsune_removeOrganization?: Maybe<KitsuneDeletedRecord>;
|
|
159879
160320
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -160634,6 +161075,9 @@ export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
|
|
|
160634
161075
|
export declare type MutationAgentWorkspace_CreateDraftedRoutingTableEntriesArgs = {
|
|
160635
161076
|
input: AgentWorkspaceCreateDraftedRoutingTableEntriesInput;
|
|
160636
161077
|
};
|
|
161078
|
+
export declare type MutationAgentWorkspace_CreateDraftedRoutingTableEntriesV2Args = {
|
|
161079
|
+
input: AgentWorkspaceCreateDraftedRoutingTableEntriesV2Input;
|
|
161080
|
+
};
|
|
160637
161081
|
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
160638
161082
|
input: AgentWorkspaceCreateScheduleInput;
|
|
160639
161083
|
};
|
|
@@ -161801,6 +162245,10 @@ export declare type MutationConfluence_PublishDraftWithApprovalReviewTransferArg
|
|
|
161801
162245
|
contentId: Scalars['ID']['input'];
|
|
161802
162246
|
contentStatus: GraphQlContentStatus;
|
|
161803
162247
|
};
|
|
162248
|
+
export declare type MutationConfluence_RecordCompanionTipScrollSignalArgs = {
|
|
162249
|
+
cloudId: Scalars['ID']['input'];
|
|
162250
|
+
pageId: Scalars['ID']['input'];
|
|
162251
|
+
};
|
|
161804
162252
|
export declare type MutationConfluence_RefreshSmartSpaceOverviewArgs = {
|
|
161805
162253
|
cloudId: Scalars['ID']['input'];
|
|
161806
162254
|
input: ConfluenceRefreshSmartSpaceOverviewInput;
|
|
@@ -162454,14 +162902,129 @@ export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
|
162454
162902
|
input: CsmAiWidgetUpdateInput;
|
|
162455
162903
|
widgetId: Scalars['ID']['input'];
|
|
162456
162904
|
};
|
|
162905
|
+
export declare type MutationCsm_AcceptEscalationArgs = {
|
|
162906
|
+
cloudId: Scalars['ID']['input'];
|
|
162907
|
+
input: CustomerServiceAcceptEscalationInput;
|
|
162908
|
+
projectId: Scalars['ID']['input'];
|
|
162909
|
+
workItemId: Scalars['ID']['input'];
|
|
162910
|
+
};
|
|
162911
|
+
export declare type MutationCsm_AddEntitlementArgs = {
|
|
162912
|
+
cloudId: Scalars['ID']['input'];
|
|
162913
|
+
input: CustomerServiceEntitlementAddInput;
|
|
162914
|
+
};
|
|
162915
|
+
export declare type MutationCsm_CreateCustomDetailArgs = {
|
|
162916
|
+
cloudId: Scalars['ID']['input'];
|
|
162917
|
+
input: CustomerServiceCustomDetailCreateInput;
|
|
162918
|
+
};
|
|
162919
|
+
export declare type MutationCsm_CreateNoteArgs = {
|
|
162920
|
+
cloudId: Scalars['ID']['input'];
|
|
162921
|
+
input?: InputMaybe<CustomerServiceNoteCreateInput>;
|
|
162922
|
+
};
|
|
162923
|
+
export declare type MutationCsm_CreateProductArgs = {
|
|
162924
|
+
cloudId: Scalars['ID']['input'];
|
|
162925
|
+
input: CustomerServiceProductCreateInput;
|
|
162926
|
+
};
|
|
162927
|
+
export declare type MutationCsm_CreateTemplateFormArgs = {
|
|
162928
|
+
cloudId: Scalars['ID']['input'];
|
|
162929
|
+
input: CustomerServiceTemplateFormCreateInput;
|
|
162930
|
+
};
|
|
162931
|
+
export declare type MutationCsm_DeleteCustomDetailArgs = {
|
|
162932
|
+
cloudId: Scalars['ID']['input'];
|
|
162933
|
+
input: CustomerServiceCustomDetailDeleteInput;
|
|
162934
|
+
};
|
|
162935
|
+
export declare type MutationCsm_DeleteNoteArgs = {
|
|
162936
|
+
cloudId: Scalars['ID']['input'];
|
|
162937
|
+
input?: InputMaybe<CustomerServiceNoteDeleteInput>;
|
|
162938
|
+
};
|
|
162939
|
+
export declare type MutationCsm_DeleteProductArgs = {
|
|
162940
|
+
cloudId: Scalars['ID']['input'];
|
|
162941
|
+
input: CustomerServiceProductDeleteInput;
|
|
162942
|
+
};
|
|
162943
|
+
export declare type MutationCsm_DeleteTemplateFormArgs = {
|
|
162944
|
+
cloudId: Scalars['ID']['input'];
|
|
162945
|
+
input: CustomerServiceTemplateFormDeleteInput;
|
|
162946
|
+
};
|
|
162947
|
+
export declare type MutationCsm_EscalateWorkItemArgs = {
|
|
162948
|
+
cloudId: Scalars['ID']['input'];
|
|
162949
|
+
input: CustomerServiceEscalateWorkItemInput;
|
|
162950
|
+
projectId: Scalars['ID']['input'];
|
|
162951
|
+
workItemId: Scalars['ID']['input'];
|
|
162952
|
+
};
|
|
162953
|
+
export declare type MutationCsm_RemoveEntitlementArgs = {
|
|
162954
|
+
cloudId: Scalars['ID']['input'];
|
|
162955
|
+
input: CustomerServiceEntitlementRemoveInput;
|
|
162956
|
+
};
|
|
162957
|
+
export declare type MutationCsm_ReturnEscalationArgs = {
|
|
162958
|
+
cloudId: Scalars['ID']['input'];
|
|
162959
|
+
input: CustomerServiceReturnEscalationInput;
|
|
162960
|
+
projectId: Scalars['ID']['input'];
|
|
162961
|
+
workItemId: Scalars['ID']['input'];
|
|
162962
|
+
};
|
|
162963
|
+
export declare type MutationCsm_UpdateCustomDetailArgs = {
|
|
162964
|
+
cloudId: Scalars['ID']['input'];
|
|
162965
|
+
input: CustomerServiceCustomDetailUpdateInput;
|
|
162966
|
+
};
|
|
162967
|
+
export declare type MutationCsm_UpdateCustomDetailConfigArgs = {
|
|
162968
|
+
cloudId: Scalars['ID']['input'];
|
|
162969
|
+
input: CustomerServiceCustomDetailConfigMetadataUpdateInput;
|
|
162970
|
+
};
|
|
162971
|
+
export declare type MutationCsm_UpdateCustomDetailContextConfigsArgs = {
|
|
162972
|
+
cloudId: Scalars['ID']['input'];
|
|
162973
|
+
input: Array<CustomerServiceCustomDetailContextInput>;
|
|
162974
|
+
};
|
|
162975
|
+
export declare type MutationCsm_UpdateCustomDetailPermissionsArgs = {
|
|
162976
|
+
cloudId: Scalars['ID']['input'];
|
|
162977
|
+
input: CustomerServiceCustomDetailPermissionsUpdateInput;
|
|
162978
|
+
};
|
|
162979
|
+
export declare type MutationCsm_UpdateCustomDetailValueArgs = {
|
|
162980
|
+
cloudId: Scalars['ID']['input'];
|
|
162981
|
+
input: CustomerServiceUpdateCustomDetailValueInput;
|
|
162982
|
+
};
|
|
162457
162983
|
export declare type MutationCsm_UpdateCustomerNameArgs = {
|
|
162458
162984
|
cloudId: Scalars['ID']['input'];
|
|
162459
162985
|
input: CustomerServiceUpdateCustomerNameInput;
|
|
162460
162986
|
};
|
|
162987
|
+
export declare type MutationCsm_UpdateLiveChatAgentActivitiesArgs = {
|
|
162988
|
+
cloudId: Scalars['ID']['input'];
|
|
162989
|
+
input: CustomerServiceUpdateLiveChatAgentActivitiesInput;
|
|
162990
|
+
};
|
|
162461
162991
|
export declare type MutationCsm_UpdateLiveChatSettingsArgs = {
|
|
162462
162992
|
cloudId: Scalars['ID']['input'];
|
|
162463
162993
|
input: CustomerServiceLiveChatSettingsInput;
|
|
162464
162994
|
};
|
|
162995
|
+
export declare type MutationCsm_UpdateNoteArgs = {
|
|
162996
|
+
cloudId: Scalars['ID']['input'];
|
|
162997
|
+
input?: InputMaybe<CustomerServiceNoteUpdateInput>;
|
|
162998
|
+
};
|
|
162999
|
+
export declare type MutationCsm_UpdateOrganizationAttributeValueArgs = {
|
|
163000
|
+
cloudId: Scalars['ID']['input'];
|
|
163001
|
+
input: CustomerServiceOrganizationUpdateAttributeInput;
|
|
163002
|
+
};
|
|
163003
|
+
export declare type MutationCsm_UpdateParticipantsArgs = {
|
|
163004
|
+
cloudId: Scalars['ID']['input'];
|
|
163005
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
163006
|
+
input: CustomerServiceUpdateRequestParticipantInput;
|
|
163007
|
+
workItemId: Scalars['ID']['input'];
|
|
163008
|
+
};
|
|
163009
|
+
export declare type MutationCsm_UpdateProductArgs = {
|
|
163010
|
+
cloudId: Scalars['ID']['input'];
|
|
163011
|
+
input: CustomerServiceProductUpdateInput;
|
|
163012
|
+
};
|
|
163013
|
+
export declare type MutationCsm_UpdateStatusMappingArgs = {
|
|
163014
|
+
cloudId: Scalars['ID']['input'];
|
|
163015
|
+
input: CustomerServiceStatusMappingUpdateInput;
|
|
163016
|
+
};
|
|
163017
|
+
export declare type MutationCsm_UpdateTemplateFormArgs = {
|
|
163018
|
+
cloudId: Scalars['ID']['input'];
|
|
163019
|
+
helpCenterId: Scalars['ID']['input'];
|
|
163020
|
+
input: CustomerServiceTemplateFormUpdateInput;
|
|
163021
|
+
templateFormId: Scalars['ID']['input'];
|
|
163022
|
+
};
|
|
163023
|
+
export declare type MutationCsm_UpsertBrandingArgs = {
|
|
163024
|
+
cloudId: Scalars['ID']['input'];
|
|
163025
|
+
helpCenterId: Scalars['ID']['input'];
|
|
163026
|
+
input: CustomerServiceBrandingUpsertInput;
|
|
163027
|
+
};
|
|
162465
163028
|
export declare type MutationCsm_UpsertEmailChannelConfigurationArgs = {
|
|
162466
163029
|
helpCenterAri: Scalars['ID']['input'];
|
|
162467
163030
|
input: CustomerServiceEmailChannelConfigUpsertInput;
|
|
@@ -164164,6 +164727,10 @@ export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
|
164164
164727
|
export declare type MutationKitsune_RemoveFieldArgs = {
|
|
164165
164728
|
id: Scalars['ID']['input'];
|
|
164166
164729
|
};
|
|
164730
|
+
export declare type MutationKitsune_RemoveFieldValueArgs = {
|
|
164731
|
+
fieldValueId: Scalars['ID']['input'];
|
|
164732
|
+
workspaceAri: Scalars['ID']['input'];
|
|
164733
|
+
};
|
|
164167
164734
|
export declare type MutationKitsune_RemoveInsightArgs = {
|
|
164168
164735
|
id: Scalars['ID']['input'];
|
|
164169
164736
|
};
|
|
@@ -168203,6 +168770,72 @@ export declare type ProactiveAiEchoResultsConnection = {
|
|
|
168203
168770
|
pageInfo: PageInfo;
|
|
168204
168771
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
168205
168772
|
};
|
|
168773
|
+
export declare type ProactiveAiRovoInsightsDataResponse = {
|
|
168774
|
+
__typename?: 'ProactiveAiRovoInsightsDataResponse';
|
|
168775
|
+
count: Scalars['Int']['output'];
|
|
168776
|
+
generatedAt: Scalars['String']['output'];
|
|
168777
|
+
insightGroups?: Maybe<Array<ProactiveAiRovoInsightsInsightGroup>>;
|
|
168778
|
+
schemaVersion: Scalars['Int']['output'];
|
|
168779
|
+
summary: Scalars['String']['output'];
|
|
168780
|
+
};
|
|
168781
|
+
export declare type ProactiveAiRovoInsightsDebugInfo = {
|
|
168782
|
+
__typename?: 'ProactiveAiRovoInsightsDebugInfo';
|
|
168783
|
+
attempts?: Maybe<Scalars['Int']['output']>;
|
|
168784
|
+
durationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
168785
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
168786
|
+
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
168787
|
+
llmResponse?: Maybe<Scalars['String']['output']>;
|
|
168788
|
+
prompt?: Maybe<Scalars['String']['output']>;
|
|
168789
|
+
};
|
|
168790
|
+
export declare type ProactiveAiRovoInsightsInsight = {
|
|
168791
|
+
__typename?: 'ProactiveAiRovoInsightsInsight';
|
|
168792
|
+
detailsAdf: Scalars['String']['output'];
|
|
168793
|
+
followUps?: Maybe<Array<Scalars['String']['output']>>;
|
|
168794
|
+
overview: Scalars['String']['output'];
|
|
168795
|
+
people?: Maybe<Array<ProactiveAiRovoInsightsPerson>>;
|
|
168796
|
+
sources: Array<Scalars['String']['output']>;
|
|
168797
|
+
thinking: Scalars['String']['output'];
|
|
168798
|
+
title: Scalars['String']['output'];
|
|
168799
|
+
urls?: Maybe<Array<Scalars['String']['output']>>;
|
|
168800
|
+
};
|
|
168801
|
+
export declare type ProactiveAiRovoInsightsInsightConfig = {
|
|
168802
|
+
maxAttempts?: InputMaybe<Scalars['Int']['input']>;
|
|
168803
|
+
override?: InputMaybe<Scalars['String']['input']>;
|
|
168804
|
+
strategy?: InputMaybe<ProactiveAiRovoInsightsPromptStrategy>;
|
|
168805
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
168806
|
+
};
|
|
168807
|
+
export declare type ProactiveAiRovoInsightsInsightGroup = {
|
|
168808
|
+
__typename?: 'ProactiveAiRovoInsightsInsightGroup';
|
|
168809
|
+
color: Scalars['String']['output'];
|
|
168810
|
+
count: Scalars['Int']['output'];
|
|
168811
|
+
debugInfo?: Maybe<ProactiveAiRovoInsightsDebugInfo>;
|
|
168812
|
+
icon: Scalars['String']['output'];
|
|
168813
|
+
insights: Array<ProactiveAiRovoInsightsInsight>;
|
|
168814
|
+
title: Scalars['String']['output'];
|
|
168815
|
+
type: ProactiveAiRovoInsightsInsightType;
|
|
168816
|
+
};
|
|
168817
|
+
export declare enum ProactiveAiRovoInsightsInsightType {
|
|
168818
|
+
CompanyInsights = "COMPANY_INSIGHTS",
|
|
168819
|
+
EmergingWithYourTeam = "EMERGING_WITH_YOUR_TEAM",
|
|
168820
|
+
FollowUpInsights = "FOLLOW_UP_INSIGHTS",
|
|
168821
|
+
MeetingInsights = "MEETING_INSIGHTS",
|
|
168822
|
+
RecognitionInsights = "RECOGNITION_INSIGHTS",
|
|
168823
|
+
YourTrendingWork = "YOUR_TRENDING_WORK"
|
|
168824
|
+
}
|
|
168825
|
+
export declare type ProactiveAiRovoInsightsPerson = {
|
|
168826
|
+
__typename?: 'ProactiveAiRovoInsightsPerson';
|
|
168827
|
+
aaid: Scalars['String']['output'];
|
|
168828
|
+
avatarUrl: Scalars['String']['output'];
|
|
168829
|
+
name: Scalars['String']['output'];
|
|
168830
|
+
};
|
|
168831
|
+
export declare type ProactiveAiRovoInsightsPromptConfig = {
|
|
168832
|
+
insightConfig: ProactiveAiRovoInsightsInsightConfig;
|
|
168833
|
+
insightType: ProactiveAiRovoInsightsInsightType;
|
|
168834
|
+
};
|
|
168835
|
+
export declare enum ProactiveAiRovoInsightsPromptStrategy {
|
|
168836
|
+
Evaluate = "EVALUATE",
|
|
168837
|
+
Skip = "SKIP"
|
|
168838
|
+
}
|
|
168206
168839
|
export declare type ProactiveAiStratusTestInsightsMinion = {
|
|
168207
168840
|
__typename?: 'ProactiveAiStratusTestInsightsMinion';
|
|
168208
168841
|
name: Scalars['String']['output'];
|
|
@@ -168766,12 +169399,15 @@ export declare type Query = {
|
|
|
168766
169399
|
aiManagedObject_aiManagedObject?: Maybe<AiManagedObject>;
|
|
168767
169400
|
aiManagedObject_aiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
168768
169401
|
aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
|
|
169402
|
+
aiops_entityDetail?: Maybe<AiOpsEntityDetailResult>;
|
|
168769
169403
|
aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
|
|
168770
169404
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
168771
169405
|
aiops_incidentSuggestionAsync?: Maybe<AiOpsIncidentSuggestionAsyncResult>;
|
|
168772
169406
|
aiops_incidentTimelineIcc?: Maybe<AiOpsIncidentTimelineIccResponse>;
|
|
168773
169407
|
aiops_investigationById?: Maybe<AiOpsInvestigationQueryResult>;
|
|
168774
169408
|
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
169409
|
+
aiops_serviceActivityTimeline?: Maybe<AiOpsServiceActivityTimelineResult>;
|
|
169410
|
+
aiplanner_getAllPlanOwners?: Maybe<Array<AiPlannerPlanOwner>>;
|
|
168775
169411
|
aiplanner_getAllPlans?: Maybe<AiPlannerPlanConnection>;
|
|
168776
169412
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
168777
169413
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
@@ -168791,6 +169427,7 @@ export declare type Query = {
|
|
|
168791
169427
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
168792
169428
|
appLogs?: Maybe<AppLogConnection>;
|
|
168793
169429
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
169430
|
+
appServices?: Maybe<AppServicesConnection>;
|
|
168794
169431
|
appStorage_admin?: Maybe<AppStorageAdmin>;
|
|
168795
169432
|
appStorage_kvsAdmin?: Maybe<AppStorageKvsAdminQuery>;
|
|
168796
169433
|
appStorage_lifecycle?: Maybe<AppStorageLifecycleQuery>;
|
|
@@ -169270,12 +169907,26 @@ export declare type Query = {
|
|
|
169270
169907
|
csmAi_getWidgetsWithCsmAiHub?: Maybe<CsmAiHubWithWidgetsResult>;
|
|
169271
169908
|
csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
|
|
169272
169909
|
csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
|
|
169910
|
+
csm_aiSuggestions?: Maybe<CustomerServiceAiSuggestionsQueryResult>;
|
|
169911
|
+
csm_brandingByEntityType?: Maybe<CustomerServiceBrandingQueryResult>;
|
|
169912
|
+
csm_brandingMediaConfigByEntityType?: Maybe<CustomerServiceBrandingMediaConfigQueryResult>;
|
|
169913
|
+
csm_customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
|
|
169273
169914
|
csm_emailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigQueryResult>;
|
|
169915
|
+
csm_entitlementById?: Maybe<CustomerServiceEntitlementQueryResult>;
|
|
169916
|
+
csm_escalatableJiraProjects?: Maybe<CustomerServiceEscalatableJiraProjectsConnection>;
|
|
169917
|
+
csm_externalStatusesByHelpCenterId?: Maybe<CustomerServiceExternalStatusesQueryResult>;
|
|
169274
169918
|
csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
|
|
169919
|
+
csm_individualByAccountId?: Maybe<CustomerServiceIndividualQueryResult>;
|
|
169275
169920
|
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
169276
169921
|
csm_liveChatAgentByWorkerIdentity?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
169277
169922
|
csm_liveChatAgents?: Maybe<CustomerServiceLiveChatAgentConnection>;
|
|
169278
169923
|
csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
|
|
169924
|
+
csm_organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
|
|
169925
|
+
csm_productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
169926
|
+
csm_requestByIssueKey?: Maybe<CustomerServiceRequestByKeyResult>;
|
|
169927
|
+
csm_statusMapping?: Maybe<CustomerServiceStatusMappingQueryResult>;
|
|
169928
|
+
csm_templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
169929
|
+
csm_templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
169279
169930
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
169280
169931
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
169281
169932
|
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
@@ -169318,6 +169969,7 @@ export declare type Query = {
|
|
|
169318
169969
|
devai_autodevNextUsageCurrentCounts?: Maybe<DevAiAutodevNextCurrentUsageCounts>;
|
|
169319
169970
|
devai_autodevNextUsageTransitionCounts?: Maybe<DevAiAutodevNextTransitionUsageCounts>;
|
|
169320
169971
|
devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
169972
|
+
devai_autodevNextWorkstreamSweepSummary?: Maybe<DevAiAutodevNextWorkstreamSweepSummaryPayload>;
|
|
169321
169973
|
devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
|
|
169322
169974
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
169323
169975
|
devai_checkEntitlements: Scalars['Boolean']['output'];
|
|
@@ -169428,6 +170080,8 @@ export declare type Query = {
|
|
|
169428
170080
|
goals_search?: Maybe<TownsquareGoalConnection>;
|
|
169429
170081
|
graphInference_getJiraEntityContext?: Maybe<GraphInferenceGetJiraEntityContextResponse>;
|
|
169430
170082
|
graphInference_getRelatedRepos?: Maybe<GraphInferenceGetRelatedReposResponse>;
|
|
170083
|
+
graphInference_getRelatedReposV2?: Maybe<GraphInferenceGetRelatedReposV2Response>;
|
|
170084
|
+
graphInference_getRelatedReposV3?: Maybe<GraphInferenceGetRelatedReposV3Response>;
|
|
169431
170085
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
169432
170086
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
169433
170087
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -171750,6 +172404,7 @@ export declare type Query = {
|
|
|
171750
172404
|
postOffice_getMessages?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
171751
172405
|
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
171752
172406
|
proactiveAi_echo?: Maybe<ProactiveAiEchoResponse>;
|
|
172407
|
+
proactiveAi_rovoInsightsData?: Maybe<ProactiveAiRovoInsightsDataResponse>;
|
|
171753
172408
|
proactiveAi_stratusTestInsights?: Maybe<ProactiveAiStratusTestInsightsResponse>;
|
|
171754
172409
|
productListing?: Maybe<ProductListingResult>;
|
|
171755
172410
|
productListings: Array<ProductListingResult>;
|
|
@@ -171949,6 +172604,7 @@ export declare type Query = {
|
|
|
171949
172604
|
stakeholderComms_listSubscribersConnection?: Maybe<StakeholderCommsSubscriberConnection>;
|
|
171950
172605
|
stakeholderComms_searchIdentityGroupsByName?: Maybe<StakeholderCommsIdentityGroupForPageConnection>;
|
|
171951
172606
|
stakeholderComms_subscriptionStats?: Maybe<StakeholderCommsSubscriptionStatsResponse>;
|
|
172607
|
+
stakeholderComms_suggestStatusPage?: Maybe<StakeholderCommsSuggestStatusPageResponse>;
|
|
171952
172608
|
stakeholderComms_testAPIEnterpriseOnly?: Maybe<Scalars['String']['output']>;
|
|
171953
172609
|
stakeholderComms_testAPIFreeOnly?: Maybe<Scalars['String']['output']>;
|
|
171954
172610
|
stakeholderComms_testAPIPremiumPlusOnly?: Maybe<Scalars['String']['output']>;
|
|
@@ -172739,6 +173395,7 @@ export declare type QueryAgentWorkspace_CategorySkillsInProjectArgs = {
|
|
|
172739
173395
|
categoryId: Scalars['ID']['input'];
|
|
172740
173396
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
172741
173397
|
projectId: Scalars['ID']['input'];
|
|
173398
|
+
serviceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
172742
173399
|
skillsQuery?: InputMaybe<Scalars['String']['input']>;
|
|
172743
173400
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
172744
173401
|
};
|
|
@@ -172782,6 +173439,7 @@ export declare type QueryAgentWorkspace_ProjectRoutingHistoryArgs = {
|
|
|
172782
173439
|
endTime: Scalars['DateTime']['input'];
|
|
172783
173440
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
172784
173441
|
projectKey: Scalars['String']['input'];
|
|
173442
|
+
shadowing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
172785
173443
|
startTime: Scalars['DateTime']['input'];
|
|
172786
173444
|
};
|
|
172787
173445
|
export declare type QueryAgentWorkspace_RecommendedAgentsForCoverageGapArgs = {
|
|
@@ -172855,6 +173513,7 @@ export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
|
172855
173513
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
172856
173514
|
limitSkillsToFirstCategories?: InputMaybe<Scalars['Int']['input']>;
|
|
172857
173515
|
projectKey: Scalars['String']['input'];
|
|
173516
|
+
serviceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
172858
173517
|
skillsQuery?: InputMaybe<Scalars['String']['input']>;
|
|
172859
173518
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
172860
173519
|
};
|
|
@@ -172962,6 +173621,11 @@ export declare type QueryAiManagedObject_AiManagedObjectsByReferenceObjectAriArg
|
|
|
172962
173621
|
referenceObjectAri: Scalars['ID']['input'];
|
|
172963
173622
|
status?: InputMaybe<AiManagedObjectStatus>;
|
|
172964
173623
|
};
|
|
173624
|
+
export declare type QueryAiops_EntityDetailArgs = {
|
|
173625
|
+
cloudId: Scalars['ID']['input'];
|
|
173626
|
+
entityId: Scalars['ID']['input'];
|
|
173627
|
+
type: AiOpsActivityEntityType;
|
|
173628
|
+
};
|
|
172965
173629
|
export declare type QueryAiops_IncidentRelatedAlertsArgs = {
|
|
172966
173630
|
cloudId: Scalars['ID']['input'];
|
|
172967
173631
|
filter: AiOpsIncidentRelatedAlertsInput;
|
|
@@ -172988,6 +173652,18 @@ export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
|
|
|
172988
173652
|
entityId: Scalars['ID']['input'];
|
|
172989
173653
|
entityType: AiOpsInvestigationSourceEntityType;
|
|
172990
173654
|
};
|
|
173655
|
+
export declare type QueryAiops_ServiceActivityTimelineArgs = {
|
|
173656
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
173657
|
+
cloudId: Scalars['ID']['input'];
|
|
173658
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
173659
|
+
serviceName: Scalars['String']['input'];
|
|
173660
|
+
windowEnd: Scalars['DateTime']['input'];
|
|
173661
|
+
windowStart: Scalars['DateTime']['input'];
|
|
173662
|
+
};
|
|
173663
|
+
export declare type QueryAiplanner_GetAllPlanOwnersArgs = {
|
|
173664
|
+
cloudId: Scalars['String']['input'];
|
|
173665
|
+
filter?: InputMaybe<GetAllPlanOwnersFilterInput>;
|
|
173666
|
+
};
|
|
172991
173667
|
export declare type QueryAiplanner_GetAllPlansArgs = {
|
|
172992
173668
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
172993
173669
|
cloudId: Scalars['String']['input'];
|
|
@@ -173086,6 +173762,15 @@ export declare type QueryAppLogsWithMetaDataArgs = {
|
|
|
173086
173762
|
query?: InputMaybe<LogQueryInput>;
|
|
173087
173763
|
queryStartTime: Scalars['String']['input'];
|
|
173088
173764
|
};
|
|
173765
|
+
export declare type QueryAppServicesArgs = {
|
|
173766
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
173767
|
+
appId: Scalars['ID']['input'];
|
|
173768
|
+
contextFilter?: InputMaybe<AppContainerServiceContextFilter>;
|
|
173769
|
+
environmentKey: Scalars['String']['input'];
|
|
173770
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
173771
|
+
regions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
173772
|
+
serviceNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
173773
|
+
};
|
|
173089
173774
|
export declare type QueryAppStorage_AdminArgs = {
|
|
173090
173775
|
appId: Scalars['ID']['input'];
|
|
173091
173776
|
};
|
|
@@ -175366,12 +176051,50 @@ export declare type QueryCsmCustomersByIdsArgs = {
|
|
|
175366
176051
|
export declare type QueryCsmOrganizationsByIdsArgs = {
|
|
175367
176052
|
csmOrganizationAris: Array<Scalars['ID']['input']>;
|
|
175368
176053
|
};
|
|
176054
|
+
export declare type QueryCsm_AiSuggestionsArgs = {
|
|
176055
|
+
cloudId: Scalars['ID']['input'];
|
|
176056
|
+
input: CustomerServiceAiSuggestionsInput;
|
|
176057
|
+
};
|
|
176058
|
+
export declare type QueryCsm_BrandingByEntityTypeArgs = {
|
|
176059
|
+
cloudId: Scalars['ID']['input'];
|
|
176060
|
+
entityType: CustomerServiceBrandingEntityType;
|
|
176061
|
+
helpCenterId: Scalars['ID']['input'];
|
|
176062
|
+
};
|
|
176063
|
+
export declare type QueryCsm_BrandingMediaConfigByEntityTypeArgs = {
|
|
176064
|
+
cloudId: Scalars['ID']['input'];
|
|
176065
|
+
entityType: CustomerServiceBrandingEntityType;
|
|
176066
|
+
helpCenterId: Scalars['ID']['input'];
|
|
176067
|
+
};
|
|
176068
|
+
export declare type QueryCsm_CustomDetailsByEntityTypeArgs = {
|
|
176069
|
+
cloudId: Scalars['ID']['input'];
|
|
176070
|
+
customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
|
|
176071
|
+
};
|
|
175369
176072
|
export declare type QueryCsm_EmailChannelConfigurationArgs = {
|
|
175370
176073
|
helpCenterAri: Scalars['ID']['input'];
|
|
175371
176074
|
};
|
|
176075
|
+
export declare type QueryCsm_EntitlementByIdArgs = {
|
|
176076
|
+
cloudId: Scalars['ID']['input'];
|
|
176077
|
+
entitlementId: Scalars['ID']['input'];
|
|
176078
|
+
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
176079
|
+
};
|
|
176080
|
+
export declare type QueryCsm_EscalatableJiraProjectsArgs = {
|
|
176081
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
176082
|
+
cloudId: Scalars['ID']['input'];
|
|
176083
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
176084
|
+
projectId: Scalars['ID']['input'];
|
|
176085
|
+
};
|
|
176086
|
+
export declare type QueryCsm_ExternalStatusesByHelpCenterIdArgs = {
|
|
176087
|
+
cloudId: Scalars['ID']['input'];
|
|
176088
|
+
helpCenterId: Scalars['ID']['input'];
|
|
176089
|
+
};
|
|
175372
176090
|
export declare type QueryCsm_HelpCenterMetadataArgs = {
|
|
175373
176091
|
helpCenterAri: Scalars['ID']['input'];
|
|
175374
176092
|
};
|
|
176093
|
+
export declare type QueryCsm_IndividualByAccountIdArgs = {
|
|
176094
|
+
accountId: Scalars['ID']['input'];
|
|
176095
|
+
cloudId: Scalars['ID']['input'];
|
|
176096
|
+
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
176097
|
+
};
|
|
175375
176098
|
export declare type QueryCsm_LiveChatAgentArgs = {
|
|
175376
176099
|
accountId: Scalars['ID']['input'];
|
|
175377
176100
|
cloudId: Scalars['ID']['input'];
|
|
@@ -175389,6 +176112,39 @@ export declare type QueryCsm_LiveChatAgentsArgs = {
|
|
|
175389
176112
|
export declare type QueryCsm_LiveChatSettingsArgs = {
|
|
175390
176113
|
cloudId: Scalars['ID']['input'];
|
|
175391
176114
|
};
|
|
176115
|
+
export declare type QueryCsm_OrganizationByOrganizationIdArgs = {
|
|
176116
|
+
cloudId: Scalars['ID']['input'];
|
|
176117
|
+
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
176118
|
+
organizationId: Scalars['ID']['input'];
|
|
176119
|
+
};
|
|
176120
|
+
export declare type QueryCsm_ProductConnectionsArgs = {
|
|
176121
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
176122
|
+
cloudId: Scalars['ID']['input'];
|
|
176123
|
+
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
176124
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
176125
|
+
};
|
|
176126
|
+
export declare type QueryCsm_RequestByIssueKeyArgs = {
|
|
176127
|
+
cloudId: Scalars['ID']['input'];
|
|
176128
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
176129
|
+
issueKey: Scalars['String']['input'];
|
|
176130
|
+
};
|
|
176131
|
+
export declare type QueryCsm_StatusMappingArgs = {
|
|
176132
|
+
cloudId: Scalars['ID']['input'];
|
|
176133
|
+
helpCenterId: Scalars['ID']['input'];
|
|
176134
|
+
workflowId: Scalars['String']['input'];
|
|
176135
|
+
};
|
|
176136
|
+
export declare type QueryCsm_TemplateFormByIdArgs = {
|
|
176137
|
+
cloudId: Scalars['ID']['input'];
|
|
176138
|
+
helpCenterId: Scalars['ID']['input'];
|
|
176139
|
+
templateFormId: Scalars['ID']['input'];
|
|
176140
|
+
};
|
|
176141
|
+
export declare type QueryCsm_TemplateFormsArgs = {
|
|
176142
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
176143
|
+
cloudId: Scalars['ID']['input'];
|
|
176144
|
+
filter?: InputMaybe<CustomerServiceTemplateFormFilterInput>;
|
|
176145
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
176146
|
+
helpCenterId: Scalars['ID']['input'];
|
|
176147
|
+
};
|
|
175392
176148
|
export declare type QueryCustomer360_CustomerArgs = {
|
|
175393
176149
|
domain: Scalars['String']['input'];
|
|
175394
176150
|
};
|
|
@@ -175566,6 +176322,10 @@ export declare type QueryDevai_AutodevNextWorkstreamArgs = {
|
|
|
175566
176322
|
cloudId: Scalars['ID']['input'];
|
|
175567
176323
|
workstreamId: Scalars['ID']['input'];
|
|
175568
176324
|
};
|
|
176325
|
+
export declare type QueryDevai_AutodevNextWorkstreamSweepSummaryArgs = {
|
|
176326
|
+
cloudId: Scalars['ID']['input'];
|
|
176327
|
+
workstreamId: Scalars['ID']['input'];
|
|
176328
|
+
};
|
|
175569
176329
|
export declare type QueryDevai_AutodevNextWorkstreamsArgs = {
|
|
175570
176330
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
175571
176331
|
cloudId: Scalars['ID']['input'];
|
|
@@ -175998,6 +176758,12 @@ export declare type QueryGraphInference_GetJiraEntityContextArgs = {
|
|
|
175998
176758
|
export declare type QueryGraphInference_GetRelatedReposArgs = {
|
|
175999
176759
|
input: GraphInferenceGetRelatedReposInput;
|
|
176000
176760
|
};
|
|
176761
|
+
export declare type QueryGraphInference_GetRelatedReposV2Args = {
|
|
176762
|
+
input: GraphInferenceGetRelatedReposInput;
|
|
176763
|
+
};
|
|
176764
|
+
export declare type QueryGraphInference_GetRelatedReposV3Args = {
|
|
176765
|
+
input: GraphInferenceGetRelatedReposV3Input;
|
|
176766
|
+
};
|
|
176001
176767
|
export declare type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
176002
176768
|
contextAri: Scalars['ID']['input'];
|
|
176003
176769
|
};
|
|
@@ -192007,6 +192773,12 @@ export declare type QueryProactiveAi_EchoArgs = {
|
|
|
192007
192773
|
message: Scalars['String']['input'];
|
|
192008
192774
|
pageId: Scalars['ID']['input'];
|
|
192009
192775
|
};
|
|
192776
|
+
export declare type QueryProactiveAi_RovoInsightsDataArgs = {
|
|
192777
|
+
cloudId: Scalars['ID']['input'];
|
|
192778
|
+
debugInfo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192779
|
+
generate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192780
|
+
promptConfig?: InputMaybe<Array<ProactiveAiRovoInsightsPromptConfig>>;
|
|
192781
|
+
};
|
|
192010
192782
|
export declare type QueryProactiveAi_StratusTestInsightsArgs = {
|
|
192011
192783
|
cloudId: Scalars['ID']['input'];
|
|
192012
192784
|
promptConfig?: InputMaybe<ProactiveAiStratusTestInsightsPromptConfig>;
|
|
@@ -192855,6 +193627,10 @@ export declare type QueryStakeholderComms_SubscriptionStatsArgs = {
|
|
|
192855
193627
|
itemId: Scalars['ID']['input'];
|
|
192856
193628
|
type: StakeholderCommsSubscriberItemType;
|
|
192857
193629
|
};
|
|
193630
|
+
export declare type QueryStakeholderComms_SuggestStatusPageArgs = {
|
|
193631
|
+
cloudId: Scalars['String']['input'];
|
|
193632
|
+
incidentKey: Scalars['String']['input'];
|
|
193633
|
+
};
|
|
192858
193634
|
export declare type QueryStakeholderComms_TestApiEnterpriseOnlyArgs = {
|
|
192859
193635
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
192860
193636
|
id: Scalars['String']['input'];
|
|
@@ -193059,6 +193835,7 @@ export declare type QueryTenantContextsArgs = {
|
|
|
193059
193835
|
hostNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
193060
193836
|
};
|
|
193061
193837
|
export declare type QueryTimeseriesCountArgs = {
|
|
193838
|
+
actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
|
|
193062
193839
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
193063
193840
|
eventName: Array<AnalyticsEventName>;
|
|
193064
193841
|
granularity: AnalyticsTimeseriesGranularity;
|
|
@@ -193067,6 +193844,7 @@ export declare type QueryTimeseriesCountArgs = {
|
|
|
193067
193844
|
timezone: Scalars['String']['input'];
|
|
193068
193845
|
};
|
|
193069
193846
|
export declare type QueryTimeseriesPageBlogCountArgs = {
|
|
193847
|
+
actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
|
|
193070
193848
|
contentAction: ContentAction;
|
|
193071
193849
|
contentType: AnalyticsContentType;
|
|
193072
193850
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -195661,6 +196439,9 @@ export declare enum Scope {
|
|
|
195661
196439
|
JqlValidate = "JQL_VALIDATE",
|
|
195662
196440
|
LabelRead = "LABEL_READ",
|
|
195663
196441
|
LicenseRead = "LICENSE_READ",
|
|
196442
|
+
LoomDelete = "LOOM_DELETE",
|
|
196443
|
+
LoomRead = "LOOM_READ",
|
|
196444
|
+
LoomWrite = "LOOM_WRITE",
|
|
195664
196445
|
ManageApp = "MANAGE_APP",
|
|
195665
196446
|
ManageAppInstallation = "MANAGE_APP_INSTALLATION",
|
|
195666
196447
|
ManageDirectory = "MANAGE_DIRECTORY",
|
|
@@ -220368,6 +221149,35 @@ export declare enum StakeholderCommsSubscriptionType {
|
|
|
220368
221149
|
Sms = "SMS",
|
|
220369
221150
|
Webhook = "WEBHOOK"
|
|
220370
221151
|
}
|
|
221152
|
+
export declare type StakeholderCommsSuggestStatusPageResponse = {
|
|
221153
|
+
__typename?: 'StakeholderCommsSuggestStatusPageResponse';
|
|
221154
|
+
alreadyLinkedPage?: Maybe<StakeholderCommsSuggestedPage>;
|
|
221155
|
+
suggestedPrivatePage?: Maybe<StakeholderCommsSuggestedPage>;
|
|
221156
|
+
suggestedPublicPage?: Maybe<StakeholderCommsSuggestedPage>;
|
|
221157
|
+
suppressed: Scalars['Boolean']['output'];
|
|
221158
|
+
suppressionReason?: Maybe<StakeholderCommsSuggestionSuppressionReason>;
|
|
221159
|
+
};
|
|
221160
|
+
export declare type StakeholderCommsSuggestedPage = {
|
|
221161
|
+
__typename?: 'StakeholderCommsSuggestedPage';
|
|
221162
|
+
confidence?: Maybe<StakeholderCommsSuggestionConfidence>;
|
|
221163
|
+
pageId: Scalars['String']['output'];
|
|
221164
|
+
pageName?: Maybe<Scalars['String']['output']>;
|
|
221165
|
+
pageType?: Maybe<StakeholderCommsPageType>;
|
|
221166
|
+
pageUrl?: Maybe<Scalars['String']['output']>;
|
|
221167
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
221168
|
+
score: Scalars['Float']['output'];
|
|
221169
|
+
};
|
|
221170
|
+
export declare enum StakeholderCommsSuggestionConfidence {
|
|
221171
|
+
High = "HIGH",
|
|
221172
|
+
Medium = "MEDIUM"
|
|
221173
|
+
}
|
|
221174
|
+
export declare enum StakeholderCommsSuggestionSuppressionReason {
|
|
221175
|
+
AllPagesIneligible = "ALL_PAGES_INELIGIBLE",
|
|
221176
|
+
BelowThreshold = "BELOW_THRESHOLD",
|
|
221177
|
+
EngineError = "ENGINE_ERROR",
|
|
221178
|
+
FeatureDisabled = "FEATURE_DISABLED",
|
|
221179
|
+
NoPagesConfigured = "NO_PAGES_CONFIGURED"
|
|
221180
|
+
}
|
|
220371
221181
|
export declare type StakeholderCommsTransformerRecord = {
|
|
220372
221182
|
__typename?: 'StakeholderCommsTransformerRecord';
|
|
220373
221183
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -220704,6 +221514,7 @@ export declare type Subscription = {
|
|
|
220704
221514
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
220705
221515
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
220706
221516
|
convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
|
|
221517
|
+
convoai_onAgentSessionUserInput?: Maybe<ConvoAiConversationMessage>;
|
|
220707
221518
|
convoai_onSessionUpdateByScopeId?: Maybe<ConvoAiAgentSessionUpdatePayload>;
|
|
220708
221519
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
220709
221520
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
@@ -220762,11 +221573,16 @@ export declare type SubscriptionConvoai_OnAgentSessionCreateArgs = {
|
|
|
220762
221573
|
export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
220763
221574
|
cloudId: Scalars['ID']['input'];
|
|
220764
221575
|
conversationId: Scalars['ID']['input'];
|
|
221576
|
+
excludeActionExecutionMessages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
220765
221577
|
};
|
|
220766
221578
|
export declare type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
220767
221579
|
cloudId: Scalars['ID']['input'];
|
|
220768
221580
|
projectIds: Array<Scalars['String']['input']>;
|
|
220769
221581
|
};
|
|
221582
|
+
export declare type SubscriptionConvoai_OnAgentSessionUserInputArgs = {
|
|
221583
|
+
cloudId: Scalars['ID']['input'];
|
|
221584
|
+
conversationId: Scalars['ID']['input'];
|
|
221585
|
+
};
|
|
220770
221586
|
export declare type SubscriptionConvoai_OnSessionUpdateByScopeIdArgs = {
|
|
220771
221587
|
cloudId: Scalars['ID']['input'];
|
|
220772
221588
|
scopeId: Scalars['String']['input'];
|
|
@@ -227465,6 +228281,7 @@ export declare type TrelloAtlassianSite = {
|
|
|
227465
228281
|
};
|
|
227466
228282
|
export declare type TrelloAttachment = Node & {
|
|
227467
228283
|
__typename?: 'TrelloAttachment';
|
|
228284
|
+
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
227468
228285
|
bytes?: Maybe<Scalars['Float']['output']>;
|
|
227469
228286
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
227470
228287
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -227748,6 +228565,7 @@ export declare type TrelloBoardAttachmentsLimits = {
|
|
|
227748
228565
|
};
|
|
227749
228566
|
export declare type TrelloBoardBackground = {
|
|
227750
228567
|
__typename?: 'TrelloBoardBackground';
|
|
228568
|
+
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
227751
228569
|
bottomColor?: Maybe<Scalars['String']['output']>;
|
|
227752
228570
|
brightness?: Maybe<Scalars['String']['output']>;
|
|
227753
228571
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -229434,6 +230252,24 @@ export declare type TrelloDisableCardFrontCompleteTogglePayload = Payload & {
|
|
|
229434
230252
|
errors?: Maybe<Array<MutationError>>;
|
|
229435
230253
|
success: Scalars['Boolean']['output'];
|
|
229436
230254
|
};
|
|
230255
|
+
export declare type TrelloEcho = {
|
|
230256
|
+
__typename?: 'TrelloEcho';
|
|
230257
|
+
contents?: Maybe<Scalars['String']['output']>;
|
|
230258
|
+
};
|
|
230259
|
+
export declare type TrelloEchoInput = {
|
|
230260
|
+
contents: Scalars['String']['input'];
|
|
230261
|
+
};
|
|
230262
|
+
export declare type TrelloEchoPayload = Payload & {
|
|
230263
|
+
__typename?: 'TrelloEchoPayload';
|
|
230264
|
+
echo?: Maybe<TrelloEcho>;
|
|
230265
|
+
errors?: Maybe<Array<MutationError>>;
|
|
230266
|
+
success: Scalars['Boolean']['output'];
|
|
230267
|
+
};
|
|
230268
|
+
export declare type TrelloEchoUpdated = {
|
|
230269
|
+
__typename?: 'TrelloEchoUpdated';
|
|
230270
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
230271
|
+
contents?: Maybe<Scalars['String']['output']>;
|
|
230272
|
+
};
|
|
229437
230273
|
export declare type TrelloEditPlannerCalendarEventInput = {
|
|
229438
230274
|
event: TrelloEditPlannerCalendarEventOptions;
|
|
229439
230275
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -229488,6 +230324,10 @@ export declare type TrelloEndVoiceCaptureSessionPayload = Payload & {
|
|
|
229488
230324
|
errors?: Maybe<Array<MutationError>>;
|
|
229489
230325
|
success: Scalars['Boolean']['output'];
|
|
229490
230326
|
};
|
|
230327
|
+
export declare type TrelloEnqueueProposePlannerEventsJobInput = {
|
|
230328
|
+
cardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
230329
|
+
timezoneOffsetHours: Scalars['Float']['input'];
|
|
230330
|
+
};
|
|
229491
230331
|
export declare type TrelloEnterprise = Node & {
|
|
229492
230332
|
__typename?: 'TrelloEnterprise';
|
|
229493
230333
|
admins?: Maybe<TrelloMemberConnection>;
|
|
@@ -229806,6 +230646,15 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
229806
230646
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
229807
230647
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
229808
230648
|
};
|
|
230649
|
+
export declare type TrelloInitializeMemberAiPreferenceInput = {
|
|
230650
|
+
userId: Scalars['ID']['input'];
|
|
230651
|
+
};
|
|
230652
|
+
export declare type TrelloInitializeMemberAiPreferencePayload = Payload & {
|
|
230653
|
+
__typename?: 'TrelloInitializeMemberAiPreferencePayload';
|
|
230654
|
+
errors?: Maybe<Array<MutationError>>;
|
|
230655
|
+
member?: Maybe<TrelloMember>;
|
|
230656
|
+
success: Scalars['Boolean']['output'];
|
|
230657
|
+
};
|
|
229809
230658
|
export declare type TrelloInitializeVoiceCaptureSessionInput = {
|
|
229810
230659
|
boardId: Scalars['ID']['input'];
|
|
229811
230660
|
isAudio?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -229817,6 +230666,15 @@ export declare type TrelloInitializeVoiceCaptureSessionPayload = Payload & {
|
|
|
229817
230666
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
229818
230667
|
success: Scalars['Boolean']['output'];
|
|
229819
230668
|
};
|
|
230669
|
+
export declare type TrelloJob = {
|
|
230670
|
+
errors?: Maybe<Array<TrelloJobError>>;
|
|
230671
|
+
id: Scalars['ID']['output'];
|
|
230672
|
+
};
|
|
230673
|
+
export declare type TrelloJobError = {
|
|
230674
|
+
__typename?: 'TrelloJobError';
|
|
230675
|
+
code: Scalars['String']['output'];
|
|
230676
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
230677
|
+
};
|
|
229820
230678
|
export declare type TrelloJwmWorkspaceLink = {
|
|
229821
230679
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
229822
230680
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -230478,6 +231336,7 @@ export declare type TrelloMutationApi = {
|
|
|
230478
231336
|
createChecklist?: Maybe<TrelloCreateChecklistPayload>;
|
|
230479
231337
|
createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
|
|
230480
231338
|
createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
|
|
231339
|
+
createEcho?: Maybe<TrelloEchoPayload>;
|
|
230481
231340
|
createList?: Maybe<TrelloCreateListPayload>;
|
|
230482
231341
|
createMemberAiRule?: Maybe<TrelloCreateMemberAiRulePayload>;
|
|
230483
231342
|
createMemberFromAa?: Maybe<TrelloCreateMemberFromAaPayload>;
|
|
@@ -230499,12 +231358,14 @@ export declare type TrelloMutationApi = {
|
|
|
230499
231358
|
enableBoardSelfJoin?: Maybe<TrelloEnableBoardSelfJoinPayload>;
|
|
230500
231359
|
enableCardFrontCompleteToggle?: Maybe<TrelloEnableCardFrontCompleteTogglePayload>;
|
|
230501
231360
|
endVoiceCaptureSession?: Maybe<TrelloEndVoiceCaptureSessionPayload>;
|
|
231361
|
+
enqueueProposePlannerEventsJob?: Maybe<TrelloProposePlannerEventsJobPayload>;
|
|
230502
231362
|
generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
|
|
230503
231363
|
generateCardCoverWithAi?: Maybe<TrelloGenerateCardCoverWithAiPayload>;
|
|
230504
231364
|
generateCardSummary?: Maybe<TrelloGenerateCardSummaryPayload>;
|
|
230505
231365
|
generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
|
|
230506
231366
|
hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
|
|
230507
231367
|
hideVotesOnBoard?: Maybe<TrelloHideVotesOnBoardPayload>;
|
|
231368
|
+
initializeMemberAiPreference?: Maybe<TrelloInitializeMemberAiPreferencePayload>;
|
|
230508
231369
|
initializeVoiceCaptureSession?: Maybe<TrelloInitializeVoiceCaptureSessionPayload>;
|
|
230509
231370
|
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
230510
231371
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
@@ -230656,6 +231517,9 @@ export declare type TrelloMutationApiCreateCustomFieldArgs = {
|
|
|
230656
231517
|
export declare type TrelloMutationApiCreateCustomFieldOptionArgs = {
|
|
230657
231518
|
input: TrelloCreateCustomFieldOptionInput;
|
|
230658
231519
|
};
|
|
231520
|
+
export declare type TrelloMutationApiCreateEchoArgs = {
|
|
231521
|
+
input: TrelloEchoInput;
|
|
231522
|
+
};
|
|
230659
231523
|
export declare type TrelloMutationApiCreateListArgs = {
|
|
230660
231524
|
input: TrelloCreateListInput;
|
|
230661
231525
|
};
|
|
@@ -230719,6 +231583,9 @@ export declare type TrelloMutationApiEnableCardFrontCompleteToggleArgs = {
|
|
|
230719
231583
|
export declare type TrelloMutationApiEndVoiceCaptureSessionArgs = {
|
|
230720
231584
|
input: TrelloEndVoiceCaptureSessionInput;
|
|
230721
231585
|
};
|
|
231586
|
+
export declare type TrelloMutationApiEnqueueProposePlannerEventsJobArgs = {
|
|
231587
|
+
input: TrelloEnqueueProposePlannerEventsJobInput;
|
|
231588
|
+
};
|
|
230722
231589
|
export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
|
|
230723
231590
|
input: TrelloGenerateBoardBackgroundWithAiInput;
|
|
230724
231591
|
};
|
|
@@ -230737,6 +231604,9 @@ export declare type TrelloMutationApiHideCardCoversOnCardFrontArgs = {
|
|
|
230737
231604
|
export declare type TrelloMutationApiHideVotesOnBoardArgs = {
|
|
230738
231605
|
input: TrelloHideVotesOnBoardInput;
|
|
230739
231606
|
};
|
|
231607
|
+
export declare type TrelloMutationApiInitializeMemberAiPreferenceArgs = {
|
|
231608
|
+
input: TrelloInitializeMemberAiPreferenceInput;
|
|
231609
|
+
};
|
|
230740
231610
|
export declare type TrelloMutationApiInitializeVoiceCaptureSessionArgs = {
|
|
230741
231611
|
input: TrelloInitializeVoiceCaptureSessionInput;
|
|
230742
231612
|
};
|
|
@@ -231775,6 +232645,30 @@ export declare type TrelloProposePlannerEventsInput = {
|
|
|
231775
232645
|
cardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
231776
232646
|
timezoneOffsetHours: Scalars['Float']['input'];
|
|
231777
232647
|
};
|
|
232648
|
+
export declare type TrelloProposePlannerEventsJob = TrelloJob & {
|
|
232649
|
+
__typename?: 'TrelloProposePlannerEventsJob';
|
|
232650
|
+
errors?: Maybe<Array<TrelloJobError>>;
|
|
232651
|
+
id: Scalars['ID']['output'];
|
|
232652
|
+
outcome?: Maybe<TrelloProposePlannerEventsJobOutcome>;
|
|
232653
|
+
status: TrelloProposePlannerEventsJobStatus;
|
|
232654
|
+
};
|
|
232655
|
+
export declare enum TrelloProposePlannerEventsJobOutcome {
|
|
232656
|
+
Failed = "FAILED",
|
|
232657
|
+
NoCards = "NO_CARDS",
|
|
232658
|
+
NoEvents = "NO_EVENTS",
|
|
232659
|
+
Succeeded = "SUCCEEDED"
|
|
232660
|
+
}
|
|
232661
|
+
export declare type TrelloProposePlannerEventsJobPayload = Payload & {
|
|
232662
|
+
__typename?: 'TrelloProposePlannerEventsJobPayload';
|
|
232663
|
+
errors?: Maybe<Array<MutationError>>;
|
|
232664
|
+
job?: Maybe<TrelloProposePlannerEventsJob>;
|
|
232665
|
+
success: Scalars['Boolean']['output'];
|
|
232666
|
+
};
|
|
232667
|
+
export declare enum TrelloProposePlannerEventsJobStatus {
|
|
232668
|
+
Finished = "FINISHED",
|
|
232669
|
+
InProgress = "IN_PROGRESS",
|
|
232670
|
+
Pending = "PENDING"
|
|
232671
|
+
}
|
|
231778
232672
|
export declare type TrelloProposePlannerEventsPayload = Payload & {
|
|
231779
232673
|
__typename?: 'TrelloProposePlannerEventsPayload';
|
|
231780
232674
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -231880,6 +232774,7 @@ export declare type TrelloQueryApi = {
|
|
|
231880
232774
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
231881
232775
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
231882
232776
|
enterprisesById?: Maybe<Array<Maybe<TrelloEnterprise>>>;
|
|
232777
|
+
job?: Maybe<TrelloJob>;
|
|
231883
232778
|
labelsById?: Maybe<Array<Maybe<TrelloLabel>>>;
|
|
231884
232779
|
list?: Maybe<TrelloList>;
|
|
231885
232780
|
listsById?: Maybe<Array<Maybe<TrelloList>>>;
|
|
@@ -231957,6 +232852,9 @@ export declare type TrelloQueryApiEnterpriseArgs = {
|
|
|
231957
232852
|
export declare type TrelloQueryApiEnterprisesByIdArgs = {
|
|
231958
232853
|
ids: Array<Scalars['ID']['input']>;
|
|
231959
232854
|
};
|
|
232855
|
+
export declare type TrelloQueryApiJobArgs = {
|
|
232856
|
+
id: Scalars['ID']['input'];
|
|
232857
|
+
};
|
|
231960
232858
|
export declare type TrelloQueryApiLabelsByIdArgs = {
|
|
231961
232859
|
ids: Array<Scalars['ID']['input']>;
|
|
231962
232860
|
};
|
|
@@ -232427,7 +233325,9 @@ export declare type TrelloSubscriptionApi = {
|
|
|
232427
233325
|
onBoardCardSetUpdated?: Maybe<TrelloBoardUpdated>;
|
|
232428
233326
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
232429
233327
|
onCardBatchUpdated?: Maybe<TrelloCardBatch>;
|
|
233328
|
+
onEchoUpdated?: Maybe<TrelloEchoUpdated>;
|
|
232430
233329
|
onInboxUpdated?: Maybe<TrelloInboxUpdated>;
|
|
233330
|
+
onJobUpdated?: Maybe<TrelloJob>;
|
|
232431
233331
|
onMemberPlannerEventCardsUpdated?: Maybe<TrelloMemberPlannerEventCardsUpdated>;
|
|
232432
233332
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
232433
233333
|
onStatefulSessionUpdated?: Maybe<TrelloStatefulSessionUpdated>;
|
|
@@ -232446,10 +233346,16 @@ export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
|
232446
233346
|
export declare type TrelloSubscriptionApiOnCardBatchUpdatedArgs = {
|
|
232447
233347
|
id: Scalars['ID']['input'];
|
|
232448
233348
|
};
|
|
233349
|
+
export declare type TrelloSubscriptionApiOnEchoUpdatedArgs = {
|
|
233350
|
+
input: TrelloEchoInput;
|
|
233351
|
+
};
|
|
232449
233352
|
export declare type TrelloSubscriptionApiOnInboxUpdatedArgs = {
|
|
232450
233353
|
memberId: Scalars['ID']['input'];
|
|
232451
233354
|
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
232452
233355
|
};
|
|
233356
|
+
export declare type TrelloSubscriptionApiOnJobUpdatedArgs = {
|
|
233357
|
+
id: Scalars['ID']['input'];
|
|
233358
|
+
};
|
|
232453
233359
|
export declare type TrelloSubscriptionApiOnMemberPlannerEventCardsUpdatedArgs = {
|
|
232454
233360
|
memberId: Scalars['ID']['input'];
|
|
232455
233361
|
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|