@forge/cli-shared 8.3.0-next.1 → 8.3.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 +22 -0
- package/out/graphql/debugging-graphql-runner.d.ts +2 -0
- package/out/graphql/debugging-graphql-runner.d.ts.map +1 -1
- package/out/graphql/debugging-graphql-runner.js +25 -2
- package/out/graphql/graphql-types.d.ts +413 -44
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +31 -22
- package/package.json +2 -2
|
@@ -163,7 +163,7 @@ export declare type AvpChart = {
|
|
|
163
163
|
chartType?: Maybe<Scalars['String']['output']>;
|
|
164
164
|
envVarId?: Maybe<Scalars['ID']['output']>;
|
|
165
165
|
id?: Maybe<Scalars['ID']['output']>;
|
|
166
|
-
|
|
166
|
+
pipeline?: Maybe<AvpChartPipeline>;
|
|
167
167
|
templateChartId?: Maybe<Scalars['String']['output']>;
|
|
168
168
|
};
|
|
169
169
|
export declare type AvpChartClientSettings = {
|
|
@@ -191,7 +191,7 @@ export declare type AvpChartInput = {
|
|
|
191
191
|
chartConfig?: InputMaybe<AvpChartConfigInput>;
|
|
192
192
|
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
193
193
|
envVarId?: InputMaybe<Scalars['ID']['input']>;
|
|
194
|
-
|
|
194
|
+
pipeline?: InputMaybe<AvpChartPipelineInput>;
|
|
195
195
|
templateChartId?: InputMaybe<Scalars['String']['input']>;
|
|
196
196
|
};
|
|
197
197
|
export declare type AvpChartLayout = {
|
|
@@ -202,6 +202,146 @@ export declare type AvpChartLayout = {
|
|
|
202
202
|
y?: Maybe<Scalars['Int']['output']>;
|
|
203
203
|
z?: Maybe<Scalars['Int']['output']>;
|
|
204
204
|
};
|
|
205
|
+
export declare type AvpChartPipeline = {
|
|
206
|
+
__typename?: 'AVPChartPipeline';
|
|
207
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
208
|
+
nodes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
209
|
+
queries?: Maybe<Array<AvpChartPipelineQuery>>;
|
|
210
|
+
};
|
|
211
|
+
export declare type AvpChartPipelineInput = {
|
|
212
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
213
|
+
nodes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
214
|
+
queries?: InputMaybe<Array<AvpChartPipelineQueryInput>>;
|
|
215
|
+
};
|
|
216
|
+
export declare type AvpChartPipelineQuery = {
|
|
217
|
+
__typename?: 'AVPChartPipelineQuery';
|
|
218
|
+
cacheVersion?: Maybe<Scalars['Int']['output']>;
|
|
219
|
+
datasourceId?: Maybe<Scalars['String']['output']>;
|
|
220
|
+
datasourceLocator: AvpDatasourceLocator;
|
|
221
|
+
dimensions?: Maybe<Array<AvpChartPipelineQueryDimension>>;
|
|
222
|
+
filterLogic?: Maybe<Scalars['String']['output']>;
|
|
223
|
+
filters?: Maybe<Array<AvpChartPipelineQueryFilter>>;
|
|
224
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
225
|
+
isManual?: Maybe<Scalars['Boolean']['output']>;
|
|
226
|
+
joins?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
227
|
+
lastRunDuration?: Maybe<Scalars['Int']['output']>;
|
|
228
|
+
lastRunErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
229
|
+
lastRunStart?: Maybe<Scalars['String']['output']>;
|
|
230
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
231
|
+
measures?: Maybe<Array<AvpChartPipelineQueryMeasure>>;
|
|
232
|
+
metricsConfiguration?: Maybe<AvpMetricsConfiguration>;
|
|
233
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
234
|
+
relatedObject?: Maybe<AvpChartPipelineQueryRelatedObject>;
|
|
235
|
+
sql: Scalars['String']['output'];
|
|
236
|
+
sqlGenerationByAI?: Maybe<AvpChartPipelineQuerySqlGenerationByAi>;
|
|
237
|
+
};
|
|
238
|
+
export declare type AvpChartPipelineQueryDimension = {
|
|
239
|
+
__typename?: 'AVPChartPipelineQueryDimension';
|
|
240
|
+
bucketFunction?: Maybe<Scalars['String']['output']>;
|
|
241
|
+
columnName?: Maybe<Scalars['String']['output']>;
|
|
242
|
+
label: Scalars['String']['output'];
|
|
243
|
+
operands: Array<Scalars['String']['output']>;
|
|
244
|
+
pivotColumnFieldType?: Maybe<Scalars['String']['output']>;
|
|
245
|
+
pivotColumnName?: Maybe<Scalars['String']['output']>;
|
|
246
|
+
schemaName?: Maybe<Scalars['String']['output']>;
|
|
247
|
+
sortDir?: Maybe<Scalars['Int']['output']>;
|
|
248
|
+
tableName?: Maybe<Scalars['String']['output']>;
|
|
249
|
+
};
|
|
250
|
+
export declare type AvpChartPipelineQueryDimensionInput = {
|
|
251
|
+
bucketFunction?: InputMaybe<Scalars['String']['input']>;
|
|
252
|
+
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
253
|
+
label: Scalars['String']['input'];
|
|
254
|
+
operands: Array<Scalars['String']['input']>;
|
|
255
|
+
pivotColumnFieldType?: InputMaybe<Scalars['String']['input']>;
|
|
256
|
+
pivotColumnName?: InputMaybe<Scalars['String']['input']>;
|
|
257
|
+
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
258
|
+
sortDir?: InputMaybe<Scalars['Int']['input']>;
|
|
259
|
+
tableName?: InputMaybe<Scalars['String']['input']>;
|
|
260
|
+
};
|
|
261
|
+
export declare type AvpChartPipelineQueryFilter = {
|
|
262
|
+
__typename?: 'AVPChartPipelineQueryFilter';
|
|
263
|
+
autoEnvVarId?: Maybe<Scalars['ID']['output']>;
|
|
264
|
+
autoEnvVarRemoved?: Maybe<Scalars['Boolean']['output']>;
|
|
265
|
+
columnName?: Maybe<Scalars['String']['output']>;
|
|
266
|
+
comparison: Scalars['String']['output'];
|
|
267
|
+
group?: Maybe<Scalars['Int']['output']>;
|
|
268
|
+
isAuto?: Maybe<Scalars['Boolean']['output']>;
|
|
269
|
+
label: Scalars['String']['output'];
|
|
270
|
+
operands: Array<Scalars['String']['output']>;
|
|
271
|
+
pivotColumnFieldType?: Maybe<Scalars['String']['output']>;
|
|
272
|
+
pivotColumnName?: Maybe<Scalars['String']['output']>;
|
|
273
|
+
schemaName?: Maybe<Scalars['String']['output']>;
|
|
274
|
+
tableName?: Maybe<Scalars['String']['output']>;
|
|
275
|
+
};
|
|
276
|
+
export declare type AvpChartPipelineQueryFilterInput = {
|
|
277
|
+
autoEnvVarId?: InputMaybe<Scalars['ID']['input']>;
|
|
278
|
+
autoEnvVarRemoved?: InputMaybe<Scalars['Boolean']['input']>;
|
|
279
|
+
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
280
|
+
comparison: Scalars['String']['input'];
|
|
281
|
+
group?: InputMaybe<Scalars['Int']['input']>;
|
|
282
|
+
isAuto?: InputMaybe<Scalars['Boolean']['input']>;
|
|
283
|
+
label: Scalars['String']['input'];
|
|
284
|
+
operands: Array<Scalars['String']['input']>;
|
|
285
|
+
pivotColumnFieldType?: InputMaybe<Scalars['String']['input']>;
|
|
286
|
+
pivotColumnName?: InputMaybe<Scalars['String']['input']>;
|
|
287
|
+
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
288
|
+
tableName?: InputMaybe<Scalars['String']['input']>;
|
|
289
|
+
};
|
|
290
|
+
export declare type AvpChartPipelineQueryInput = {
|
|
291
|
+
datasourceId?: InputMaybe<Scalars['String']['input']>;
|
|
292
|
+
datasourceLocator: AvpDatasourceLocatorInput;
|
|
293
|
+
dimensions?: InputMaybe<Array<AvpChartPipelineQueryDimensionInput>>;
|
|
294
|
+
filterLogic?: InputMaybe<Scalars['String']['input']>;
|
|
295
|
+
filters?: InputMaybe<Array<AvpChartPipelineQueryFilterInput>>;
|
|
296
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
297
|
+
isManual?: InputMaybe<Scalars['Boolean']['input']>;
|
|
298
|
+
joins?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
299
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
300
|
+
measures?: InputMaybe<Array<AvpChartPipelineQueryMeasureInput>>;
|
|
301
|
+
metricsConfiguration?: InputMaybe<AvpMetricsConfigurationInput>;
|
|
302
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
303
|
+
sql?: InputMaybe<Scalars['String']['input']>;
|
|
304
|
+
};
|
|
305
|
+
export declare type AvpChartPipelineQueryMeasure = {
|
|
306
|
+
__typename?: 'AVPChartPipelineQueryMeasure';
|
|
307
|
+
aggregationFunction?: Maybe<Scalars['String']['output']>;
|
|
308
|
+
columnName?: Maybe<Scalars['String']['output']>;
|
|
309
|
+
label: Scalars['String']['output'];
|
|
310
|
+
pivotColumnFieldType?: Maybe<Scalars['String']['output']>;
|
|
311
|
+
pivotColumnName?: Maybe<Scalars['String']['output']>;
|
|
312
|
+
schemaName?: Maybe<Scalars['String']['output']>;
|
|
313
|
+
sortDir?: Maybe<Scalars['Int']['output']>;
|
|
314
|
+
tableName?: Maybe<Scalars['String']['output']>;
|
|
315
|
+
};
|
|
316
|
+
export declare type AvpChartPipelineQueryMeasureInput = {
|
|
317
|
+
aggregationFunction?: InputMaybe<Scalars['String']['input']>;
|
|
318
|
+
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
319
|
+
label: Scalars['String']['input'];
|
|
320
|
+
pivotColumnFieldType?: InputMaybe<Scalars['String']['input']>;
|
|
321
|
+
pivotColumnName?: InputMaybe<Scalars['String']['input']>;
|
|
322
|
+
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
323
|
+
sortDir?: InputMaybe<Scalars['Int']['input']>;
|
|
324
|
+
tableName?: InputMaybe<Scalars['String']['input']>;
|
|
325
|
+
};
|
|
326
|
+
export declare type AvpChartPipelineQueryRelatedObject = {
|
|
327
|
+
__typename?: 'AVPChartPipelineQueryRelatedObject';
|
|
328
|
+
chartTitle?: Maybe<Scalars['String']['output']>;
|
|
329
|
+
dashboardSlug?: Maybe<Scalars['String']['output']>;
|
|
330
|
+
dashboardTitle?: Maybe<Scalars['String']['output']>;
|
|
331
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
332
|
+
editLink?: Maybe<Scalars['String']['output']>;
|
|
333
|
+
id: Scalars['ID']['output'];
|
|
334
|
+
type: Scalars['String']['output'];
|
|
335
|
+
};
|
|
336
|
+
export declare type AvpChartPipelineQuerySqlGenerationByAi = {
|
|
337
|
+
__typename?: 'AVPChartPipelineQuerySqlGenerationByAI';
|
|
338
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
339
|
+
history?: Maybe<Array<Scalars['String']['output']>>;
|
|
340
|
+
loading?: Maybe<Scalars['Boolean']['output']>;
|
|
341
|
+
showFeedback?: Maybe<Scalars['Boolean']['output']>;
|
|
342
|
+
showPrompt?: Maybe<Scalars['Boolean']['output']>;
|
|
343
|
+
sql?: Maybe<Scalars['String']['output']>;
|
|
344
|
+
};
|
|
205
345
|
export declare type AvpChartSetting = {
|
|
206
346
|
__typename?: 'AVPChartSetting';
|
|
207
347
|
jsonValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -337,6 +477,11 @@ export declare type AvpDatasourceLocator = {
|
|
|
337
477
|
dstype?: Maybe<Scalars['String']['output']>;
|
|
338
478
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
339
479
|
};
|
|
480
|
+
export declare type AvpDatasourceLocatorInput = {
|
|
481
|
+
datasourceId?: InputMaybe<Scalars['String']['input']>;
|
|
482
|
+
dstype: Scalars['String']['input'];
|
|
483
|
+
workspaceId: Scalars['String']['input'];
|
|
484
|
+
};
|
|
340
485
|
export declare type AvpDeleteChartInput = {
|
|
341
486
|
chartAri: Scalars['ID']['input'];
|
|
342
487
|
};
|
|
@@ -372,6 +517,45 @@ export declare type AvpHotTierFilterConfig = {
|
|
|
372
517
|
product?: Maybe<Scalars['String']['output']>;
|
|
373
518
|
semanticModel?: Maybe<Scalars['String']['output']>;
|
|
374
519
|
};
|
|
520
|
+
export declare type AvpMetricsConfiguration = {
|
|
521
|
+
__typename?: 'AVPMetricsConfiguration';
|
|
522
|
+
dimensions?: Maybe<Array<AvpMetricsDimension>>;
|
|
523
|
+
filters?: Maybe<Array<AvpMetricsFilter>>;
|
|
524
|
+
granularity?: Maybe<Scalars['String']['output']>;
|
|
525
|
+
metrics?: Maybe<Array<Scalars['String']['output']>>;
|
|
526
|
+
searchCondition?: Maybe<Scalars['String']['output']>;
|
|
527
|
+
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
528
|
+
};
|
|
529
|
+
export declare type AvpMetricsConfigurationDimensionInput = {
|
|
530
|
+
name: Scalars['String']['input'];
|
|
531
|
+
type: Scalars['String']['input'];
|
|
532
|
+
};
|
|
533
|
+
export declare type AvpMetricsConfigurationFilterInput = {
|
|
534
|
+
comparison: Scalars['String']['input'];
|
|
535
|
+
dimension: Scalars['String']['input'];
|
|
536
|
+
operands: Array<Scalars['String']['input']>;
|
|
537
|
+
product: Scalars['String']['input'];
|
|
538
|
+
};
|
|
539
|
+
export declare type AvpMetricsConfigurationInput = {
|
|
540
|
+
dimensions?: InputMaybe<Array<AvpMetricsConfigurationDimensionInput>>;
|
|
541
|
+
filters?: InputMaybe<Array<AvpMetricsConfigurationFilterInput>>;
|
|
542
|
+
granularity?: InputMaybe<Scalars['String']['input']>;
|
|
543
|
+
metrics?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
544
|
+
searchCondition?: InputMaybe<Scalars['String']['input']>;
|
|
545
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
546
|
+
};
|
|
547
|
+
export declare type AvpMetricsDimension = {
|
|
548
|
+
__typename?: 'AVPMetricsDimension';
|
|
549
|
+
name: Scalars['String']['output'];
|
|
550
|
+
type: Scalars['String']['output'];
|
|
551
|
+
};
|
|
552
|
+
export declare type AvpMetricsFilter = {
|
|
553
|
+
__typename?: 'AVPMetricsFilter';
|
|
554
|
+
comparison: Scalars['String']['output'];
|
|
555
|
+
dimension: Scalars['String']['output'];
|
|
556
|
+
operands: Array<Scalars['String']['output']>;
|
|
557
|
+
product: Scalars['String']['output'];
|
|
558
|
+
};
|
|
375
559
|
export declare type AvpMoveCanvasElementInput = {
|
|
376
560
|
dashboardAri: Scalars['ID']['input'];
|
|
377
561
|
sourceElementId: Scalars['ID']['input'];
|
|
@@ -1262,6 +1446,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
1262
1446
|
creatorType?: Maybe<Scalars['String']['output']>;
|
|
1263
1447
|
description?: Maybe<Scalars['String']['output']>;
|
|
1264
1448
|
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
1449
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
1265
1450
|
id: Scalars['ID']['output'];
|
|
1266
1451
|
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
1267
1452
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
@@ -1275,8 +1460,8 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
1275
1460
|
creator?: Maybe<User>;
|
|
1276
1461
|
creatorId: Scalars['ID']['output'];
|
|
1277
1462
|
id: Scalars['ID']['output'];
|
|
1278
|
-
instructions
|
|
1279
|
-
invocationDescription
|
|
1463
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
1464
|
+
invocationDescription?: Maybe<Scalars['String']['output']>;
|
|
1280
1465
|
isActive: Scalars['Boolean']['output'];
|
|
1281
1466
|
isDefault: Scalars['Boolean']['output'];
|
|
1282
1467
|
isValid: AgentStudioScenarioValidation;
|
|
@@ -1332,10 +1517,10 @@ export declare enum AgentStudioCreateAgentPermissionMode {
|
|
|
1332
1517
|
export declare type AgentStudioCreateScenarioInput = {
|
|
1333
1518
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
1334
1519
|
containerId: Scalars['ID']['input'];
|
|
1335
|
-
instructions
|
|
1336
|
-
invocationDescription
|
|
1337
|
-
isActive
|
|
1338
|
-
isDefault
|
|
1520
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
1521
|
+
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
1522
|
+
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1523
|
+
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1339
1524
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1340
1525
|
name: Scalars['String']['input'];
|
|
1341
1526
|
};
|
|
@@ -1436,8 +1621,8 @@ export declare type AgentStudioScenario = {
|
|
|
1436
1621
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
1437
1622
|
creatorId: Scalars['ID']['output'];
|
|
1438
1623
|
id: Scalars['ID']['output'];
|
|
1439
|
-
instructions
|
|
1440
|
-
invocationDescription
|
|
1624
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
1625
|
+
invocationDescription?: Maybe<Scalars['String']['output']>;
|
|
1441
1626
|
isActive: Scalars['Boolean']['output'];
|
|
1442
1627
|
isDefault: Scalars['Boolean']['output'];
|
|
1443
1628
|
isValid: AgentStudioScenarioValidation;
|
|
@@ -1445,6 +1630,28 @@ export declare type AgentStudioScenario = {
|
|
|
1445
1630
|
name: Scalars['String']['output'];
|
|
1446
1631
|
};
|
|
1447
1632
|
export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
|
|
1633
|
+
export declare type AgentStudioScenarioValidateInput = {
|
|
1634
|
+
invocationDescription: Scalars['String']['input'];
|
|
1635
|
+
isActive: Scalars['Boolean']['input'];
|
|
1636
|
+
isDefault: Scalars['Boolean']['input'];
|
|
1637
|
+
isEdited?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1638
|
+
name: Scalars['String']['input'];
|
|
1639
|
+
};
|
|
1640
|
+
export declare type AgentStudioScenarioValidateModeInput = {
|
|
1641
|
+
scenarios?: InputMaybe<Array<AgentStudioScenarioValidateInput>>;
|
|
1642
|
+
};
|
|
1643
|
+
export declare type AgentStudioScenarioValidateModeOutput = {
|
|
1644
|
+
__typename?: 'AgentStudioScenarioValidateModeOutput';
|
|
1645
|
+
scenarios?: Maybe<Array<AgentStudioScenarioValidateOutput>>;
|
|
1646
|
+
};
|
|
1647
|
+
export declare type AgentStudioScenarioValidateOutput = {
|
|
1648
|
+
__typename?: 'AgentStudioScenarioValidateOutput';
|
|
1649
|
+
invocationDescription: Scalars['String']['output'];
|
|
1650
|
+
isActive: Scalars['Boolean']['output'];
|
|
1651
|
+
isDefault: Scalars['Boolean']['output'];
|
|
1652
|
+
isValid: AgentStudioScenarioValidation;
|
|
1653
|
+
name: Scalars['String']['output'];
|
|
1654
|
+
};
|
|
1448
1655
|
export declare type AgentStudioScenarioValidation = {
|
|
1449
1656
|
__typename?: 'AgentStudioScenarioValidation';
|
|
1450
1657
|
message?: Maybe<Array<Maybe<AgentStudioScenarioValidationError>>>;
|
|
@@ -1455,6 +1662,10 @@ export declare type AgentStudioScenarioValidationError = {
|
|
|
1455
1662
|
key: Scalars['String']['output'];
|
|
1456
1663
|
value: Scalars['String']['output'];
|
|
1457
1664
|
};
|
|
1665
|
+
export declare type AgentStudioScenarioValidationPayload = {
|
|
1666
|
+
__typename?: 'AgentStudioScenarioValidationPayload';
|
|
1667
|
+
isValid: AgentStudioScenarioValidation;
|
|
1668
|
+
};
|
|
1458
1669
|
export declare type AgentStudioScenariosEdge = {
|
|
1459
1670
|
__typename?: 'AgentStudioScenariosEdge';
|
|
1460
1671
|
cursor: Scalars['String']['output'];
|
|
@@ -6531,6 +6742,7 @@ export declare type ChannelPlatformTranscriptRequest = {
|
|
|
6531
6742
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
6532
6743
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
6533
6744
|
role?: InputMaybe<ChannelPlatformRole>;
|
|
6745
|
+
startAfterChatMessageId?: InputMaybe<Scalars['String']['input']>;
|
|
6534
6746
|
};
|
|
6535
6747
|
export declare type ChannelPlatformTranscriptResponse = {
|
|
6536
6748
|
__typename?: 'ChannelPlatformTranscriptResponse';
|
|
@@ -12239,11 +12451,15 @@ export declare enum ConfluenceAnalyticsCommentContentType {
|
|
|
12239
12451
|
Whiteboard = "whiteboard"
|
|
12240
12452
|
}
|
|
12241
12453
|
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
12242
|
-
export declare type
|
|
12243
|
-
__typename?: '
|
|
12244
|
-
|
|
12245
|
-
|
|
12454
|
+
export declare type ConfluenceAppInstallationLicense = {
|
|
12455
|
+
__typename?: 'ConfluenceAppInstallationLicense';
|
|
12456
|
+
active: Scalars['Boolean']['output'];
|
|
12457
|
+
capabilitySet?: Maybe<ConfluenceAppInstallationLicenseCapabilitySet>;
|
|
12246
12458
|
};
|
|
12459
|
+
export declare enum ConfluenceAppInstallationLicenseCapabilitySet {
|
|
12460
|
+
CapabilityAdvanced = "CAPABILITY_ADVANCED",
|
|
12461
|
+
CapabilityStandard = "CAPABILITY_STANDARD"
|
|
12462
|
+
}
|
|
12247
12463
|
export declare type ConfluenceApplicationLink = {
|
|
12248
12464
|
__typename?: 'ConfluenceApplicationLink';
|
|
12249
12465
|
applicationId: Scalars['String']['output'];
|
|
@@ -13071,8 +13287,12 @@ export declare type ConfluenceExtensionEgressDeclaration = {
|
|
|
13071
13287
|
inScopeEUD?: Maybe<Scalars['Boolean']['output']>;
|
|
13072
13288
|
type?: Maybe<Scalars['String']['output']>;
|
|
13073
13289
|
};
|
|
13290
|
+
export declare type ConfluenceExtensionPrincipal = {
|
|
13291
|
+
__typename?: 'ConfluenceExtensionPrincipal';
|
|
13292
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
13293
|
+
};
|
|
13074
13294
|
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
13075
|
-
spaceId: Scalars['
|
|
13295
|
+
spaceId: Scalars['Long']['input'];
|
|
13076
13296
|
};
|
|
13077
13297
|
export declare enum ConfluenceExtensionVisibilityControlMechanism {
|
|
13078
13298
|
AppAccessRules = "APP_ACCESS_RULES",
|
|
@@ -13135,22 +13355,24 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
13135
13355
|
};
|
|
13136
13356
|
export declare type ConfluenceForgeExtension = {
|
|
13137
13357
|
__typename?: 'ConfluenceForgeExtension';
|
|
13358
|
+
appId: Scalars['ID']['output'];
|
|
13359
|
+
appOwner?: Maybe<Scalars['String']['output']>;
|
|
13138
13360
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
13139
|
-
|
|
13140
|
-
egress?: Maybe<Array<
|
|
13141
|
-
|
|
13142
|
-
environmentType
|
|
13361
|
+
definitionId: Scalars['ID']['output'];
|
|
13362
|
+
egress?: Maybe<Array<ConfluenceExtensionEgressDeclaration>>;
|
|
13363
|
+
environmentId: Scalars['ID']['output'];
|
|
13364
|
+
environmentType: Scalars['String']['output'];
|
|
13143
13365
|
hiddenBy?: Maybe<ConfluenceExtensionVisibilityControlMechanism>;
|
|
13144
|
-
id
|
|
13145
|
-
|
|
13146
|
-
|
|
13147
|
-
license?: Maybe<
|
|
13148
|
-
|
|
13149
|
-
|
|
13150
|
-
|
|
13151
|
-
|
|
13152
|
-
|
|
13153
|
-
|
|
13366
|
+
id: Scalars['ID']['output'];
|
|
13367
|
+
installationId: Scalars['String']['output'];
|
|
13368
|
+
key: Scalars['String']['output'];
|
|
13369
|
+
license?: Maybe<ConfluenceAppInstallationLicense>;
|
|
13370
|
+
migrationKey?: Maybe<Scalars['String']['output']>;
|
|
13371
|
+
oauthClientId: Scalars['ID']['output'];
|
|
13372
|
+
principal?: Maybe<ConfluenceExtensionPrincipal>;
|
|
13373
|
+
properties: Array<KeyValueHierarchyMap>;
|
|
13374
|
+
scopes: Array<Maybe<Scalars['String']['output']>>;
|
|
13375
|
+
type: Scalars['String']['output'];
|
|
13154
13376
|
};
|
|
13155
13377
|
export declare type ConfluenceGeneratedSpaceKey = {
|
|
13156
13378
|
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
@@ -16915,8 +17137,8 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
16915
17137
|
page: Scalars['String']['output'];
|
|
16916
17138
|
user: Scalars['Int']['output'];
|
|
16917
17139
|
};
|
|
16918
|
-
export declare type
|
|
16919
|
-
__typename?: '
|
|
17140
|
+
export declare type CplsCapacityPlanningPeopleView = {
|
|
17141
|
+
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
16920
17142
|
id: Scalars['ID']['output'];
|
|
16921
17143
|
};
|
|
16922
17144
|
export declare type CreateAppContainerPayload = Payload & {
|
|
@@ -26634,6 +26856,52 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
26634
26856
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
26635
26857
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
26636
26858
|
};
|
|
26859
|
+
export declare type GraphIntegrationDirectoryFilterDimension = {
|
|
26860
|
+
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
26861
|
+
displayName: Scalars['String']['output'];
|
|
26862
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
26863
|
+
id: Scalars['ID']['output'];
|
|
26864
|
+
relevantFor?: Maybe<GraphIntegrationDirectoryItemType>;
|
|
26865
|
+
};
|
|
26866
|
+
export declare type GraphIntegrationDirectoryFilterDimensionConnection = {
|
|
26867
|
+
__typename?: 'GraphIntegrationDirectoryFilterDimensionConnection';
|
|
26868
|
+
edges?: Maybe<Array<GraphIntegrationDirectoryFilterDimensionEdge>>;
|
|
26869
|
+
pageInfo: PageInfo;
|
|
26870
|
+
};
|
|
26871
|
+
export declare type GraphIntegrationDirectoryFilterDimensionEdge = {
|
|
26872
|
+
__typename?: 'GraphIntegrationDirectoryFilterDimensionEdge';
|
|
26873
|
+
cursor: Scalars['String']['output'];
|
|
26874
|
+
node?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
26875
|
+
};
|
|
26876
|
+
export declare type GraphIntegrationDirectoryItem = GraphIntegrationMcpServer | GraphIntegrationMcpTool;
|
|
26877
|
+
export declare type GraphIntegrationDirectoryItemConnection = {
|
|
26878
|
+
__typename?: 'GraphIntegrationDirectoryItemConnection';
|
|
26879
|
+
edges: Array<GraphIntegrationDirectoryItemEdge>;
|
|
26880
|
+
pageInfo: PageInfo;
|
|
26881
|
+
};
|
|
26882
|
+
export declare type GraphIntegrationDirectoryItemEdge = {
|
|
26883
|
+
__typename?: 'GraphIntegrationDirectoryItemEdge';
|
|
26884
|
+
cursor: Scalars['String']['output'];
|
|
26885
|
+
node?: Maybe<GraphIntegrationDirectoryItem>;
|
|
26886
|
+
};
|
|
26887
|
+
export declare enum GraphIntegrationDirectoryItemType {
|
|
26888
|
+
McpTool = "MCP_TOOL"
|
|
26889
|
+
}
|
|
26890
|
+
export declare type GraphIntegrationMcpServer = {
|
|
26891
|
+
__typename?: 'GraphIntegrationMcpServer';
|
|
26892
|
+
displayName: Scalars['String']['output'];
|
|
26893
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
26894
|
+
id: Scalars['ID']['output'];
|
|
26895
|
+
};
|
|
26896
|
+
export declare type GraphIntegrationMcpTool = {
|
|
26897
|
+
__typename?: 'GraphIntegrationMcpTool';
|
|
26898
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
26899
|
+
displayName: Scalars['String']['output'];
|
|
26900
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
26901
|
+
id: Scalars['ID']['output'];
|
|
26902
|
+
mcpServer: GraphIntegrationMcpServer;
|
|
26903
|
+
name: Scalars['String']['output'];
|
|
26904
|
+
};
|
|
26637
26905
|
export declare type GraphIssueAssociatedDesignPayload = Payload & {
|
|
26638
26906
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
26639
26907
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -30065,6 +30333,8 @@ export declare type GraphStore = {
|
|
|
30065
30333
|
vulnerabilityAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseConnection>;
|
|
30066
30334
|
vulnerabilityAssociatedIssueInverseRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
30067
30335
|
vulnerabilityAssociatedIssueRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
30336
|
+
workerAssociatedExternalWorker?: Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerConnection>;
|
|
30337
|
+
workerAssociatedExternalWorkerInverse?: Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerInverseConnection>;
|
|
30068
30338
|
};
|
|
30069
30339
|
export declare type GraphStoreAppInstallationAssociatedToOperationsWorkspaceInverseRelationshipArgs = {
|
|
30070
30340
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35208,6 +35478,20 @@ export declare type GraphStoreVulnerabilityAssociatedIssueRelationshipArgs = {
|
|
|
35208
35478
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35209
35479
|
id: Scalars['ID']['input'];
|
|
35210
35480
|
};
|
|
35481
|
+
export declare type GraphStoreWorkerAssociatedExternalWorkerArgs = {
|
|
35482
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35483
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35484
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35485
|
+
id: Scalars['ID']['input'];
|
|
35486
|
+
sort?: InputMaybe<GraphStoreWorkerAssociatedExternalWorkerSortInput>;
|
|
35487
|
+
};
|
|
35488
|
+
export declare type GraphStoreWorkerAssociatedExternalWorkerInverseArgs = {
|
|
35489
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35490
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35491
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35492
|
+
id: Scalars['ID']['input'];
|
|
35493
|
+
sort?: InputMaybe<GraphStoreWorkerAssociatedExternalWorkerSortInput>;
|
|
35494
|
+
};
|
|
35211
35495
|
export declare type GraphStoreAllRelationshipsConnection = {
|
|
35212
35496
|
__typename?: 'GraphStoreAllRelationshipsConnection';
|
|
35213
35497
|
edges: Array<GraphStoreAllRelationshipsEdge>;
|
|
@@ -36823,7 +37107,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
36823
37107
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
36824
37108
|
id: Scalars['ID']['output'];
|
|
36825
37109
|
};
|
|
36826
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37110
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36827
37111
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
36828
37112
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
36829
37113
|
value: Scalars['Int']['output'];
|
|
@@ -36858,7 +37142,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
36858
37142
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
36859
37143
|
id: Scalars['ID']['output'];
|
|
36860
37144
|
};
|
|
36861
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37145
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36862
37146
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
36863
37147
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
36864
37148
|
value: Scalars['String']['output'];
|
|
@@ -36868,19 +37152,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
36868
37152
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
36869
37153
|
id: Scalars['ID']['output'];
|
|
36870
37154
|
};
|
|
36871
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37155
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36872
37156
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
36873
37157
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
36874
37158
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
36875
37159
|
id: Scalars['ID']['output'];
|
|
36876
37160
|
};
|
|
36877
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37161
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36878
37162
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
36879
37163
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
36880
37164
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
36881
37165
|
id: Scalars['ID']['output'];
|
|
36882
37166
|
};
|
|
36883
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37167
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36884
37168
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
36885
37169
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
36886
37170
|
value: Scalars['Boolean']['output'];
|
|
@@ -36979,7 +37263,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
36979
37263
|
V2 = "V2",
|
|
36980
37264
|
V3 = "V3"
|
|
36981
37265
|
}
|
|
36982
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37266
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36983
37267
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
36984
37268
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
36985
37269
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -50193,6 +50477,34 @@ export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseEdge
|
|
|
50193
50477
|
};
|
|
50194
50478
|
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
50195
50479
|
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueUnion = JiraIssue;
|
|
50480
|
+
export declare type GraphStoreSimplifiedWorkerAssociatedExternalWorkerConnection = HasPageInfo & {
|
|
50481
|
+
__typename?: 'GraphStoreSimplifiedWorkerAssociatedExternalWorkerConnection';
|
|
50482
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerEdge>>>;
|
|
50483
|
+
pageInfo: PageInfo;
|
|
50484
|
+
};
|
|
50485
|
+
export declare type GraphStoreSimplifiedWorkerAssociatedExternalWorkerEdge = {
|
|
50486
|
+
__typename?: 'GraphStoreSimplifiedWorkerAssociatedExternalWorkerEdge';
|
|
50487
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50488
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50489
|
+
id: Scalars['ID']['output'];
|
|
50490
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50491
|
+
node?: Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerUnion>;
|
|
50492
|
+
};
|
|
50493
|
+
export declare type GraphStoreSimplifiedWorkerAssociatedExternalWorkerInverseConnection = HasPageInfo & {
|
|
50494
|
+
__typename?: 'GraphStoreSimplifiedWorkerAssociatedExternalWorkerInverseConnection';
|
|
50495
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerInverseEdge>>>;
|
|
50496
|
+
pageInfo: PageInfo;
|
|
50497
|
+
};
|
|
50498
|
+
export declare type GraphStoreSimplifiedWorkerAssociatedExternalWorkerInverseEdge = {
|
|
50499
|
+
__typename?: 'GraphStoreSimplifiedWorkerAssociatedExternalWorkerInverseEdge';
|
|
50500
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50501
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50502
|
+
id: Scalars['ID']['output'];
|
|
50503
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50504
|
+
node?: Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerInverseUnion>;
|
|
50505
|
+
};
|
|
50506
|
+
export declare type GraphStoreSimplifiedWorkerAssociatedExternalWorkerInverseUnion = RadarWorker;
|
|
50507
|
+
export declare type GraphStoreSimplifiedWorkerAssociatedExternalWorkerUnion = ExternalWorker;
|
|
50196
50508
|
export declare type GraphStoreSortInput = {
|
|
50197
50509
|
direction: SortDirection;
|
|
50198
50510
|
priority: Scalars['Int']['input'];
|
|
@@ -50997,6 +51309,9 @@ export declare type GraphStoreVulnerabilityAssociatedIssueSortInput = {
|
|
|
50997
51309
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50998
51310
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
50999
51311
|
};
|
|
51312
|
+
export declare type GraphStoreWorkerAssociatedExternalWorkerSortInput = {
|
|
51313
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51314
|
+
};
|
|
51000
51315
|
export declare type Group = {
|
|
51001
51316
|
__typename?: 'Group';
|
|
51002
51317
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -81841,6 +82156,7 @@ export declare type Mutation = {
|
|
|
81841
82156
|
followUser?: Maybe<FollowUserPayload>;
|
|
81842
82157
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
81843
82158
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
82159
|
+
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
81844
82160
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
81845
82161
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
81846
82162
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
@@ -81852,6 +82168,7 @@ export declare type Mutation = {
|
|
|
81852
82168
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
81853
82169
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
81854
82170
|
home_addTagsById?: Maybe<TownsquareAddTagToEntityPayload>;
|
|
82171
|
+
home_addTagsByName?: Maybe<TownsquareAddTagsByNamePayload>;
|
|
81855
82172
|
home_removeTags?: Maybe<TownsquareRemoveTagsPayload>;
|
|
81856
82173
|
insightsMutation?: Maybe<InsightsMutation>;
|
|
81857
82174
|
installApp?: Maybe<AppInstallationResponse>;
|
|
@@ -83028,6 +83345,9 @@ export declare type MutationGeneratePermsReportArgs = {
|
|
|
83028
83345
|
export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
83029
83346
|
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
83030
83347
|
};
|
|
83348
|
+
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
83349
|
+
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
83350
|
+
};
|
|
83031
83351
|
export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
83032
83352
|
input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
|
|
83033
83353
|
};
|
|
@@ -83058,6 +83378,9 @@ export declare type MutationHelpObjectStoreArgs = {
|
|
|
83058
83378
|
export declare type MutationHome_AddTagsByIdArgs = {
|
|
83059
83379
|
input: TownsquareAddTagToEntityByIdInput;
|
|
83060
83380
|
};
|
|
83381
|
+
export declare type MutationHome_AddTagsByNameArgs = {
|
|
83382
|
+
input: TownsquareAddTagsByNameInput;
|
|
83383
|
+
};
|
|
83061
83384
|
export declare type MutationHome_RemoveTagsArgs = {
|
|
83062
83385
|
input: TownsquareRemoveTagsInput;
|
|
83063
83386
|
};
|
|
@@ -86773,6 +87096,8 @@ export declare type Query = {
|
|
|
86773
87096
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
86774
87097
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
86775
87098
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
87099
|
+
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
87100
|
+
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
86776
87101
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
86777
87102
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
86778
87103
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -86956,7 +87281,7 @@ export declare type Query = {
|
|
|
86956
87281
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
86957
87282
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
86958
87283
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
86959
|
-
|
|
87284
|
+
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
86960
87285
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
86961
87286
|
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
86962
87287
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
@@ -87066,6 +87391,8 @@ export declare type Query = {
|
|
|
87066
87391
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
87067
87392
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
87068
87393
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
87394
|
+
graphIntegration_dimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
87395
|
+
graphIntegration_items?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
87069
87396
|
graphStore?: Maybe<GraphStore>;
|
|
87070
87397
|
group?: Maybe<Group>;
|
|
87071
87398
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -87462,6 +87789,15 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
87462
87789
|
cloudId: Scalars['String']['input'];
|
|
87463
87790
|
input: AgentStudioSuggestConversationStartersInput;
|
|
87464
87791
|
};
|
|
87792
|
+
export declare type QueryAgentStudio_ValidateScenarioArgs = {
|
|
87793
|
+
cloudId: Scalars['String']['input'];
|
|
87794
|
+
containerId: Scalars['ID']['input'];
|
|
87795
|
+
id: Scalars['ID']['input'];
|
|
87796
|
+
};
|
|
87797
|
+
export declare type QueryAgentStudio_ValidateScenariosArgs = {
|
|
87798
|
+
cloudId: Scalars['String']['input'];
|
|
87799
|
+
input: AgentStudioScenarioValidateModeInput;
|
|
87800
|
+
};
|
|
87465
87801
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
87466
87802
|
projectAri: Scalars['ID']['input'];
|
|
87467
87803
|
};
|
|
@@ -87992,11 +88328,11 @@ export declare type QueryConfluence_ReactedUsersArgs = {
|
|
|
87992
88328
|
input: ConfluenceReactedUsersInput;
|
|
87993
88329
|
};
|
|
87994
88330
|
export declare type QueryConfluence_ReactionsSummariesArgs = {
|
|
87995
|
-
cloudId
|
|
88331
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
87996
88332
|
input: Array<InputMaybe<ConfluenceReactionSummaryInput>>;
|
|
87997
88333
|
};
|
|
87998
88334
|
export declare type QueryConfluence_ReactionsSummaryArgs = {
|
|
87999
|
-
cloudId
|
|
88335
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88000
88336
|
contentId: Scalars['ID']['input'];
|
|
88001
88337
|
contentType: GraphQlReactionContentType;
|
|
88002
88338
|
};
|
|
@@ -88367,7 +88703,7 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
88367
88703
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
88368
88704
|
startTime: Scalars['String']['input'];
|
|
88369
88705
|
};
|
|
88370
|
-
export declare type
|
|
88706
|
+
export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
88371
88707
|
id: Scalars['ID']['input'];
|
|
88372
88708
|
};
|
|
88373
88709
|
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
@@ -88779,6 +89115,18 @@ export declare type QueryGetSummaryArgs = {
|
|
|
88779
89115
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
88780
89116
|
responseType?: InputMaybe<ResponseType>;
|
|
88781
89117
|
};
|
|
89118
|
+
export declare type QueryGraphIntegration_DimensionsArgs = {
|
|
89119
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89120
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89121
|
+
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89122
|
+
};
|
|
89123
|
+
export declare type QueryGraphIntegration_ItemsArgs = {
|
|
89124
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89125
|
+
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89126
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89127
|
+
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89128
|
+
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
89129
|
+
};
|
|
88782
89130
|
export declare type QueryGroupArgs = {
|
|
88783
89131
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
88784
89132
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -98176,6 +98524,16 @@ export declare type TownsquareAddTagToEntityPayload = {
|
|
|
98176
98524
|
success: Scalars['Boolean']['output'];
|
|
98177
98525
|
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
98178
98526
|
};
|
|
98527
|
+
export declare type TownsquareAddTagsByNameInput = {
|
|
98528
|
+
nounId: Scalars['ID']['input'];
|
|
98529
|
+
tagNames: Array<Scalars['String']['input']>;
|
|
98530
|
+
};
|
|
98531
|
+
export declare type TownsquareAddTagsByNamePayload = {
|
|
98532
|
+
__typename?: 'TownsquareAddTagsByNamePayload';
|
|
98533
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98534
|
+
success: Scalars['Boolean']['output'];
|
|
98535
|
+
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
98536
|
+
};
|
|
98179
98537
|
export declare type TownsquareArchiveGoalInput = {
|
|
98180
98538
|
id: Scalars['String']['input'];
|
|
98181
98539
|
};
|
|
@@ -98621,6 +98979,17 @@ export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
|
|
|
98621
98979
|
goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
|
|
98622
98980
|
success: Scalars['Boolean']['output'];
|
|
98623
98981
|
};
|
|
98982
|
+
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
98983
|
+
goalId: Scalars['ID']['input'];
|
|
98984
|
+
teamId: Scalars['ID']['input'];
|
|
98985
|
+
};
|
|
98986
|
+
export declare type TownsquareGoalsRemoveGoalTeamLinkPayload = {
|
|
98987
|
+
__typename?: 'TownsquareGoalsRemoveGoalTeamLinkPayload';
|
|
98988
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98989
|
+
goal?: Maybe<TownsquareGoal>;
|
|
98990
|
+
success: Scalars['Boolean']['output'];
|
|
98991
|
+
team?: Maybe<TeamV2>;
|
|
98992
|
+
};
|
|
98624
98993
|
export declare type TownsquareGoalsSetWatchingGoalInput = {
|
|
98625
98994
|
goalId: Scalars['ID']['input'];
|
|
98626
98995
|
isWatching: Scalars['Boolean']['input'];
|
|
@@ -101389,7 +101758,7 @@ export declare type TrelloMemberBoardStarsArgs = {
|
|
|
101389
101758
|
};
|
|
101390
101759
|
export declare type TrelloMemberWorkspacesArgs = {
|
|
101391
101760
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101392
|
-
filter
|
|
101761
|
+
filter?: InputMaybe<TrelloMemberWorkspaceFilter>;
|
|
101393
101762
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101394
101763
|
};
|
|
101395
101764
|
export declare type TrelloMemberBoardStarConnection = {
|
|
@@ -101454,8 +101823,8 @@ export declare type TrelloMemberWorkspaceEdge = {
|
|
|
101454
101823
|
node?: Maybe<TrelloWorkspace>;
|
|
101455
101824
|
};
|
|
101456
101825
|
export declare type TrelloMemberWorkspaceFilter = {
|
|
101457
|
-
membershipType
|
|
101458
|
-
tier
|
|
101826
|
+
membershipType?: InputMaybe<TrelloWorkspaceMembershipType>;
|
|
101827
|
+
tier?: InputMaybe<TrelloWorkspaceTier>;
|
|
101459
101828
|
};
|
|
101460
101829
|
export declare type TrelloMirrorCard = {
|
|
101461
101830
|
__typename?: 'TrelloMirrorCard';
|