@forge/cli-shared 8.15.2-next.3 → 8.15.2-next.3-experimental-e2ec7ba
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 +11 -0
- package/out/graphql/graphql-types.d.ts +1268 -418
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +83 -43
- package/package.json +2 -2
|
@@ -177,49 +177,37 @@ export declare type AvpAnalyticsColumn = {
|
|
|
177
177
|
name: Scalars['String']['output'];
|
|
178
178
|
type: AvpAnalyticsColumnType;
|
|
179
179
|
};
|
|
180
|
-
export declare type
|
|
181
|
-
formula?: InputMaybe<
|
|
182
|
-
simple?: InputMaybe<
|
|
180
|
+
export declare type AvpAnalyticsColumnInput = {
|
|
181
|
+
formula?: InputMaybe<AvpAnalyticsFormulaColumnInput>;
|
|
182
|
+
simple?: InputMaybe<AvpAnalyticsSimpleColumnInput>;
|
|
183
183
|
};
|
|
184
184
|
export declare enum AvpAnalyticsColumnType {
|
|
185
185
|
DateTime = "DATE_TIME",
|
|
186
186
|
Integer = "INTEGER",
|
|
187
187
|
Text = "TEXT"
|
|
188
188
|
}
|
|
189
|
-
export declare type
|
|
189
|
+
export declare type AvpAnalyticsCreateModelInput = {
|
|
190
190
|
cloudId: Scalars['ID']['input'];
|
|
191
|
-
modelDefinition?: InputMaybe<
|
|
191
|
+
modelDefinition?: InputMaybe<AvpAnalyticsModelDefinitionInput>;
|
|
192
192
|
modelDescription?: InputMaybe<Scalars['String']['input']>;
|
|
193
193
|
modelName?: InputMaybe<Scalars['String']['input']>;
|
|
194
194
|
workspaceId: Scalars['ID']['input'];
|
|
195
195
|
};
|
|
196
|
-
export declare type
|
|
197
|
-
__typename?: '
|
|
198
|
-
|
|
196
|
+
export declare type AvpAnalyticsCreateModelPayload = Payload & {
|
|
197
|
+
__typename?: 'AVPAnalyticsCreateModelPayload';
|
|
198
|
+
errors?: Maybe<Array<MutationError>>;
|
|
199
|
+
model?: Maybe<AvpAnalyticsModel>;
|
|
200
|
+
success: Scalars['Boolean']['output'];
|
|
199
201
|
};
|
|
200
202
|
export declare type AvpAnalyticsDataSourceMetadata = {
|
|
201
203
|
__typename?: 'AVPAnalyticsDataSourceMetadata';
|
|
202
204
|
icon: Scalars['String']['output'];
|
|
203
205
|
};
|
|
204
|
-
export declare type AvpAnalyticsDimension = {
|
|
205
|
-
dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
206
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
207
|
-
};
|
|
208
|
-
export declare type AvpAnalyticsDimensionValueData = {
|
|
209
|
-
__typename?: 'AVPAnalyticsDimensionValueData';
|
|
210
|
-
dynamicDimensionKey?: Maybe<Scalars['String']['output']>;
|
|
211
|
-
name: Scalars['String']['output'];
|
|
212
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
213
|
-
};
|
|
214
|
-
export declare type AvpAnalyticsDimensionValueDataRow = {
|
|
215
|
-
__typename?: 'AVPAnalyticsDimensionValueDataRow';
|
|
216
|
-
dimensionValueDataList: Array<AvpAnalyticsDimensionValueData>;
|
|
217
|
-
};
|
|
218
206
|
export declare type AvpAnalyticsFilter = {
|
|
219
207
|
type: AvpAnalyticsFilterType;
|
|
220
208
|
values: Array<Scalars['String']['input']>;
|
|
221
209
|
};
|
|
222
|
-
export declare type
|
|
210
|
+
export declare type AvpAnalyticsFilterInput = {
|
|
223
211
|
filters?: InputMaybe<Array<AvpAnalyticsFilter>>;
|
|
224
212
|
};
|
|
225
213
|
export declare enum AvpAnalyticsFilterType {
|
|
@@ -235,47 +223,36 @@ export declare type AvpAnalyticsFormulaColumn = AvpAnalyticsColumn & {
|
|
|
235
223
|
name: Scalars['String']['output'];
|
|
236
224
|
type: AvpAnalyticsColumnType;
|
|
237
225
|
};
|
|
238
|
-
export declare type
|
|
226
|
+
export declare type AvpAnalyticsFormulaColumnInput = {
|
|
239
227
|
expression: Scalars['String']['input'];
|
|
240
228
|
isHidden: Scalars['Boolean']['input'];
|
|
241
229
|
name: Scalars['String']['input'];
|
|
242
230
|
type: AvpAnalyticsColumnType;
|
|
243
231
|
};
|
|
244
|
-
export declare type
|
|
232
|
+
export declare type AvpAnalyticsGetModelInput = {
|
|
245
233
|
cloudId: Scalars['ID']['input'];
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
type: AvpAnalyticsModelType;
|
|
234
|
+
modelId: Scalars['ID']['input'];
|
|
235
|
+
modelType: AvpAnalyticsModelType;
|
|
236
|
+
modelVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
237
|
+
modelViewMode: AvpAnalyticsModelViewMode;
|
|
251
238
|
workspaceId: Scalars['ID']['input'];
|
|
252
239
|
};
|
|
253
|
-
export declare type
|
|
254
|
-
__typename?: 'AVPAnalyticsGetModelDataResponse';
|
|
255
|
-
dimensionValueDataRows: Array<AvpAnalyticsDimensionValueDataRow>;
|
|
256
|
-
paginationResponse: AvpAnalyticsPaginationResponse;
|
|
257
|
-
};
|
|
258
|
-
export declare type AvpAnalyticsGetModelsRequest = {
|
|
240
|
+
export declare type AvpAnalyticsGetModelsInput = {
|
|
259
241
|
cloudId: Scalars['ID']['input'];
|
|
260
|
-
|
|
242
|
+
filterInput?: InputMaybe<AvpAnalyticsFilterInput>;
|
|
261
243
|
modelType: AvpAnalyticsModelType;
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
244
|
+
paginationInput: AvpAnalyticsPaginationInput;
|
|
245
|
+
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
246
|
+
sortInput?: InputMaybe<AvpAnalyticsSortInput>;
|
|
265
247
|
workspaceId: Scalars['ID']['input'];
|
|
266
248
|
};
|
|
267
|
-
export declare type AvpAnalyticsGetModelsResponse = {
|
|
268
|
-
__typename?: 'AVPAnalyticsGetModelsResponse';
|
|
269
|
-
models: Array<AvpAnalyticsModel>;
|
|
270
|
-
paginationResponse: AvpAnalyticsPaginationResponse;
|
|
271
|
-
};
|
|
272
249
|
export declare type AvpAnalyticsJoinColumnPairs = {
|
|
273
250
|
__typename?: 'AVPAnalyticsJoinColumnPairs';
|
|
274
251
|
joinOnOperator: AvpAnalyticsJoinOnOperator;
|
|
275
252
|
leftColumnId: Scalars['ID']['output'];
|
|
276
253
|
rightColumnId: Scalars['ID']['output'];
|
|
277
254
|
};
|
|
278
|
-
export declare type
|
|
255
|
+
export declare type AvpAnalyticsJoinColumnPairsInput = {
|
|
279
256
|
joinOnOperator: AvpAnalyticsJoinOnOperator;
|
|
280
257
|
leftColumnId: Scalars['ID']['input'];
|
|
281
258
|
rightColumnId: Scalars['ID']['input'];
|
|
@@ -295,8 +272,8 @@ export declare type AvpAnalyticsJoinPaths = {
|
|
|
295
272
|
leftModelId: Scalars['ID']['output'];
|
|
296
273
|
rightModelId: Scalars['ID']['output'];
|
|
297
274
|
};
|
|
298
|
-
export declare type
|
|
299
|
-
columnPairs: Array<
|
|
275
|
+
export declare type AvpAnalyticsJoinPathsInput = {
|
|
276
|
+
columnPairs: Array<AvpAnalyticsJoinColumnPairsInput>;
|
|
300
277
|
joinType: AvpAnalyticsJoinType;
|
|
301
278
|
leftModelId: Scalars['ID']['input'];
|
|
302
279
|
rightModelId: Scalars['ID']['input'];
|
|
@@ -307,18 +284,6 @@ export declare enum AvpAnalyticsJoinType {
|
|
|
307
284
|
Left = "LEFT",
|
|
308
285
|
Right = "RIGHT"
|
|
309
286
|
}
|
|
310
|
-
export declare type AvpAnalyticsListModelsRequest = {
|
|
311
|
-
cloudId: Scalars['ID']['input'];
|
|
312
|
-
paginationRequest: AvpAnalyticsPaginationRequest;
|
|
313
|
-
product: AvpAnalyticsProductType;
|
|
314
|
-
type: AvpAnalyticsModelType;
|
|
315
|
-
workspaceId: Scalars['ID']['input'];
|
|
316
|
-
};
|
|
317
|
-
export declare type AvpAnalyticsListModelsResponse = {
|
|
318
|
-
__typename?: 'AVPAnalyticsListModelsResponse';
|
|
319
|
-
models: Array<AvpAnalyticsModelSummary>;
|
|
320
|
-
paginationResponse: AvpAnalyticsPaginationResponse;
|
|
321
|
-
};
|
|
322
287
|
export declare type AvpAnalyticsMetric = {
|
|
323
288
|
__typename?: 'AVPAnalyticsMetric';
|
|
324
289
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -335,6 +300,11 @@ export declare type AvpAnalyticsModel = {
|
|
|
335
300
|
type: AvpAnalyticsModelType;
|
|
336
301
|
version: Scalars['Int']['output'];
|
|
337
302
|
};
|
|
303
|
+
export declare type AvpAnalyticsModelConnection = {
|
|
304
|
+
__typename?: 'AVPAnalyticsModelConnection';
|
|
305
|
+
edges?: Maybe<Array<Maybe<AvpAnalyticsModelEdge>>>;
|
|
306
|
+
pageInfo: PageInfo;
|
|
307
|
+
};
|
|
338
308
|
export declare type AvpAnalyticsModelDataSort = {
|
|
339
309
|
columnName: Scalars['String']['input'];
|
|
340
310
|
sortType: AvpAnalyticsSortType;
|
|
@@ -347,10 +317,10 @@ export declare type AvpAnalyticsModelDataSource = {
|
|
|
347
317
|
name?: Maybe<Scalars['String']['output']>;
|
|
348
318
|
subDataSources?: Maybe<Array<AvpAnalyticsModelDataSource>>;
|
|
349
319
|
};
|
|
350
|
-
export declare type
|
|
320
|
+
export declare type AvpAnalyticsModelDataSourceInput = {
|
|
351
321
|
id: Scalars['ID']['input'];
|
|
352
|
-
models?: InputMaybe<Array<
|
|
353
|
-
subDataSources?: InputMaybe<Array<
|
|
322
|
+
models?: InputMaybe<Array<AvpAnalyticsModelInput>>;
|
|
323
|
+
subDataSources?: InputMaybe<Array<AvpAnalyticsModelDataSourceInput>>;
|
|
354
324
|
};
|
|
355
325
|
export declare type AvpAnalyticsModelDefinition = {
|
|
356
326
|
__typename?: 'AVPAnalyticsModelDefinition';
|
|
@@ -359,19 +329,28 @@ export declare type AvpAnalyticsModelDefinition = {
|
|
|
359
329
|
filters?: Maybe<Array<AvpAnalyticsModelFilter>>;
|
|
360
330
|
joinPaths?: Maybe<Array<AvpAnalyticsJoinPaths>>;
|
|
361
331
|
};
|
|
362
|
-
export declare type
|
|
363
|
-
columns?: InputMaybe<Array<
|
|
364
|
-
dataSources?: InputMaybe<Array<
|
|
365
|
-
filters?: InputMaybe<Array<
|
|
366
|
-
joinPaths?: InputMaybe<Array<
|
|
332
|
+
export declare type AvpAnalyticsModelDefinitionInput = {
|
|
333
|
+
columns?: InputMaybe<Array<AvpAnalyticsColumnInput>>;
|
|
334
|
+
dataSources?: InputMaybe<Array<AvpAnalyticsModelDataSourceInput>>;
|
|
335
|
+
filters?: InputMaybe<Array<AvpAnalyticsModelFilterInput>>;
|
|
336
|
+
joinPaths?: InputMaybe<Array<AvpAnalyticsJoinPathsInput>>;
|
|
337
|
+
};
|
|
338
|
+
export declare type AvpAnalyticsModelEdge = {
|
|
339
|
+
__typename?: 'AVPAnalyticsModelEdge';
|
|
340
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
341
|
+
node: AvpAnalyticsModel;
|
|
367
342
|
};
|
|
368
343
|
export declare type AvpAnalyticsModelFilter = {
|
|
369
344
|
__typename?: 'AVPAnalyticsModelFilter';
|
|
370
345
|
columnName: Scalars['String']['output'];
|
|
371
346
|
};
|
|
372
|
-
export declare type
|
|
347
|
+
export declare type AvpAnalyticsModelFilterInput = {
|
|
373
348
|
columnName: Scalars['String']['input'];
|
|
374
349
|
};
|
|
350
|
+
export declare type AvpAnalyticsModelInput = {
|
|
351
|
+
id: Scalars['ID']['input'];
|
|
352
|
+
type: AvpAnalyticsModelType;
|
|
353
|
+
};
|
|
375
354
|
export declare type AvpAnalyticsModelMetadata = {
|
|
376
355
|
__typename?: 'AVPAnalyticsModelMetadata';
|
|
377
356
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -392,33 +371,19 @@ export declare enum AvpAnalyticsModelPermission {
|
|
|
392
371
|
Edit = "EDIT",
|
|
393
372
|
ReadOnly = "READ_ONLY"
|
|
394
373
|
}
|
|
395
|
-
export declare type AvpAnalyticsModelRequest = {
|
|
396
|
-
id: Scalars['ID']['input'];
|
|
397
|
-
type: AvpAnalyticsModelType;
|
|
398
|
-
};
|
|
399
374
|
export declare enum AvpAnalyticsModelStatus {
|
|
400
375
|
Active = "ACTIVE",
|
|
401
376
|
Draft = "DRAFT"
|
|
402
377
|
}
|
|
403
|
-
export declare type AvpAnalyticsModelSummary = {
|
|
404
|
-
__typename?: 'AVPAnalyticsModelSummary';
|
|
405
|
-
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
406
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
407
|
-
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
408
|
-
modelId: Scalars['String']['output'];
|
|
409
|
-
name: Scalars['String']['output'];
|
|
410
|
-
product: AvpAnalyticsProductType;
|
|
411
|
-
status: AvpAnalyticsModelStatus;
|
|
412
|
-
templateModelId?: Maybe<Scalars['String']['output']>;
|
|
413
|
-
type: AvpAnalyticsModelType;
|
|
414
|
-
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
415
|
-
version?: Maybe<Scalars['Int']['output']>;
|
|
416
|
-
};
|
|
417
378
|
export declare enum AvpAnalyticsModelType {
|
|
418
379
|
Primary = "PRIMARY",
|
|
419
380
|
UserDefined = "USER_DEFINED"
|
|
420
381
|
}
|
|
421
|
-
export declare
|
|
382
|
+
export declare enum AvpAnalyticsModelViewMode {
|
|
383
|
+
Edit = "EDIT",
|
|
384
|
+
ReadOnly = "READ_ONLY"
|
|
385
|
+
}
|
|
386
|
+
export declare type AvpAnalyticsPaginationInput = {
|
|
422
387
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
423
388
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
424
389
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -426,18 +391,7 @@ export declare type AvpAnalyticsPaginationRequest = {
|
|
|
426
391
|
pageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
427
392
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
428
393
|
};
|
|
429
|
-
export declare type
|
|
430
|
-
__typename?: 'AVPAnalyticsPaginationResponse';
|
|
431
|
-
endCursor?: Maybe<Scalars['String']['output']>;
|
|
432
|
-
hasNextPage: Scalars['Boolean']['output'];
|
|
433
|
-
hasPreviousPage: Scalars['Boolean']['output'];
|
|
434
|
-
startCursor?: Maybe<Scalars['String']['output']>;
|
|
435
|
-
};
|
|
436
|
-
export declare enum AvpAnalyticsProductType {
|
|
437
|
-
Assets = "ASSETS",
|
|
438
|
-
Jira = "JIRA"
|
|
439
|
-
}
|
|
440
|
-
export declare type AvpAnalyticsSearchRequest = {
|
|
394
|
+
export declare type AvpAnalyticsSearchInput = {
|
|
441
395
|
searchQuery: Scalars['String']['input'];
|
|
442
396
|
};
|
|
443
397
|
export declare type AvpAnalyticsSimpleColumn = AvpAnalyticsColumn & {
|
|
@@ -449,13 +403,17 @@ export declare type AvpAnalyticsSimpleColumn = AvpAnalyticsColumn & {
|
|
|
449
403
|
sourceModelId?: Maybe<Scalars['ID']['output']>;
|
|
450
404
|
type: AvpAnalyticsColumnType;
|
|
451
405
|
};
|
|
452
|
-
export declare type
|
|
406
|
+
export declare type AvpAnalyticsSimpleColumnInput = {
|
|
453
407
|
isHidden: Scalars['Boolean']['input'];
|
|
454
408
|
name: Scalars['String']['input'];
|
|
455
409
|
sourceColumnId: Scalars['ID']['input'];
|
|
456
410
|
sourceModelId: Scalars['ID']['input'];
|
|
457
411
|
type: AvpAnalyticsColumnType;
|
|
458
412
|
};
|
|
413
|
+
export declare type AvpAnalyticsSortInput = {
|
|
414
|
+
sortKey: AvpAnalyticsSortKey;
|
|
415
|
+
sortType: AvpAnalyticsSortType;
|
|
416
|
+
};
|
|
459
417
|
export declare enum AvpAnalyticsSortKey {
|
|
460
418
|
ModelCreatedAt = "MODEL_CREATED_AT",
|
|
461
419
|
ModelCreatedBy = "MODEL_CREATED_BY",
|
|
@@ -464,10 +422,6 @@ export declare enum AvpAnalyticsSortKey {
|
|
|
464
422
|
ModelStatus = "MODEL_STATUS",
|
|
465
423
|
ModelUpdatedAt = "MODEL_UPDATED_AT"
|
|
466
424
|
}
|
|
467
|
-
export declare type AvpAnalyticsSortRequest = {
|
|
468
|
-
sortKey: AvpAnalyticsSortKey;
|
|
469
|
-
sortType: AvpAnalyticsSortType;
|
|
470
|
-
};
|
|
471
425
|
export declare enum AvpAnalyticsSortType {
|
|
472
426
|
Asc = "ASC",
|
|
473
427
|
Desc = "DESC"
|
|
@@ -3353,7 +3307,7 @@ export declare type AdminUsageInfo = {
|
|
|
3353
3307
|
id: Scalars['String']['output'];
|
|
3354
3308
|
requestId: Scalars['String']['output'];
|
|
3355
3309
|
usage?: Maybe<Scalars['Float']['output']>;
|
|
3356
|
-
usageIdentifier
|
|
3310
|
+
usageIdentifier?: Maybe<Scalars['String']['output']>;
|
|
3357
3311
|
};
|
|
3358
3312
|
export declare type AdminUser = {
|
|
3359
3313
|
__typename?: 'AdminUser';
|
|
@@ -4223,9 +4177,11 @@ export declare enum AgentStudioJobRunStatus {
|
|
|
4223
4177
|
}
|
|
4224
4178
|
export declare type AgentStudioJsmKnowledgeFilter = {
|
|
4225
4179
|
__typename?: 'AgentStudioJsmKnowledgeFilter';
|
|
4180
|
+
helpCenterAri?: Maybe<Scalars['ID']['output']>;
|
|
4226
4181
|
jsmProjectFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4227
4182
|
};
|
|
4228
4183
|
export declare type AgentStudioJsmKnowledgeFilterInput = {
|
|
4184
|
+
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
4229
4185
|
jsmProjectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4230
4186
|
};
|
|
4231
4187
|
export declare enum AgentStudioJudgeMode {
|
|
@@ -4713,6 +4669,7 @@ export declare type AgentWorkspaceAgent = {
|
|
|
4713
4669
|
__typename?: 'AgentWorkspaceAgent';
|
|
4714
4670
|
displayName: Scalars['String']['output'];
|
|
4715
4671
|
id: Scalars['ID']['output'];
|
|
4672
|
+
skills: Array<AgentWorkspaceUserSkill>;
|
|
4716
4673
|
teamIds: Array<Scalars['ID']['output']>;
|
|
4717
4674
|
teamNames: Array<Scalars['String']['output']>;
|
|
4718
4675
|
};
|
|
@@ -4725,19 +4682,6 @@ export declare type AgentWorkspaceAgentAvailability = {
|
|
|
4725
4682
|
teamNames: Array<Scalars['String']['output']>;
|
|
4726
4683
|
updatedAt: Scalars['DateTime']['output'];
|
|
4727
4684
|
};
|
|
4728
|
-
export declare type AgentWorkspaceAgentCapacity = {
|
|
4729
|
-
__typename?: 'AgentWorkspaceAgentCapacity';
|
|
4730
|
-
agentId: Scalars['ID']['output'];
|
|
4731
|
-
agentName: Scalars['String']['output'];
|
|
4732
|
-
availableSlots: Scalars['Int']['output'];
|
|
4733
|
-
currentLoad: Scalars['Int']['output'];
|
|
4734
|
-
maxCapacity: Scalars['Int']['output'];
|
|
4735
|
-
status: AgentWorkspaceCapacityStatus;
|
|
4736
|
-
teamIds: Array<Scalars['ID']['output']>;
|
|
4737
|
-
teamNames: Array<Scalars['String']['output']>;
|
|
4738
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
4739
|
-
utilizationPercent: Scalars['Float']['output'];
|
|
4740
|
-
};
|
|
4741
4685
|
export declare type AgentWorkspaceAgentShifts = {
|
|
4742
4686
|
__typename?: 'AgentWorkspaceAgentShifts';
|
|
4743
4687
|
agent: AgentWorkspaceAgent;
|
|
@@ -4750,6 +4694,27 @@ export declare type AgentWorkspaceAgentShiftsEdge = {
|
|
|
4750
4694
|
cursor: Scalars['String']['output'];
|
|
4751
4695
|
node: AgentWorkspaceAgentShifts;
|
|
4752
4696
|
};
|
|
4697
|
+
export declare type AgentWorkspaceAgentsPageInfo = {
|
|
4698
|
+
__typename?: 'AgentWorkspaceAgentsPageInfo';
|
|
4699
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
4700
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
4701
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4702
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
4703
|
+
totalAgents: Scalars['Int']['output'];
|
|
4704
|
+
};
|
|
4705
|
+
export declare type AgentWorkspaceAssignSkillInput = {
|
|
4706
|
+
cloudId: Scalars['ID']['input'];
|
|
4707
|
+
proficiencyLevel: Scalars['Int']['input'];
|
|
4708
|
+
skillId: Scalars['ID']['input'];
|
|
4709
|
+
userId: Scalars['ID']['input'];
|
|
4710
|
+
};
|
|
4711
|
+
export declare type AgentWorkspaceAssignSkillPayload = {
|
|
4712
|
+
__typename?: 'AgentWorkspaceAssignSkillPayload';
|
|
4713
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
4714
|
+
success: Scalars['Boolean']['output'];
|
|
4715
|
+
user?: Maybe<AgentWorkspaceAgent>;
|
|
4716
|
+
userSkill?: Maybe<AgentWorkspaceUserSkill>;
|
|
4717
|
+
};
|
|
4753
4718
|
export declare type AgentWorkspaceAvailabilityConnection = {
|
|
4754
4719
|
__typename?: 'AgentWorkspaceAvailabilityConnection';
|
|
4755
4720
|
nodes: Array<AgentWorkspaceAgentAvailability>;
|
|
@@ -4785,12 +4750,6 @@ export declare type AgentWorkspaceAvailabilitySummary = {
|
|
|
4785
4750
|
onBreak: Scalars['Int']['output'];
|
|
4786
4751
|
onDuty: Scalars['Int']['output'];
|
|
4787
4752
|
};
|
|
4788
|
-
export declare type AgentWorkspaceCapacityConnection = {
|
|
4789
|
-
__typename?: 'AgentWorkspaceCapacityConnection';
|
|
4790
|
-
nodes: Array<AgentWorkspaceAgentCapacity>;
|
|
4791
|
-
pageInfo: AgentWorkspaceCapacityPageInfo;
|
|
4792
|
-
summary: AgentWorkspaceCapacitySummary;
|
|
4793
|
-
};
|
|
4794
4753
|
export declare type AgentWorkspaceCapacityError = {
|
|
4795
4754
|
__typename?: 'AgentWorkspaceCapacityError';
|
|
4796
4755
|
code: Scalars['String']['output'];
|
|
@@ -4806,15 +4765,6 @@ export declare type AgentWorkspaceCapacityInput = {
|
|
|
4806
4765
|
statuses?: InputMaybe<Array<AgentWorkspaceCapacityStatus>>;
|
|
4807
4766
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4808
4767
|
};
|
|
4809
|
-
export declare type AgentWorkspaceCapacityPageInfo = {
|
|
4810
|
-
__typename?: 'AgentWorkspaceCapacityPageInfo';
|
|
4811
|
-
currentPage: Scalars['Int']['output'];
|
|
4812
|
-
hasNextPage: Scalars['Boolean']['output'];
|
|
4813
|
-
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4814
|
-
pageSize: Scalars['Int']['output'];
|
|
4815
|
-
totalCount: Scalars['Int']['output'];
|
|
4816
|
-
totalPages: Scalars['Int']['output'];
|
|
4817
|
-
};
|
|
4818
4768
|
export declare enum AgentWorkspaceCapacityStatus {
|
|
4819
4769
|
High = "HIGH",
|
|
4820
4770
|
Idle = "IDLE",
|
|
@@ -4825,90 +4775,126 @@ export declare type AgentWorkspaceCapacitySummary = {
|
|
|
4825
4775
|
__typename?: 'AgentWorkspaceCapacitySummary';
|
|
4826
4776
|
activeAgents: Scalars['Int']['output'];
|
|
4827
4777
|
agentsWithWorkItems: Scalars['Int']['output'];
|
|
4828
|
-
assignedPercent: Scalars['
|
|
4778
|
+
assignedPercent: Scalars['Int']['output'];
|
|
4829
4779
|
overloadedCount: Scalars['Int']['output'];
|
|
4830
4780
|
totalAssignedWorkItems: Scalars['Int']['output'];
|
|
4831
4781
|
totalCapacity: Scalars['Int']['output'];
|
|
4832
4782
|
};
|
|
4833
4783
|
export declare type AgentWorkspaceCatalog = {
|
|
4834
4784
|
__typename?: 'AgentWorkspaceCatalog';
|
|
4835
|
-
|
|
4836
|
-
|
|
4837
|
-
childCatalogIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4785
|
+
catalogType: AgentWorkspaceCatalogType;
|
|
4786
|
+
childCatalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
|
|
4838
4787
|
description?: Maybe<Scalars['String']['output']>;
|
|
4839
4788
|
id: Scalars['ID']['output'];
|
|
4840
|
-
lastEdited?: Maybe<Scalars['JSON']['output']>;
|
|
4841
4789
|
name: Scalars['String']['output'];
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4790
|
+
nestedChildCatalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
|
|
4791
|
+
parentCatalogs?: Maybe<Array<Maybe<AgentWorkspaceCatalog>>>;
|
|
4792
|
+
proficiencyDefinitions: Array<Scalars['String']['output']>;
|
|
4793
|
+
skills?: Maybe<Array<AgentWorkspaceSkill>>;
|
|
4794
|
+
};
|
|
4795
|
+
export declare type AgentWorkspaceCatalogChildCatalogsArgs = {
|
|
4796
|
+
includeParentDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4797
|
+
};
|
|
4798
|
+
export declare type AgentWorkspaceCatalogNestedChildCatalogsArgs = {
|
|
4799
|
+
includeParentDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4800
|
+
maxDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
4845
4801
|
};
|
|
4846
4802
|
export declare type AgentWorkspaceCatalogConnection = {
|
|
4847
4803
|
__typename?: 'AgentWorkspaceCatalogConnection';
|
|
4848
|
-
|
|
4849
|
-
|
|
4804
|
+
edges?: Maybe<Array<AgentWorkspaceCatalogEdge>>;
|
|
4805
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceCatalog>>>;
|
|
4806
|
+
pageInfo: AgentWorkspacePageInfo;
|
|
4850
4807
|
};
|
|
4851
|
-
export declare type
|
|
4852
|
-
|
|
4808
|
+
export declare type AgentWorkspaceCatalogCreateResponse = {
|
|
4809
|
+
__typename?: 'AgentWorkspaceCatalogCreateResponse';
|
|
4810
|
+
catalog?: Maybe<AgentWorkspaceCatalog>;
|
|
4811
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
4812
|
+
success: Scalars['Boolean']['output'];
|
|
4813
|
+
};
|
|
4814
|
+
export declare type AgentWorkspaceCatalogDeleteResponse = {
|
|
4815
|
+
__typename?: 'AgentWorkspaceCatalogDeleteResponse';
|
|
4816
|
+
deletedCatalogId?: Maybe<Scalars['ID']['output']>;
|
|
4817
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
4818
|
+
success: Scalars['Boolean']['output'];
|
|
4819
|
+
};
|
|
4820
|
+
export declare type AgentWorkspaceCatalogEdge = {
|
|
4821
|
+
__typename?: 'AgentWorkspaceCatalogEdge';
|
|
4822
|
+
cursor: Scalars['String']['output'];
|
|
4823
|
+
node: AgentWorkspaceCatalog;
|
|
4824
|
+
};
|
|
4825
|
+
export declare type AgentWorkspaceCatalogFilterInput = {
|
|
4853
4826
|
catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4854
4827
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4855
4828
|
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
4856
|
-
parentCatalogId?: InputMaybe<Scalars['ID']['input']>;
|
|
4857
|
-
};
|
|
4858
|
-
export declare type AgentWorkspaceCatalogPageInfo = {
|
|
4859
|
-
__typename?: 'AgentWorkspaceCatalogPageInfo';
|
|
4860
|
-
currentPage: Scalars['Int']['output'];
|
|
4861
|
-
hasNextPage: Scalars['Boolean']['output'];
|
|
4862
|
-
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4863
|
-
pageSize: Scalars['Int']['output'];
|
|
4864
|
-
totalCount: Scalars['Int']['output'];
|
|
4865
|
-
totalPages: Scalars['Int']['output'];
|
|
4866
4829
|
};
|
|
4867
4830
|
export declare type AgentWorkspaceCatalogType = {
|
|
4868
4831
|
__typename?: 'AgentWorkspaceCatalogType';
|
|
4869
|
-
|
|
4870
|
-
|
|
4832
|
+
catalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
|
|
4833
|
+
childType?: Maybe<AgentWorkspaceCatalogType>;
|
|
4834
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4871
4835
|
id: Scalars['ID']['output'];
|
|
4872
4836
|
name: Scalars['String']['output'];
|
|
4873
|
-
|
|
4874
|
-
|
|
4837
|
+
nestedChildCatalogTypes?: Maybe<Array<AgentWorkspaceCatalogType>>;
|
|
4838
|
+
parentType?: Maybe<AgentWorkspaceCatalogType>;
|
|
4839
|
+
};
|
|
4840
|
+
export declare type AgentWorkspaceCatalogTypeChildTypeArgs = {
|
|
4841
|
+
includeParentDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4842
|
+
};
|
|
4843
|
+
export declare type AgentWorkspaceCatalogTypeNestedChildCatalogTypesArgs = {
|
|
4844
|
+
includeParentDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4845
|
+
maxDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
4875
4846
|
};
|
|
4876
4847
|
export declare type AgentWorkspaceCatalogTypeConnection = {
|
|
4877
4848
|
__typename?: 'AgentWorkspaceCatalogTypeConnection';
|
|
4878
|
-
|
|
4879
|
-
|
|
4849
|
+
edges?: Maybe<Array<AgentWorkspaceCatalogTypeEdge>>;
|
|
4850
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceCatalogType>>>;
|
|
4851
|
+
pageInfo: AgentWorkspacePageInfo;
|
|
4880
4852
|
};
|
|
4881
|
-
export declare type
|
|
4882
|
-
|
|
4853
|
+
export declare type AgentWorkspaceCatalogTypeCreateResponse = {
|
|
4854
|
+
__typename?: 'AgentWorkspaceCatalogTypeCreateResponse';
|
|
4855
|
+
catalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
4856
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
4857
|
+
success: Scalars['Boolean']['output'];
|
|
4858
|
+
};
|
|
4859
|
+
export declare type AgentWorkspaceCatalogTypeDeleteResponse = {
|
|
4860
|
+
__typename?: 'AgentWorkspaceCatalogTypeDeleteResponse';
|
|
4861
|
+
deletedCatalogTypeId?: Maybe<Scalars['ID']['output']>;
|
|
4862
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
4863
|
+
success: Scalars['Boolean']['output'];
|
|
4864
|
+
};
|
|
4865
|
+
export declare type AgentWorkspaceCatalogTypeEdge = {
|
|
4866
|
+
__typename?: 'AgentWorkspaceCatalogTypeEdge';
|
|
4867
|
+
cursor: Scalars['String']['output'];
|
|
4868
|
+
node: AgentWorkspaceCatalogType;
|
|
4869
|
+
};
|
|
4870
|
+
export declare type AgentWorkspaceCatalogTypeFilterInput = {
|
|
4883
4871
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4884
4872
|
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
4885
|
-
parentTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4886
4873
|
};
|
|
4887
|
-
export declare type
|
|
4888
|
-
__typename?: '
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4874
|
+
export declare type AgentWorkspaceCatalogTypeUpdateResponse = {
|
|
4875
|
+
__typename?: 'AgentWorkspaceCatalogTypeUpdateResponse';
|
|
4876
|
+
catalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
4877
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
4878
|
+
success: Scalars['Boolean']['output'];
|
|
4879
|
+
};
|
|
4880
|
+
export declare type AgentWorkspaceCatalogUpdateResponse = {
|
|
4881
|
+
__typename?: 'AgentWorkspaceCatalogUpdateResponse';
|
|
4882
|
+
catalog?: Maybe<AgentWorkspaceCatalog>;
|
|
4883
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
4884
|
+
success: Scalars['Boolean']['output'];
|
|
4895
4885
|
};
|
|
4896
4886
|
export declare type AgentWorkspaceCreateCatalogInput = {
|
|
4897
|
-
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
4898
4887
|
catalogTypeId: Scalars['ID']['input'];
|
|
4899
4888
|
cloudId: Scalars['ID']['input'];
|
|
4900
4889
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4901
|
-
id: Scalars['ID']['input'];
|
|
4902
4890
|
name: Scalars['String']['input'];
|
|
4903
4891
|
parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4904
|
-
|
|
4892
|
+
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4905
4893
|
};
|
|
4906
4894
|
export declare type AgentWorkspaceCreateCatalogTypeInput = {
|
|
4907
|
-
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
4908
4895
|
cloudId: Scalars['ID']['input'];
|
|
4909
|
-
|
|
4896
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4910
4897
|
name: Scalars['String']['input'];
|
|
4911
|
-
nestedChildCatalogTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4912
4898
|
parentTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4913
4899
|
};
|
|
4914
4900
|
export declare type AgentWorkspaceCreateScheduleInput = {
|
|
@@ -4929,23 +4915,6 @@ export declare type AgentWorkspaceCreateSchedulePayload = {
|
|
|
4929
4915
|
schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
4930
4916
|
success: Scalars['Boolean']['output'];
|
|
4931
4917
|
};
|
|
4932
|
-
export declare type AgentWorkspaceCreateSkillInput = {
|
|
4933
|
-
assessmentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4934
|
-
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
4935
|
-
cloudId: Scalars['ID']['input'];
|
|
4936
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
4937
|
-
id: Scalars['ID']['input'];
|
|
4938
|
-
name: Scalars['String']['input'];
|
|
4939
|
-
parentCatalogIds: Array<Scalars['ID']['input']>;
|
|
4940
|
-
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4941
|
-
};
|
|
4942
|
-
export declare type AgentWorkspaceCreateUserSkillInput = {
|
|
4943
|
-
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
4944
|
-
cloudId: Scalars['ID']['input'];
|
|
4945
|
-
proficiency?: InputMaybe<Scalars['Int']['input']>;
|
|
4946
|
-
skillId: Scalars['ID']['input'];
|
|
4947
|
-
userId: Scalars['ID']['input'];
|
|
4948
|
-
};
|
|
4949
4918
|
export declare enum AgentWorkspaceDayOfWeek {
|
|
4950
4919
|
Friday = "FRIDAY",
|
|
4951
4920
|
Monday = "MONDAY",
|
|
@@ -4974,13 +4943,30 @@ export declare type AgentWorkspaceDeleteSchedulePayload = {
|
|
|
4974
4943
|
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
4975
4944
|
success: Scalars['Boolean']['output'];
|
|
4976
4945
|
};
|
|
4946
|
+
export declare type AgentWorkspaceDeleteUserSkillInput = {
|
|
4947
|
+
cloudId: Scalars['ID']['input'];
|
|
4948
|
+
skillId: Scalars['ID']['input'];
|
|
4949
|
+
userId: Scalars['ID']['input'];
|
|
4950
|
+
};
|
|
4951
|
+
export declare type AgentWorkspaceDeleteUserSkillPayload = {
|
|
4952
|
+
__typename?: 'AgentWorkspaceDeleteUserSkillPayload';
|
|
4953
|
+
deletedUserSkillId?: Maybe<Scalars['ID']['output']>;
|
|
4954
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
4955
|
+
success: Scalars['Boolean']['output'];
|
|
4956
|
+
user?: Maybe<AgentWorkspaceAgent>;
|
|
4957
|
+
};
|
|
4977
4958
|
export declare type AgentWorkspacePageInfo = {
|
|
4978
4959
|
__typename?: 'AgentWorkspacePageInfo';
|
|
4979
4960
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
4980
4961
|
hasNextPage: Scalars['Boolean']['output'];
|
|
4981
4962
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4982
4963
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
4983
|
-
|
|
4964
|
+
};
|
|
4965
|
+
export declare type AgentWorkspacePaginationInput = {
|
|
4966
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4967
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
4968
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4969
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4984
4970
|
};
|
|
4985
4971
|
export declare enum AgentWorkspaceRecurrenceFrequency {
|
|
4986
4972
|
Daily = "DAILY",
|
|
@@ -5074,7 +5060,7 @@ export declare type AgentWorkspaceShiftsConnection = {
|
|
|
5074
5060
|
__typename?: 'AgentWorkspaceShiftsConnection';
|
|
5075
5061
|
edges: Array<AgentWorkspaceAgentShiftsEdge>;
|
|
5076
5062
|
metadata: AgentWorkspaceShiftsMetadata;
|
|
5077
|
-
pageInfo:
|
|
5063
|
+
pageInfo: AgentWorkspaceAgentsPageInfo;
|
|
5078
5064
|
summary: AgentWorkspaceShiftsSummary;
|
|
5079
5065
|
};
|
|
5080
5066
|
export declare type AgentWorkspaceShiftsMetadata = {
|
|
@@ -5104,52 +5090,78 @@ export declare type AgentWorkspaceShiftsSummary = {
|
|
|
5104
5090
|
};
|
|
5105
5091
|
export declare type AgentWorkspaceSkill = {
|
|
5106
5092
|
__typename?: 'AgentWorkspaceSkill';
|
|
5107
|
-
assessmentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5108
|
-
attributes?: Maybe<Scalars['JSON']['output']>;
|
|
5109
5093
|
description?: Maybe<Scalars['String']['output']>;
|
|
5110
5094
|
id: Scalars['ID']['output'];
|
|
5111
|
-
lastEdited?: Maybe<Scalars['JSON']['output']>;
|
|
5112
5095
|
name: Scalars['String']['output'];
|
|
5113
|
-
|
|
5114
|
-
proficiencyDefinitions
|
|
5115
|
-
userSkillIds
|
|
5096
|
+
parentCatalogs: Array<AgentWorkspaceCatalog>;
|
|
5097
|
+
proficiencyDefinitions: Array<Scalars['String']['output']>;
|
|
5098
|
+
userSkillIds: Array<Scalars['ID']['output']>;
|
|
5099
|
+
userSkills?: Maybe<Array<AgentWorkspaceUserSkill>>;
|
|
5100
|
+
};
|
|
5101
|
+
export declare type AgentWorkspaceSkillUserSkillsArgs = {
|
|
5102
|
+
includeSkillDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5116
5103
|
};
|
|
5117
5104
|
export declare type AgentWorkspaceSkillConnection = {
|
|
5118
5105
|
__typename?: 'AgentWorkspaceSkillConnection';
|
|
5119
|
-
|
|
5120
|
-
|
|
5106
|
+
edges?: Maybe<Array<AgentWorkspaceSkillEdge>>;
|
|
5107
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceSkill>>>;
|
|
5108
|
+
pageInfo: AgentWorkspacePageInfo;
|
|
5121
5109
|
};
|
|
5122
|
-
export declare type
|
|
5123
|
-
|
|
5110
|
+
export declare type AgentWorkspaceSkillCreateInput = {
|
|
5111
|
+
cloudId: Scalars['ID']['input'];
|
|
5112
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5113
|
+
name: Scalars['String']['input'];
|
|
5114
|
+
parentCatalogIds: Array<Scalars['ID']['input']>;
|
|
5115
|
+
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5116
|
+
};
|
|
5117
|
+
export declare type AgentWorkspaceSkillCreatePayload = {
|
|
5118
|
+
__typename?: 'AgentWorkspaceSkillCreatePayload';
|
|
5119
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
5120
|
+
skill?: Maybe<AgentWorkspaceSkill>;
|
|
5121
|
+
success: Scalars['Boolean']['output'];
|
|
5122
|
+
};
|
|
5123
|
+
export declare type AgentWorkspaceSkillDeletePayload = {
|
|
5124
|
+
__typename?: 'AgentWorkspaceSkillDeletePayload';
|
|
5125
|
+
deletedSkillId?: Maybe<Scalars['ID']['output']>;
|
|
5126
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
5127
|
+
success: Scalars['Boolean']['output'];
|
|
5128
|
+
};
|
|
5129
|
+
export declare type AgentWorkspaceSkillEdge = {
|
|
5130
|
+
__typename?: 'AgentWorkspaceSkillEdge';
|
|
5131
|
+
cursor: Scalars['String']['output'];
|
|
5132
|
+
node: AgentWorkspaceSkill;
|
|
5133
|
+
};
|
|
5134
|
+
export declare type AgentWorkspaceSkillFilterInput = {
|
|
5124
5135
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5125
5136
|
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
5126
5137
|
parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5127
5138
|
};
|
|
5128
|
-
export declare
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5139
|
+
export declare enum AgentWorkspaceSkillMatchType {
|
|
5140
|
+
All = "ALL",
|
|
5141
|
+
Any = "ANY"
|
|
5142
|
+
}
|
|
5143
|
+
export declare type AgentWorkspaceSkillUpdateInput = {
|
|
5144
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5145
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5146
|
+
parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5147
|
+
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5148
|
+
};
|
|
5149
|
+
export declare type AgentWorkspaceSkillUpdatePayload = {
|
|
5150
|
+
__typename?: 'AgentWorkspaceSkillUpdatePayload';
|
|
5151
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
5152
|
+
skill?: Maybe<AgentWorkspaceSkill>;
|
|
5153
|
+
success: Scalars['Boolean']['output'];
|
|
5136
5154
|
};
|
|
5137
5155
|
export declare type AgentWorkspaceUpdateCatalogInput = {
|
|
5138
|
-
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
5139
5156
|
catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5140
|
-
cloudId: Scalars['ID']['input'];
|
|
5141
5157
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5142
|
-
id: Scalars['ID']['input'];
|
|
5143
5158
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5144
5159
|
parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5145
|
-
|
|
5160
|
+
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5146
5161
|
};
|
|
5147
5162
|
export declare type AgentWorkspaceUpdateCatalogTypeInput = {
|
|
5148
|
-
|
|
5149
|
-
cloudId: Scalars['ID']['input'];
|
|
5150
|
-
id: Scalars['ID']['input'];
|
|
5163
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5151
5164
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5152
|
-
nestedChildCatalogTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5153
5165
|
parentTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5154
5166
|
};
|
|
5155
5167
|
export declare type AgentWorkspaceUpdateScheduleInput = {
|
|
@@ -5173,50 +5185,53 @@ export declare type AgentWorkspaceUpdateSchedulePayload = {
|
|
|
5173
5185
|
schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
5174
5186
|
success: Scalars['Boolean']['output'];
|
|
5175
5187
|
};
|
|
5176
|
-
export declare type
|
|
5177
|
-
assessmentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5178
|
-
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
5188
|
+
export declare type AgentWorkspaceUpdateSkillProficiencyInput = {
|
|
5179
5189
|
cloudId: Scalars['ID']['input'];
|
|
5180
|
-
|
|
5181
|
-
|
|
5182
|
-
|
|
5183
|
-
parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5184
|
-
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5190
|
+
proficiencyLevel: Scalars['Int']['input'];
|
|
5191
|
+
skillId: Scalars['ID']['input'];
|
|
5192
|
+
userId: Scalars['ID']['input'];
|
|
5185
5193
|
};
|
|
5186
|
-
export declare type
|
|
5187
|
-
|
|
5188
|
-
|
|
5189
|
-
|
|
5190
|
-
|
|
5194
|
+
export declare type AgentWorkspaceUpdateSkillProficiencyPayload = {
|
|
5195
|
+
__typename?: 'AgentWorkspaceUpdateSkillProficiencyPayload';
|
|
5196
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
5197
|
+
success: Scalars['Boolean']['output'];
|
|
5198
|
+
user?: Maybe<AgentWorkspaceAgent>;
|
|
5199
|
+
userSkill?: Maybe<AgentWorkspaceUserSkill>;
|
|
5200
|
+
};
|
|
5201
|
+
export declare type AgentWorkspaceUserConnection = {
|
|
5202
|
+
__typename?: 'AgentWorkspaceUserConnection';
|
|
5203
|
+
edges?: Maybe<Array<AgentWorkspaceUserEdge>>;
|
|
5204
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceAgent>>>;
|
|
5205
|
+
pageInfo: AgentWorkspacePageInfo;
|
|
5206
|
+
};
|
|
5207
|
+
export declare type AgentWorkspaceUserEdge = {
|
|
5208
|
+
__typename?: 'AgentWorkspaceUserEdge';
|
|
5209
|
+
cursor: Scalars['String']['output'];
|
|
5210
|
+
node: AgentWorkspaceAgent;
|
|
5191
5211
|
};
|
|
5192
5212
|
export declare type AgentWorkspaceUserSkill = {
|
|
5193
5213
|
__typename?: 'AgentWorkspaceUserSkill';
|
|
5194
|
-
attributes?: Maybe<Scalars['JSON']['output']>;
|
|
5195
5214
|
id: Scalars['ID']['output'];
|
|
5196
|
-
|
|
5197
|
-
|
|
5198
|
-
|
|
5215
|
+
proficiencyLevel: Scalars['Int']['output'];
|
|
5216
|
+
skill?: Maybe<AgentWorkspaceSkill>;
|
|
5217
|
+
user?: Maybe<AgentWorkspaceAgent>;
|
|
5199
5218
|
};
|
|
5200
5219
|
export declare type AgentWorkspaceUserSkillConnection = {
|
|
5201
5220
|
__typename?: 'AgentWorkspaceUserSkillConnection';
|
|
5202
|
-
|
|
5203
|
-
|
|
5221
|
+
edges?: Maybe<Array<AgentWorkspaceUserSkillEdge>>;
|
|
5222
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceUserSkill>>>;
|
|
5223
|
+
pageInfo: AgentWorkspacePageInfo;
|
|
5204
5224
|
};
|
|
5205
|
-
export declare type
|
|
5206
|
-
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
skillId?: InputMaybe<Scalars['ID']['input']>;
|
|
5210
|
-
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
5225
|
+
export declare type AgentWorkspaceUserSkillEdge = {
|
|
5226
|
+
__typename?: 'AgentWorkspaceUserSkillEdge';
|
|
5227
|
+
cursor: Scalars['String']['output'];
|
|
5228
|
+
node: AgentWorkspaceUserSkill;
|
|
5211
5229
|
};
|
|
5212
|
-
export declare type
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
pageSize: Scalars['Int']['output'];
|
|
5218
|
-
totalCount: Scalars['Int']['output'];
|
|
5219
|
-
totalPages: Scalars['Int']['output'];
|
|
5230
|
+
export declare type AgentWorkspaceUserSkillFilterInput = {
|
|
5231
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5232
|
+
proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
5233
|
+
skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5234
|
+
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5220
5235
|
};
|
|
5221
5236
|
export declare enum AiCoreApiQuestionType {
|
|
5222
5237
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
@@ -6994,9 +7009,14 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
6994
7009
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
6995
7010
|
title: Scalars['String']['output'];
|
|
6996
7011
|
};
|
|
7012
|
+
export declare type AssetsAriAttribute = AssetsObjectTypeAttribute & {
|
|
7013
|
+
__typename?: 'AssetsARIAttribute';
|
|
7014
|
+
id: Scalars['ID']['output'];
|
|
7015
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7016
|
+
};
|
|
6997
7017
|
export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
|
|
6998
7018
|
__typename?: 'AssetsARIAttributeOnObject';
|
|
6999
|
-
attribute?: Maybe<
|
|
7019
|
+
attribute?: Maybe<AssetsAriAttribute>;
|
|
7000
7020
|
id: Scalars['ID']['output'];
|
|
7001
7021
|
name: Scalars['String']['output'];
|
|
7002
7022
|
value?: Maybe<Array<AssetsAriAttributeValue>>;
|
|
@@ -7015,9 +7035,14 @@ export declare type AssetsAvatar = {
|
|
|
7015
7035
|
url144?: Maybe<Scalars['String']['output']>;
|
|
7016
7036
|
url288?: Maybe<Scalars['String']['output']>;
|
|
7017
7037
|
};
|
|
7038
|
+
export declare type AssetsBooleanAttribute = AssetsObjectTypeAttribute & {
|
|
7039
|
+
__typename?: 'AssetsBooleanAttribute';
|
|
7040
|
+
id: Scalars['ID']['output'];
|
|
7041
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7042
|
+
};
|
|
7018
7043
|
export declare type AssetsBooleanAttributeOnObject = AssetsAttributeOnObject & {
|
|
7019
7044
|
__typename?: 'AssetsBooleanAttributeOnObject';
|
|
7020
|
-
attribute?: Maybe<
|
|
7045
|
+
attribute?: Maybe<AssetsBooleanAttribute>;
|
|
7021
7046
|
id: Scalars['ID']['output'];
|
|
7022
7047
|
name: Scalars['String']['output'];
|
|
7023
7048
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -9113,9 +9138,14 @@ export declare type AssetsDmUpdateDefaultCleansingRuleResponse = {
|
|
|
9113
9138
|
isSuccessful: Scalars['Boolean']['output'];
|
|
9114
9139
|
message?: Maybe<Scalars['String']['output']>;
|
|
9115
9140
|
};
|
|
9141
|
+
export declare type AssetsDateAttribute = AssetsObjectTypeAttribute & {
|
|
9142
|
+
__typename?: 'AssetsDateAttribute';
|
|
9143
|
+
id: Scalars['ID']['output'];
|
|
9144
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9145
|
+
};
|
|
9116
9146
|
export declare type AssetsDateAttributeOnObject = AssetsAttributeOnObject & {
|
|
9117
9147
|
__typename?: 'AssetsDateAttributeOnObject';
|
|
9118
|
-
attribute?: Maybe<
|
|
9148
|
+
attribute?: Maybe<AssetsDateAttribute>;
|
|
9119
9149
|
id: Scalars['ID']['output'];
|
|
9120
9150
|
name: Scalars['String']['output'];
|
|
9121
9151
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -9125,9 +9155,14 @@ export declare type AssetsDateAttributeValue = {
|
|
|
9125
9155
|
__typename?: 'AssetsDateAttributeValue';
|
|
9126
9156
|
displayValue: Scalars['String']['output'];
|
|
9127
9157
|
};
|
|
9158
|
+
export declare type AssetsDatetimeAttribute = AssetsObjectTypeAttribute & {
|
|
9159
|
+
__typename?: 'AssetsDatetimeAttribute';
|
|
9160
|
+
id: Scalars['ID']['output'];
|
|
9161
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9162
|
+
};
|
|
9128
9163
|
export declare type AssetsDatetimeAttributeOnObject = AssetsAttributeOnObject & {
|
|
9129
9164
|
__typename?: 'AssetsDatetimeAttributeOnObject';
|
|
9130
|
-
attribute?: Maybe<
|
|
9165
|
+
attribute?: Maybe<AssetsDatetimeAttribute>;
|
|
9131
9166
|
id: Scalars['ID']['output'];
|
|
9132
9167
|
name: Scalars['String']['output'];
|
|
9133
9168
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -9138,9 +9173,14 @@ export declare type AssetsDatetimeAttributeValue = {
|
|
|
9138
9173
|
displayValue: Scalars['String']['output'];
|
|
9139
9174
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
9140
9175
|
};
|
|
9176
|
+
export declare type AssetsEmailAttribute = AssetsObjectTypeAttribute & {
|
|
9177
|
+
__typename?: 'AssetsEmailAttribute';
|
|
9178
|
+
id: Scalars['ID']['output'];
|
|
9179
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9180
|
+
};
|
|
9141
9181
|
export declare type AssetsEmailAttributeOnObject = AssetsAttributeOnObject & {
|
|
9142
9182
|
__typename?: 'AssetsEmailAttributeOnObject';
|
|
9143
|
-
attribute?: Maybe<
|
|
9183
|
+
attribute?: Maybe<AssetsEmailAttribute>;
|
|
9144
9184
|
id: Scalars['ID']['output'];
|
|
9145
9185
|
name: Scalars['String']['output'];
|
|
9146
9186
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -9151,9 +9191,14 @@ export declare type AssetsEmailAttributeValue = {
|
|
|
9151
9191
|
displayValue: Scalars['String']['output'];
|
|
9152
9192
|
value?: Maybe<Scalars['String']['output']>;
|
|
9153
9193
|
};
|
|
9194
|
+
export declare type AssetsFloatAttribute = AssetsObjectTypeAttribute & {
|
|
9195
|
+
__typename?: 'AssetsFloatAttribute';
|
|
9196
|
+
id: Scalars['ID']['output'];
|
|
9197
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9198
|
+
};
|
|
9154
9199
|
export declare type AssetsFloatAttributeOnObject = AssetsAttributeOnObject & {
|
|
9155
9200
|
__typename?: 'AssetsFloatAttributeOnObject';
|
|
9156
|
-
attribute?: Maybe<
|
|
9201
|
+
attribute?: Maybe<AssetsFloatAttribute>;
|
|
9157
9202
|
id: Scalars['ID']['output'];
|
|
9158
9203
|
name: Scalars['String']['output'];
|
|
9159
9204
|
value?: Maybe<Scalars['Float']['output']>;
|
|
@@ -9164,9 +9209,14 @@ export declare type AssetsFloatAttributeValue = {
|
|
|
9164
9209
|
displayValue: Scalars['String']['output'];
|
|
9165
9210
|
value?: Maybe<Scalars['Float']['output']>;
|
|
9166
9211
|
};
|
|
9212
|
+
export declare type AssetsGroupAttribute = AssetsObjectTypeAttribute & {
|
|
9213
|
+
__typename?: 'AssetsGroupAttribute';
|
|
9214
|
+
id: Scalars['ID']['output'];
|
|
9215
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9216
|
+
};
|
|
9167
9217
|
export declare type AssetsGroupAttributeOnObject = AssetsAttributeOnObject & {
|
|
9168
9218
|
__typename?: 'AssetsGroupAttributeOnObject';
|
|
9169
|
-
attribute?: Maybe<
|
|
9219
|
+
attribute?: Maybe<AssetsGroupAttribute>;
|
|
9170
9220
|
id: Scalars['ID']['output'];
|
|
9171
9221
|
name: Scalars['String']['output'];
|
|
9172
9222
|
value?: Maybe<Array<AssetsGroupAttributeValue>>;
|
|
@@ -9184,9 +9234,14 @@ export declare type AssetsGroupValueData = {
|
|
|
9184
9234
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
9185
9235
|
name?: Maybe<Scalars['String']['output']>;
|
|
9186
9236
|
};
|
|
9237
|
+
export declare type AssetsIpAddressAttribute = AssetsObjectTypeAttribute & {
|
|
9238
|
+
__typename?: 'AssetsIPAddressAttribute';
|
|
9239
|
+
id: Scalars['ID']['output'];
|
|
9240
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9241
|
+
};
|
|
9187
9242
|
export declare type AssetsIpAddressAttributeOnObject = AssetsAttributeOnObject & {
|
|
9188
9243
|
__typename?: 'AssetsIPAddressAttributeOnObject';
|
|
9189
|
-
attribute?: Maybe<
|
|
9244
|
+
attribute?: Maybe<AssetsIpAddressAttribute>;
|
|
9190
9245
|
id: Scalars['ID']['output'];
|
|
9191
9246
|
name: Scalars['String']['output'];
|
|
9192
9247
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -9203,9 +9258,14 @@ export declare type AssetsIcon = {
|
|
|
9203
9258
|
url16?: Maybe<Scalars['String']['output']>;
|
|
9204
9259
|
url48?: Maybe<Scalars['String']['output']>;
|
|
9205
9260
|
};
|
|
9261
|
+
export declare type AssetsIntegerAttribute = AssetsObjectTypeAttribute & {
|
|
9262
|
+
__typename?: 'AssetsIntegerAttribute';
|
|
9263
|
+
id: Scalars['ID']['output'];
|
|
9264
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9265
|
+
};
|
|
9206
9266
|
export declare type AssetsIntegerAttributeOnObject = AssetsAttributeOnObject & {
|
|
9207
9267
|
__typename?: 'AssetsIntegerAttributeOnObject';
|
|
9208
|
-
attribute?: Maybe<
|
|
9268
|
+
attribute?: Maybe<AssetsIntegerAttribute>;
|
|
9209
9269
|
id: Scalars['ID']['output'];
|
|
9210
9270
|
name: Scalars['String']['output'];
|
|
9211
9271
|
value?: Maybe<Scalars['Int']['output']>;
|
|
@@ -9345,9 +9405,14 @@ export declare type AssetsServiceObject = AssetsObjectNode & Node & {
|
|
|
9345
9405
|
export declare type AssetsServiceObjectAttributesArgs = {
|
|
9346
9406
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
9347
9407
|
};
|
|
9408
|
+
export declare type AssetsSpaceAttribute = AssetsObjectTypeAttribute & {
|
|
9409
|
+
__typename?: 'AssetsSpaceAttribute';
|
|
9410
|
+
id: Scalars['ID']['output'];
|
|
9411
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9412
|
+
};
|
|
9348
9413
|
export declare type AssetsSpaceAttributeOnObject = AssetsAttributeOnObject & {
|
|
9349
9414
|
__typename?: 'AssetsSpaceAttributeOnObject';
|
|
9350
|
-
attribute?: Maybe<
|
|
9415
|
+
attribute?: Maybe<AssetsSpaceAttribute>;
|
|
9351
9416
|
id: Scalars['ID']['output'];
|
|
9352
9417
|
name: Scalars['String']['output'];
|
|
9353
9418
|
value?: Maybe<Array<AssetsSpaceAttributeValue>>;
|
|
@@ -9400,16 +9465,26 @@ export declare type AssetsStatusType = {
|
|
|
9400
9465
|
id: Scalars['ID']['output'];
|
|
9401
9466
|
name?: Maybe<Scalars['String']['output']>;
|
|
9402
9467
|
};
|
|
9468
|
+
export declare type AssetsTagAttribute = AssetsObjectTypeAttribute & {
|
|
9469
|
+
__typename?: 'AssetsTagAttribute';
|
|
9470
|
+
id: Scalars['ID']['output'];
|
|
9471
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9472
|
+
};
|
|
9403
9473
|
export declare type AssetsTagAttributeOnObject = AssetsAttributeOnObject & {
|
|
9404
9474
|
__typename?: 'AssetsTagAttributeOnObject';
|
|
9405
|
-
attribute?: Maybe<
|
|
9475
|
+
attribute?: Maybe<AssetsTagAttribute>;
|
|
9406
9476
|
id: Scalars['ID']['output'];
|
|
9407
9477
|
name: Scalars['String']['output'];
|
|
9408
9478
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
9409
9479
|
};
|
|
9480
|
+
export declare type AssetsTextAttribute = AssetsObjectTypeAttribute & {
|
|
9481
|
+
__typename?: 'AssetsTextAttribute';
|
|
9482
|
+
id: Scalars['ID']['output'];
|
|
9483
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9484
|
+
};
|
|
9410
9485
|
export declare type AssetsTextAttributeOnObject = AssetsAttributeOnObject & {
|
|
9411
9486
|
__typename?: 'AssetsTextAttributeOnObject';
|
|
9412
|
-
attribute?: Maybe<
|
|
9487
|
+
attribute?: Maybe<AssetsTextAttribute>;
|
|
9413
9488
|
id: Scalars['ID']['output'];
|
|
9414
9489
|
name: Scalars['String']['output'];
|
|
9415
9490
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -9420,9 +9495,14 @@ export declare type AssetsTextAttributeValue = {
|
|
|
9420
9495
|
displayValue: Scalars['String']['output'];
|
|
9421
9496
|
value?: Maybe<Scalars['String']['output']>;
|
|
9422
9497
|
};
|
|
9498
|
+
export declare type AssetsTextareaAttribute = AssetsObjectTypeAttribute & {
|
|
9499
|
+
__typename?: 'AssetsTextareaAttribute';
|
|
9500
|
+
id: Scalars['ID']['output'];
|
|
9501
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9502
|
+
};
|
|
9423
9503
|
export declare type AssetsTextareaAttributeOnObject = AssetsAttributeOnObject & {
|
|
9424
9504
|
__typename?: 'AssetsTextareaAttributeOnObject';
|
|
9425
|
-
attribute?: Maybe<
|
|
9505
|
+
attribute?: Maybe<AssetsTextareaAttribute>;
|
|
9426
9506
|
id: Scalars['ID']['output'];
|
|
9427
9507
|
name: Scalars['String']['output'];
|
|
9428
9508
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -9433,9 +9513,14 @@ export declare type AssetsTextareaAttributeValue = {
|
|
|
9433
9513
|
displayValue: Scalars['String']['output'];
|
|
9434
9514
|
value?: Maybe<Scalars['String']['output']>;
|
|
9435
9515
|
};
|
|
9516
|
+
export declare type AssetsUrlAttribute = AssetsObjectTypeAttribute & {
|
|
9517
|
+
__typename?: 'AssetsURLAttribute';
|
|
9518
|
+
id: Scalars['ID']['output'];
|
|
9519
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9520
|
+
};
|
|
9436
9521
|
export declare type AssetsUrlAttributeOnObject = AssetsAttributeOnObject & {
|
|
9437
9522
|
__typename?: 'AssetsURLAttributeOnObject';
|
|
9438
|
-
attribute?: Maybe<
|
|
9523
|
+
attribute?: Maybe<AssetsUrlAttribute>;
|
|
9439
9524
|
id: Scalars['ID']['output'];
|
|
9440
9525
|
name: Scalars['String']['output'];
|
|
9441
9526
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -14336,6 +14421,7 @@ export declare type CommerceExpCcpQuery = {
|
|
|
14336
14421
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
14337
14422
|
invoiceGroups?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
14338
14423
|
isPromocodeApplicable?: Maybe<CommerceExpOfferingIsPromocodeApplicable>;
|
|
14424
|
+
lateTrialDowngradeContent?: Maybe<CommerceExpLateTrialDowngradeContent>;
|
|
14339
14425
|
order?: Maybe<CommerceExpCcpOrder>;
|
|
14340
14426
|
orderV3?: Maybe<CommerceExpCcpOrderV3>;
|
|
14341
14427
|
orders?: Maybe<Array<Maybe<CommerceExpCcpOrder>>>;
|
|
@@ -14382,6 +14468,9 @@ export declare type CommerceExpCcpQueryIsPromocodeApplicableArgs = {
|
|
|
14382
14468
|
pricingType?: InputMaybe<CommerceExpCcpPricingType>;
|
|
14383
14469
|
productKey: Scalars['ID']['input'];
|
|
14384
14470
|
};
|
|
14471
|
+
export declare type CommerceExpCcpQueryLateTrialDowngradeContentArgs = {
|
|
14472
|
+
id: Scalars['ID']['input'];
|
|
14473
|
+
};
|
|
14385
14474
|
export declare type CommerceExpCcpQueryOrderArgs = {
|
|
14386
14475
|
id: Scalars['ID']['input'];
|
|
14387
14476
|
};
|
|
@@ -15639,6 +15728,13 @@ export declare type CommerceExpItemValidationError = {
|
|
|
15639
15728
|
errors?: Maybe<Array<CommerceExpLineItemValidationError>>;
|
|
15640
15729
|
itemId?: Maybe<Scalars['String']['output']>;
|
|
15641
15730
|
};
|
|
15731
|
+
export declare type CommerceExpLateTrialDowngradeContent = {
|
|
15732
|
+
__typename?: 'CommerceExpLateTrialDowngradeContent';
|
|
15733
|
+
bulletPoints?: Maybe<Array<Scalars['String']['output']>>;
|
|
15734
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
15735
|
+
hasGeneratedContent?: Maybe<Scalars['Boolean']['output']>;
|
|
15736
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
15737
|
+
};
|
|
15642
15738
|
export declare type CommerceExpLineItemDisplayGroupList = {
|
|
15643
15739
|
__typename?: 'CommerceExpLineItemDisplayGroupList';
|
|
15644
15740
|
items?: Maybe<Array<Maybe<CommerceExpGroupedQuoteLineItem>>>;
|
|
@@ -15672,6 +15768,7 @@ export declare type CommerceExpLineItemResponse = {
|
|
|
15672
15768
|
promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
15673
15769
|
rampPricingLineItems?: Maybe<Array<Maybe<CommerceExpLineItemResponse>>>;
|
|
15674
15770
|
relatesFromEntitlements?: Maybe<Array<Maybe<CommerceExpRelatesFromEntitlementDetails>>>;
|
|
15771
|
+
reservedOrgAndSite?: Maybe<CommerceExpReservedSiteAndOrg>;
|
|
15675
15772
|
saleTransitionDetails?: Maybe<CommerceExpQuoteLineItemSaleTransitionDetails>;
|
|
15676
15773
|
startsAt?: Maybe<CommerceExpLineItemStartsAt>;
|
|
15677
15774
|
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
@@ -16616,6 +16713,11 @@ export declare type CommerceExpRemoveAdminPayload = CommerceExpMutationPayload &
|
|
|
16616
16713
|
errors?: Maybe<Array<MutationError>>;
|
|
16617
16714
|
success: Scalars['Boolean']['output'];
|
|
16618
16715
|
};
|
|
16716
|
+
export declare type CommerceExpReservedSiteAndOrg = {
|
|
16717
|
+
__typename?: 'CommerceExpReservedSiteAndOrg';
|
|
16718
|
+
orgName?: Maybe<Scalars['String']['output']>;
|
|
16719
|
+
siteName?: Maybe<Scalars['String']['output']>;
|
|
16720
|
+
};
|
|
16619
16721
|
export declare type CommerceExpRuleCondition = CommerceExpAndRuleCondition | CommerceExpOrRuleCondition;
|
|
16620
16722
|
export declare enum CommerceExpRuleConditionOperatorType {
|
|
16621
16723
|
And = "AND",
|
|
@@ -23658,7 +23760,7 @@ export declare type ConfluenceCreateWorkflowApplicationRequestInput = {
|
|
|
23658
23760
|
contentId: Scalars['Long']['input'];
|
|
23659
23761
|
contentStatus: GraphQlContentStatus;
|
|
23660
23762
|
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23661
|
-
version
|
|
23763
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
23662
23764
|
workflowId?: InputMaybe<Scalars['Long']['input']>;
|
|
23663
23765
|
workflowStatusId?: InputMaybe<Scalars['Long']['input']>;
|
|
23664
23766
|
};
|
|
@@ -25140,8 +25242,19 @@ export declare type ConfluenceNbmChainsForTransformationNode = {
|
|
|
25140
25242
|
affectedPages?: Maybe<Scalars['Int']['output']>;
|
|
25141
25243
|
brokenPageId?: Maybe<Scalars['ID']['output']>;
|
|
25142
25244
|
chain: Scalars['String']['output'];
|
|
25245
|
+
isReadyForTransformation?: Maybe<Scalars['Boolean']['output']>;
|
|
25143
25246
|
suggestion?: Maybe<Scalars['String']['output']>;
|
|
25144
25247
|
};
|
|
25248
|
+
export declare type ConfluenceNbmExecuteTestTransformationInput = {
|
|
25249
|
+
chain: Scalars['String']['input'];
|
|
25250
|
+
scanId: Scalars['ID']['input'];
|
|
25251
|
+
};
|
|
25252
|
+
export declare type ConfluenceNbmExecuteTestTransformationPayload = Payload & {
|
|
25253
|
+
__typename?: 'ConfluenceNbmExecuteTestTransformationPayload';
|
|
25254
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
25255
|
+
errors?: Maybe<Array<MutationError>>;
|
|
25256
|
+
success: Scalars['Boolean']['output'];
|
|
25257
|
+
};
|
|
25145
25258
|
export declare type ConfluenceNbmPageInfo = {
|
|
25146
25259
|
__typename?: 'ConfluenceNbmPageInfo';
|
|
25147
25260
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -25313,6 +25426,16 @@ export declare type ConfluenceNbmScanSummary = {
|
|
|
25313
25426
|
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
25314
25427
|
totalSpaces?: Maybe<Scalars['Int']['output']>;
|
|
25315
25428
|
};
|
|
25429
|
+
export declare type ConfluenceNbmSetChainReadyForTransformationInput = {
|
|
25430
|
+
chain: Scalars['String']['input'];
|
|
25431
|
+
isReady: Scalars['Boolean']['input'];
|
|
25432
|
+
scanId: Scalars['ID']['input'];
|
|
25433
|
+
};
|
|
25434
|
+
export declare type ConfluenceNbmSetChainReadyForTransformationPayload = Payload & {
|
|
25435
|
+
__typename?: 'ConfluenceNbmSetChainReadyForTransformationPayload';
|
|
25436
|
+
errors?: Maybe<Array<MutationError>>;
|
|
25437
|
+
success: Scalars['Boolean']['output'];
|
|
25438
|
+
};
|
|
25316
25439
|
export declare type ConfluenceNbmStartPerfScanLongTaskInput = {
|
|
25317
25440
|
includeAllSpaces: Scalars['Boolean']['input'];
|
|
25318
25441
|
scanId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25374,6 +25497,29 @@ export declare type ConfluenceNbmTransformationEntry = {
|
|
|
25374
25497
|
transformedChain?: Maybe<Scalars['String']['output']>;
|
|
25375
25498
|
transformerDescription?: Maybe<Scalars['String']['output']>;
|
|
25376
25499
|
};
|
|
25500
|
+
export declare type ConfluenceNbmTransformationJobConnection = {
|
|
25501
|
+
__typename?: 'ConfluenceNbmTransformationJobConnection';
|
|
25502
|
+
edges?: Maybe<Array<Maybe<ConfluenceNbmTransformationJobEdge>>>;
|
|
25503
|
+
nodes?: Maybe<Array<Maybe<ConfluenceNbmTransformationJobSummary>>>;
|
|
25504
|
+
pageInfo: ConfluenceNbmPageInfo;
|
|
25505
|
+
};
|
|
25506
|
+
export declare type ConfluenceNbmTransformationJobEdge = {
|
|
25507
|
+
__typename?: 'ConfluenceNbmTransformationJobEdge';
|
|
25508
|
+
cursor: Scalars['String']['output'];
|
|
25509
|
+
node?: Maybe<ConfluenceNbmTransformationJobSummary>;
|
|
25510
|
+
};
|
|
25511
|
+
export declare type ConfluenceNbmTransformationJobSummary = {
|
|
25512
|
+
__typename?: 'ConfluenceNbmTransformationJobSummary';
|
|
25513
|
+
endTime?: Maybe<Scalars['String']['output']>;
|
|
25514
|
+
id: Scalars['ID']['output'];
|
|
25515
|
+
runMode?: Maybe<ConfluenceNbmTransformationRunMode>;
|
|
25516
|
+
scanId?: Maybe<Scalars['ID']['output']>;
|
|
25517
|
+
startTime?: Maybe<Scalars['String']['output']>;
|
|
25518
|
+
status?: Maybe<ConfluenceNbmTransformationStatus>;
|
|
25519
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
25520
|
+
totalChains?: Maybe<Scalars['Int']['output']>;
|
|
25521
|
+
totalSpaces?: Maybe<Scalars['Int']['output']>;
|
|
25522
|
+
};
|
|
25377
25523
|
export declare type ConfluenceNbmTransformationListConnection = {
|
|
25378
25524
|
__typename?: 'ConfluenceNbmTransformationListConnection';
|
|
25379
25525
|
edges?: Maybe<Array<Maybe<ConfluenceNbmTransformationListEdge>>>;
|
|
@@ -25407,6 +25553,17 @@ export declare type ConfluenceNbmTransformer = {
|
|
|
25407
25553
|
name: Scalars['String']['output'];
|
|
25408
25554
|
transformedChain?: Maybe<Scalars['String']['output']>;
|
|
25409
25555
|
};
|
|
25556
|
+
export declare type ConfluenceNbmUploadTransformerConfigInput = {
|
|
25557
|
+
scanId: Scalars['ID']['input'];
|
|
25558
|
+
transformerNames: Array<InputMaybe<Scalars['String']['input']>>;
|
|
25559
|
+
};
|
|
25560
|
+
export declare type ConfluenceNbmUploadTransformerConfigPayload = Payload & {
|
|
25561
|
+
__typename?: 'ConfluenceNbmUploadTransformerConfigPayload';
|
|
25562
|
+
errors?: Maybe<Array<MutationError>>;
|
|
25563
|
+
scanId?: Maybe<Scalars['ID']['output']>;
|
|
25564
|
+
success: Scalars['Boolean']['output'];
|
|
25565
|
+
transformerNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
25566
|
+
};
|
|
25410
25567
|
export declare enum ConfluenceNbmVerificationAiState {
|
|
25411
25568
|
Broken = "BROKEN",
|
|
25412
25569
|
Unknown = "UNKNOWN",
|
|
@@ -26373,6 +26530,7 @@ export declare type ConfluenceQuestionsConfiguration = {
|
|
|
26373
26530
|
confluenceQuestionsGlobalSpaceKey?: Maybe<Scalars['String']['output']>;
|
|
26374
26531
|
hasConfluenceQuestionsAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
26375
26532
|
isConfluenceQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
26533
|
+
isConfluenceQuestionsInstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
26376
26534
|
isConfluenceQuestionsLicensed?: Maybe<Scalars['Boolean']['output']>;
|
|
26377
26535
|
};
|
|
26378
26536
|
export declare type ConfluenceQuestionsOperationCheck = {
|
|
@@ -26965,6 +27123,8 @@ export declare type ConfluenceSpacePermissionCombinationConnection = {
|
|
|
26965
27123
|
edges?: Maybe<Array<Maybe<ConfluenceSpacePermissionCombinationEdge>>>;
|
|
26966
27124
|
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
26967
27125
|
pageInfo: ConfluenceSpacePermissionCombinationPageInfo;
|
|
27126
|
+
percentComplete?: Maybe<Scalars['String']['output']>;
|
|
27127
|
+
totalOccurrences?: Maybe<Scalars['String']['output']>;
|
|
26968
27128
|
};
|
|
26969
27129
|
export declare type ConfluenceSpacePermissionCombinationEdge = {
|
|
26970
27130
|
__typename?: 'ConfluenceSpacePermissionCombinationEdge';
|
|
@@ -30580,6 +30740,13 @@ export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
|
30580
30740
|
name: Scalars['String']['output'];
|
|
30581
30741
|
spaceDetails?: Maybe<Space>;
|
|
30582
30742
|
};
|
|
30743
|
+
export declare type ConvoAiConfluenceSpaceSummary = {
|
|
30744
|
+
__typename?: 'ConvoAiConfluenceSpaceSummary';
|
|
30745
|
+
generatedAt: Scalars['String']['output'];
|
|
30746
|
+
spaceId: Scalars['ID']['output'];
|
|
30747
|
+
spaceName: Scalars['String']['output'];
|
|
30748
|
+
summary: Scalars['String']['output'];
|
|
30749
|
+
};
|
|
30583
30750
|
export declare type ConvoAiConversationMessage = ConvoAiAgentMessage & {
|
|
30584
30751
|
__typename?: 'ConvoAiConversationMessage';
|
|
30585
30752
|
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
@@ -31120,6 +31287,7 @@ export declare type CplsFilterConfiguration = {
|
|
|
31120
31287
|
contributorDataEntities?: Maybe<CplsContributorDataEntityConnection>;
|
|
31121
31288
|
customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
31122
31289
|
jiraWorkItems?: Maybe<CplsJiraWorkItemConnection>;
|
|
31290
|
+
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
31123
31291
|
};
|
|
31124
31292
|
export declare type CplsFilterConfigurationContributorDataEntitiesArgs = {
|
|
31125
31293
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31262,11 +31430,13 @@ export declare type CplsViewSettings = {
|
|
|
31262
31430
|
alwaysShowNumbersInGraph?: Maybe<Scalars['Boolean']['output']>;
|
|
31263
31431
|
contributionValueType?: Maybe<CplsContributionValueType>;
|
|
31264
31432
|
id: Scalars['ID']['output'];
|
|
31433
|
+
showWorkViewResourcing?: Maybe<Scalars['Boolean']['output']>;
|
|
31265
31434
|
timeScale?: Maybe<CplsTimeScaleType>;
|
|
31266
31435
|
};
|
|
31267
31436
|
export declare type CplsViewSettingsInput = {
|
|
31268
31437
|
alwaysShowNumbersInGraph?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31269
31438
|
contributionValueType?: InputMaybe<CplsContributionValueType>;
|
|
31439
|
+
showWorkViewResourcing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31270
31440
|
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
31271
31441
|
};
|
|
31272
31442
|
export declare type CplsWork = {
|
|
@@ -33807,6 +33977,10 @@ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
|
|
|
33807
33977
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33808
33978
|
helpCenterId: Scalars['ID']['input'];
|
|
33809
33979
|
};
|
|
33980
|
+
export declare enum CustomerServiceReportedByFilter {
|
|
33981
|
+
Other = "OTHER",
|
|
33982
|
+
User = "USER"
|
|
33983
|
+
}
|
|
33810
33984
|
export declare type CustomerServiceRequest = {
|
|
33811
33985
|
__typename?: 'CustomerServiceRequest';
|
|
33812
33986
|
attachments?: Maybe<Array<CustomerServiceRequestAttachment>>;
|
|
@@ -33837,6 +34011,7 @@ export declare type CustomerServiceRequestEdge = {
|
|
|
33837
34011
|
node?: Maybe<CustomerServiceRequest>;
|
|
33838
34012
|
};
|
|
33839
34013
|
export declare type CustomerServiceRequestFilterInput = {
|
|
34014
|
+
reportedBy?: InputMaybe<CustomerServiceReportedByFilter>;
|
|
33840
34015
|
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
33841
34016
|
status?: InputMaybe<CustomerServiceStatusKey>;
|
|
33842
34017
|
};
|
|
@@ -35391,6 +35566,7 @@ export declare type DevAiRovoDevSessionOptions = {
|
|
|
35391
35566
|
isAutonomous?: Maybe<Scalars['Boolean']['output']>;
|
|
35392
35567
|
raisePullRequestOptions?: Maybe<DevAiRovoDevRaisePullRequestOption>;
|
|
35393
35568
|
useDeepPlan?: Maybe<Scalars['Boolean']['output']>;
|
|
35569
|
+
useRovodevRestrictedMode?: Maybe<Scalars['Boolean']['output']>;
|
|
35394
35570
|
};
|
|
35395
35571
|
export declare enum DevAiRovoDevSessionSort {
|
|
35396
35572
|
Asc = "ASC",
|
|
@@ -38982,6 +39158,7 @@ export declare enum ExternalDocumentCategory {
|
|
|
38982
39158
|
Blogpost = "BLOGPOST",
|
|
38983
39159
|
Code = "CODE",
|
|
38984
39160
|
Document = "DOCUMENT",
|
|
39161
|
+
Drive = "DRIVE",
|
|
38985
39162
|
Folder = "FOLDER",
|
|
38986
39163
|
Form = "FORM",
|
|
38987
39164
|
Image = "IMAGE",
|
|
@@ -39747,6 +39924,7 @@ export declare type ExternalWorkItem = Node & {
|
|
|
39747
39924
|
assignee?: Maybe<ExternalUser>;
|
|
39748
39925
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
39749
39926
|
attachments?: Maybe<Array<Maybe<ExternalWorkItemAttachment>>>;
|
|
39927
|
+
categories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
39750
39928
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
39751
39929
|
container?: Maybe<ExternalEntity>;
|
|
39752
39930
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -39758,11 +39936,13 @@ export declare type ExternalWorkItem = Node & {
|
|
|
39758
39936
|
exceedsMaxCollaborators?: Maybe<Scalars['Boolean']['output']>;
|
|
39759
39937
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
39760
39938
|
id: Scalars['ID']['output'];
|
|
39939
|
+
impact?: Maybe<Scalars['String']['output']>;
|
|
39761
39940
|
largeDescription?: Maybe<ExternalLargeContent>;
|
|
39762
39941
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
39763
39942
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
39764
39943
|
parent?: Maybe<ExternalEntity>;
|
|
39765
39944
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
39945
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
39766
39946
|
project?: Maybe<ExternalProject>;
|
|
39767
39947
|
provider?: Maybe<ExternalProvider>;
|
|
39768
39948
|
status?: Maybe<Scalars['String']['output']>;
|
|
@@ -39770,6 +39950,7 @@ export declare type ExternalWorkItem = Node & {
|
|
|
39770
39950
|
team?: Maybe<Scalars['String']['output']>;
|
|
39771
39951
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
39772
39952
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
39953
|
+
urgency?: Maybe<Scalars['String']['output']>;
|
|
39773
39954
|
url?: Maybe<Scalars['String']['output']>;
|
|
39774
39955
|
workItemProject?: Maybe<ExternalWorkItemProject>;
|
|
39775
39956
|
};
|
|
@@ -54642,7 +54823,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
54642
54823
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
54643
54824
|
id: Scalars['ID']['output'];
|
|
54644
54825
|
};
|
|
54645
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54826
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54646
54827
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
54647
54828
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
54648
54829
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -54667,7 +54848,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
54667
54848
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
54668
54849
|
id: Scalars['ID']['output'];
|
|
54669
54850
|
};
|
|
54670
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54851
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54671
54852
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
54672
54853
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
54673
54854
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -56545,7 +56726,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
56545
56726
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
56546
56727
|
id: Scalars['ID']['output'];
|
|
56547
56728
|
};
|
|
56548
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56729
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56549
56730
|
export declare type GraphStoreCypherQueryStringListObject = {
|
|
56550
56731
|
__typename?: 'GraphStoreCypherQueryStringListObject';
|
|
56551
56732
|
values: Array<Scalars['String']['output']>;
|
|
@@ -56567,13 +56748,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
56567
56748
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
56568
56749
|
id: Scalars['ID']['output'];
|
|
56569
56750
|
};
|
|
56570
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56751
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56571
56752
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
56572
56753
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
56573
56754
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
56574
56755
|
id: Scalars['ID']['output'];
|
|
56575
56756
|
};
|
|
56576
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56757
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56577
56758
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
56578
56759
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
56579
56760
|
value: Scalars['Boolean']['output'];
|
|
@@ -56718,7 +56899,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
56718
56899
|
V2 = "V2",
|
|
56719
56900
|
V3 = "V3"
|
|
56720
56901
|
}
|
|
56721
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56902
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56722
56903
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
56723
56904
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
56724
56905
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -57543,7 +57724,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
57543
57724
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
57544
57725
|
id: Scalars['ID']['output'];
|
|
57545
57726
|
};
|
|
57546
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
57727
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
57547
57728
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
57548
57729
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
57549
57730
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -57557,7 +57738,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
57557
57738
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
57558
57739
|
id: Scalars['ID']['output'];
|
|
57559
57740
|
};
|
|
57560
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
57741
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
57561
57742
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
57562
57743
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
57563
57744
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -64115,8 +64296,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
64115
64296
|
lastUpdated: Scalars['DateTime']['output'];
|
|
64116
64297
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
64117
64298
|
};
|
|
64118
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
64119
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
64299
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
64300
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
64120
64301
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
64121
64302
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
64122
64303
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -73867,6 +74048,8 @@ export declare type GraphStoreV2 = {
|
|
|
73867
74048
|
atlassianProjectHasAtlassianProjectUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateConnection>;
|
|
73868
74049
|
atlassianProjectHasAtlassianProjectUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateInverseConnection>;
|
|
73869
74050
|
atlassianProjectLinksAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection>;
|
|
74051
|
+
atlassianTeamContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection>;
|
|
74052
|
+
atlassianTeamContributesToAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalInverseConnection>;
|
|
73870
74053
|
atlassianTeamHasAtlassianAgent?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentConnection>;
|
|
73871
74054
|
atlassianTeamHasAtlassianAgentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentInverseConnection>;
|
|
73872
74055
|
atlassianTeamHasAtlassianTeamCustomFieldValue?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueConnection>;
|
|
@@ -73903,8 +74086,6 @@ export declare type GraphStoreV2 = {
|
|
|
73903
74086
|
atlassianUserContributedToConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluencePageInverseConnection>;
|
|
73904
74087
|
atlassianUserContributedToConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceWhiteboardConnection>;
|
|
73905
74088
|
atlassianUserContributedToConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceWhiteboardInverseConnection>;
|
|
73906
|
-
atlassianUserContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalConnection>;
|
|
73907
|
-
atlassianUserContributesToAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalInverseConnection>;
|
|
73908
74089
|
atlassianUserContributesToAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianProjectConnection>;
|
|
73909
74090
|
atlassianUserContributesToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianProjectInverseConnection>;
|
|
73910
74091
|
atlassianUserCreatedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalConnection>;
|
|
@@ -74666,6 +74847,20 @@ export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectArgs = {
|
|
|
74666
74847
|
id: Scalars['ID']['input'];
|
|
74667
74848
|
sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput>;
|
|
74668
74849
|
};
|
|
74850
|
+
export declare type GraphStoreV2AtlassianTeamContributesToAtlassianGoalArgs = {
|
|
74851
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
74852
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74853
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74854
|
+
id: Scalars['ID']['input'];
|
|
74855
|
+
sort?: InputMaybe<GraphStoreV2AtlassianTeamContributesToAtlassianGoalSortInput>;
|
|
74856
|
+
};
|
|
74857
|
+
export declare type GraphStoreV2AtlassianTeamContributesToAtlassianGoalInverseArgs = {
|
|
74858
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
74859
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74860
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74861
|
+
id: Scalars['ID']['input'];
|
|
74862
|
+
sort?: InputMaybe<GraphStoreV2AtlassianTeamContributesToAtlassianGoalSortInput>;
|
|
74863
|
+
};
|
|
74669
74864
|
export declare type GraphStoreV2AtlassianTeamHasAtlassianAgentArgs = {
|
|
74670
74865
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74671
74866
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -74920,20 +75115,6 @@ export declare type GraphStoreV2AtlassianUserContributedToConfluenceWhiteboardIn
|
|
|
74920
75115
|
id: Scalars['ID']['input'];
|
|
74921
75116
|
sort?: InputMaybe<GraphStoreV2AtlassianUserContributedToConfluenceWhiteboardSortInput>;
|
|
74922
75117
|
};
|
|
74923
|
-
export declare type GraphStoreV2AtlassianUserContributesToAtlassianGoalArgs = {
|
|
74924
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
74925
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74926
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74927
|
-
id: Scalars['ID']['input'];
|
|
74928
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserContributesToAtlassianGoalSortInput>;
|
|
74929
|
-
};
|
|
74930
|
-
export declare type GraphStoreV2AtlassianUserContributesToAtlassianGoalInverseArgs = {
|
|
74931
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
74932
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74933
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74934
|
-
id: Scalars['ID']['input'];
|
|
74935
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserContributesToAtlassianGoalSortInput>;
|
|
74936
|
-
};
|
|
74937
75118
|
export declare type GraphStoreV2AtlassianUserContributesToAtlassianProjectArgs = {
|
|
74938
75119
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74939
75120
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79409,6 +79590,9 @@ export declare type GraphStoreV2AtlassianProjectHasAtlassianProjectUpdateSortInp
|
|
|
79409
79590
|
export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput = {
|
|
79410
79591
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79411
79592
|
};
|
|
79593
|
+
export declare type GraphStoreV2AtlassianTeamContributesToAtlassianGoalSortInput = {
|
|
79594
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79595
|
+
};
|
|
79412
79596
|
export declare type GraphStoreV2AtlassianTeamHasAtlassianAgentSortInput = {
|
|
79413
79597
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79414
79598
|
};
|
|
@@ -79491,9 +79675,6 @@ export declare type GraphStoreV2AtlassianUserContributedToConfluencePageSortInpu
|
|
|
79491
79675
|
export declare type GraphStoreV2AtlassianUserContributedToConfluenceWhiteboardSortInput = {
|
|
79492
79676
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79493
79677
|
};
|
|
79494
|
-
export declare type GraphStoreV2AtlassianUserContributesToAtlassianGoalSortInput = {
|
|
79495
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79496
|
-
};
|
|
79497
79678
|
export declare type GraphStoreV2AtlassianUserContributesToAtlassianProjectSortInput = {
|
|
79498
79679
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79499
79680
|
};
|
|
@@ -80439,7 +80620,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
80439
80620
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
80440
80621
|
id: Scalars['ID']['output'];
|
|
80441
80622
|
};
|
|
80442
|
-
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
80623
|
+
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
80443
80624
|
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
80444
80625
|
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
80445
80626
|
values: Array<Scalars['Boolean']['output']>;
|
|
@@ -83047,6 +83228,34 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectE
|
|
|
83047
83228
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion>;
|
|
83048
83229
|
};
|
|
83049
83230
|
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion = TownsquareProject;
|
|
83231
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection = HasPageInfo & {
|
|
83232
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection';
|
|
83233
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalEdge>>>;
|
|
83234
|
+
pageInfo: PageInfo;
|
|
83235
|
+
};
|
|
83236
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalEdge = {
|
|
83237
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalEdge';
|
|
83238
|
+
createdAt: Scalars['DateTime']['output'];
|
|
83239
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
83240
|
+
id: Scalars['ID']['output'];
|
|
83241
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
83242
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalUnion>;
|
|
83243
|
+
};
|
|
83244
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalInverseConnection = HasPageInfo & {
|
|
83245
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalInverseConnection';
|
|
83246
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalInverseEdge>>>;
|
|
83247
|
+
pageInfo: PageInfo;
|
|
83248
|
+
};
|
|
83249
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalInverseEdge = {
|
|
83250
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalInverseEdge';
|
|
83251
|
+
createdAt: Scalars['DateTime']['output'];
|
|
83252
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
83253
|
+
id: Scalars['ID']['output'];
|
|
83254
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
83255
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalInverseUnion>;
|
|
83256
|
+
};
|
|
83257
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalInverseUnion = TeamV2;
|
|
83258
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalUnion = TownsquareGoal;
|
|
83050
83259
|
export declare type GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentConnection = HasPageInfo & {
|
|
83051
83260
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentConnection';
|
|
83052
83261
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentEdge>>>;
|
|
@@ -83563,34 +83772,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceWh
|
|
|
83563
83772
|
};
|
|
83564
83773
|
export declare type GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
83565
83774
|
export declare type GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
83566
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalConnection = HasPageInfo & {
|
|
83567
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalConnection';
|
|
83568
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalEdge>>>;
|
|
83569
|
-
pageInfo: PageInfo;
|
|
83570
|
-
};
|
|
83571
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalEdge = {
|
|
83572
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalEdge';
|
|
83573
|
-
createdAt: Scalars['DateTime']['output'];
|
|
83574
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
83575
|
-
id: Scalars['ID']['output'];
|
|
83576
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
83577
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalUnion>;
|
|
83578
|
-
};
|
|
83579
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalInverseConnection = HasPageInfo & {
|
|
83580
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalInverseConnection';
|
|
83581
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalInverseEdge>>>;
|
|
83582
|
-
pageInfo: PageInfo;
|
|
83583
|
-
};
|
|
83584
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalInverseEdge = {
|
|
83585
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalInverseEdge';
|
|
83586
|
-
createdAt: Scalars['DateTime']['output'];
|
|
83587
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
83588
|
-
id: Scalars['ID']['output'];
|
|
83589
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
83590
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalInverseUnion>;
|
|
83591
|
-
};
|
|
83592
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalInverseUnion = TeamV2;
|
|
83593
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianGoalUnion = TownsquareGoal;
|
|
83594
83775
|
export declare type GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianProjectConnection = HasPageInfo & {
|
|
83595
83776
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianProjectConnection';
|
|
83596
83777
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianProjectEdge>>>;
|
|
@@ -86537,8 +86718,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
86537
86718
|
lastUpdated: Scalars['DateTime']['output'];
|
|
86538
86719
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
86539
86720
|
};
|
|
86540
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
86541
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
86721
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
86722
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
86542
86723
|
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection = HasPageInfo & {
|
|
86543
86724
|
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection';
|
|
86544
86725
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge>>>;
|
|
@@ -94605,6 +94786,7 @@ export declare type HelpCenterReportingPerformanceIndicatorsWithMetaData = {
|
|
|
94605
94786
|
export declare type HelpCenterReportingResult = HelpCenterReporting | QueryError;
|
|
94606
94787
|
export declare type HelpCenterRovoConfig = {
|
|
94607
94788
|
agentId?: InputMaybe<Scalars['String']['input']>;
|
|
94789
|
+
isRovoEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
94608
94790
|
};
|
|
94609
94791
|
export declare enum HelpCenterSortMode {
|
|
94610
94792
|
Manual = "MANUAL",
|
|
@@ -96015,6 +96197,7 @@ export declare type InfluentsNotificationAnalyticsAttribute = {
|
|
|
96015
96197
|
export declare enum InfluentsNotificationAppearance {
|
|
96016
96198
|
Danger = "DANGER",
|
|
96017
96199
|
Default = "DEFAULT",
|
|
96200
|
+
Hidden = "HIDDEN",
|
|
96018
96201
|
Link = "LINK",
|
|
96019
96202
|
Primary = "PRIMARY",
|
|
96020
96203
|
Subtle = "SUBTLE",
|
|
@@ -98792,6 +98975,10 @@ export declare type JiraBacklogViewStringFilterEdge = {
|
|
|
98792
98975
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
98793
98976
|
node?: Maybe<JiraBacklogViewStringFilter>;
|
|
98794
98977
|
};
|
|
98978
|
+
export declare enum JiraBarColorMode {
|
|
98979
|
+
Custom = "CUSTOM",
|
|
98980
|
+
Status = "STATUS"
|
|
98981
|
+
}
|
|
98795
98982
|
export declare enum JiraBatchWindowPreference {
|
|
98796
98983
|
DefaultBatching = "DEFAULT_BATCHING",
|
|
98797
98984
|
FifteenMinutes = "FIFTEEN_MINUTES",
|
|
@@ -98908,12 +99095,11 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
98908
99095
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
98909
99096
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
98910
99097
|
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
98911
|
-
canEditSprint?: Maybe<Scalars['Boolean']['output']>;
|
|
98912
99098
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
99099
|
+
canManageSprints?: Maybe<Scalars['Boolean']['output']>;
|
|
98913
99100
|
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
98914
99101
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
98915
99102
|
canScheduleIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
98916
|
-
canStartStopSprint?: Maybe<Scalars['Boolean']['output']>;
|
|
98917
99103
|
canTransitionIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
98918
99104
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
98919
99105
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
@@ -99149,6 +99335,15 @@ export declare enum JiraBoardViewSettingsGroupBy {
|
|
|
99149
99335
|
Stories = "STORIES",
|
|
99150
99336
|
Unset = "UNSET"
|
|
99151
99337
|
}
|
|
99338
|
+
export declare type JiraBoardViewSettingsSwimlaneCollapsed = {
|
|
99339
|
+
__typename?: 'JiraBoardViewSettingsSwimlaneCollapsed';
|
|
99340
|
+
swimlaneId: Scalars['ID']['output'];
|
|
99341
|
+
};
|
|
99342
|
+
export declare type JiraBoardViewSettingsSwimlaneCollapsedEdge = {
|
|
99343
|
+
__typename?: 'JiraBoardViewSettingsSwimlaneCollapsedEdge';
|
|
99344
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
99345
|
+
node?: Maybe<JiraBoardViewSettingsSwimlaneCollapsed>;
|
|
99346
|
+
};
|
|
99152
99347
|
export declare type JiraBoardViewStatus = {
|
|
99153
99348
|
__typename?: 'JiraBoardViewStatus';
|
|
99154
99349
|
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -100644,6 +100839,7 @@ export declare type JiraComponentsFieldComponentsArgs = {
|
|
|
100644
100839
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100645
100840
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
100646
100841
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
100842
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
100647
100843
|
};
|
|
100648
100844
|
export declare type JiraComponentsFieldSelectedComponentsConnectionArgs = {
|
|
100649
100845
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -102978,6 +103174,7 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
102978
103174
|
}
|
|
102979
103175
|
export declare type JiraFieldScheme = Node & {
|
|
102980
103176
|
__typename?: 'JiraFieldScheme';
|
|
103177
|
+
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
102981
103178
|
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
102982
103179
|
availableProjects?: Maybe<JiraProjectConnection>;
|
|
102983
103180
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -102988,6 +103185,11 @@ export declare type JiraFieldScheme = Node & {
|
|
|
102988
103185
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
102989
103186
|
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
102990
103187
|
};
|
|
103188
|
+
export declare type JiraFieldSchemeAssociatedIssueTypesArgs = {
|
|
103189
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103190
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103191
|
+
input?: InputMaybe<JiraFieldSchemeAssociatedIssueTypesInput>;
|
|
103192
|
+
};
|
|
102991
103193
|
export declare type JiraFieldSchemeAssociatedProjectsArgs = {
|
|
102992
103194
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
102993
103195
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -103020,6 +103222,9 @@ export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
|
103020
103222
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
103021
103223
|
schemeId: Scalars['ID']['input'];
|
|
103022
103224
|
};
|
|
103225
|
+
export declare type JiraFieldSchemeAssociatedIssueTypesInput = {
|
|
103226
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
103227
|
+
};
|
|
103023
103228
|
export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
103024
103229
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
103025
103230
|
schemeId: Scalars['ID']['input'];
|
|
@@ -105497,6 +105702,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
105497
105702
|
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
105498
105703
|
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
105499
105704
|
translations?: Maybe<Array<JiraFieldTranslation>>;
|
|
105705
|
+
translationsCount?: Maybe<Scalars['Int']['output']>;
|
|
105500
105706
|
translationsLanguagesAvailableToAdd?: Maybe<Array<Scalars['String']['output']>>;
|
|
105501
105707
|
trashedByUser?: Maybe<User>;
|
|
105502
105708
|
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -106466,9 +106672,15 @@ export declare type JiraIssueSearchStatus = {
|
|
|
106466
106672
|
__typename?: 'JiraIssueSearchStatus';
|
|
106467
106673
|
functions?: Maybe<Array<Maybe<JiraJqlFunctionProcessingStatus>>>;
|
|
106468
106674
|
};
|
|
106675
|
+
export declare enum JiraIssueSearchTimelineChildIssuePlanningMode {
|
|
106676
|
+
Date = "DATE",
|
|
106677
|
+
Disabled = "DISABLED",
|
|
106678
|
+
Sprint = "SPRINT"
|
|
106679
|
+
}
|
|
106469
106680
|
export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
106470
106681
|
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
106471
106682
|
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
106683
|
+
barColorMode?: Maybe<JiraBarColorMode>;
|
|
106472
106684
|
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
106473
106685
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
106474
106686
|
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -106874,6 +107086,7 @@ export declare type JiraIssueUpdatesSuggestion = {
|
|
|
106874
107086
|
rovo?: Maybe<JiraRovoConversationMetadata>;
|
|
106875
107087
|
sourceAri: Scalars['ID']['output'];
|
|
106876
107088
|
suggestions?: Maybe<JiraIssueUpdatesSuggestionMetadata>;
|
|
107089
|
+
targetAri: Scalars['ID']['output'];
|
|
106877
107090
|
userAri: Scalars['ID']['output'];
|
|
106878
107091
|
};
|
|
106879
107092
|
export declare type JiraIssueUpdatesSuggestionMetadata = {
|
|
@@ -107946,12 +108159,17 @@ export declare type JiraJswBoardViewSettings = {
|
|
|
107946
108159
|
cardOptions?: Maybe<JiraJswBoardViewSettingsCardOptionConnection>;
|
|
107947
108160
|
groupBy?: Maybe<JiraBoardViewSettingsGroupBy>;
|
|
107948
108161
|
quickFilterToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
108162
|
+
swimlaneCollapsed?: Maybe<JiraJswBoardViewSettingsSwimlaneCollapsedConnection>;
|
|
107949
108163
|
workSuggestionToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
107950
108164
|
};
|
|
107951
108165
|
export declare type JiraJswBoardViewSettingsCardOptionsArgs = {
|
|
107952
108166
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107953
108167
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107954
108168
|
};
|
|
108169
|
+
export declare type JiraJswBoardViewSettingsSwimlaneCollapsedArgs = {
|
|
108170
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
108171
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108172
|
+
};
|
|
107955
108173
|
export declare type JiraJswBoardViewSettingsCardOptionConnection = {
|
|
107956
108174
|
__typename?: 'JiraJswBoardViewSettingsCardOptionConnection';
|
|
107957
108175
|
edges?: Maybe<Array<Maybe<JiraBoardViewSettingsCardOptionEdge>>>;
|
|
@@ -107965,6 +108183,12 @@ export declare type JiraJswBoardViewSettingsCardOptionInput = {
|
|
|
107965
108183
|
export declare type JiraJswBoardViewSettingsQueryInput = {
|
|
107966
108184
|
viewId: Scalars['ID']['input'];
|
|
107967
108185
|
};
|
|
108186
|
+
export declare type JiraJswBoardViewSettingsSwimlaneCollapsedConnection = {
|
|
108187
|
+
__typename?: 'JiraJswBoardViewSettingsSwimlaneCollapsedConnection';
|
|
108188
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewSettingsSwimlaneCollapsedEdge>>>;
|
|
108189
|
+
errors?: Maybe<Array<QueryError>>;
|
|
108190
|
+
pageInfo?: Maybe<PageInfo>;
|
|
108191
|
+
};
|
|
107968
108192
|
export declare type JiraJwmField = {
|
|
107969
108193
|
__typename?: 'JiraJwmField';
|
|
107970
108194
|
encryptedData?: Maybe<Scalars['String']['output']>;
|
|
@@ -108511,6 +108735,7 @@ export declare type JiraMultipleSelectFieldFieldOptionsArgs = {
|
|
|
108511
108735
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108512
108736
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
108513
108737
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
108738
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
108514
108739
|
};
|
|
108515
108740
|
export declare type JiraMultipleSelectFieldSelectableValueOptionsArgs = {
|
|
108516
108741
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -110512,6 +110737,7 @@ export declare type JiraParentIssueFieldParentCandidatesForExistingIssueArgs = {
|
|
|
110512
110737
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110513
110738
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110514
110739
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
110740
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
110515
110741
|
};
|
|
110516
110742
|
export declare type JiraParentOption = JiraHasSelectableValueOptions & JiraSelectableValue & Node & {
|
|
110517
110743
|
__typename?: 'JiraParentOption';
|
|
@@ -111236,6 +111462,7 @@ export declare type JiraPriorityFieldPrioritiesArgs = {
|
|
|
111236
111462
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111237
111463
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
111238
111464
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
111465
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
111239
111466
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
111240
111467
|
};
|
|
111241
111468
|
export declare type JiraPriorityFieldOperationInput = {
|
|
@@ -113767,7 +113994,7 @@ export declare type JiraRecommendedActionEdge = {
|
|
|
113767
113994
|
cursor: Scalars['String']['output'];
|
|
113768
113995
|
node?: Maybe<JiraRecommendedAction>;
|
|
113769
113996
|
};
|
|
113770
|
-
export declare type JiraRecommendedActionEntity = ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
113997
|
+
export declare type JiraRecommendedActionEntity = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
113771
113998
|
export declare type JiraRedaction = {
|
|
113772
113999
|
__typename?: 'JiraRedaction';
|
|
113773
114000
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -114211,6 +114438,7 @@ export declare type JiraResetFaviconInput = {
|
|
|
114211
114438
|
export declare type JiraResetFaviconPayload = Payload & {
|
|
114212
114439
|
__typename?: 'JiraResetFaviconPayload';
|
|
114213
114440
|
errors?: Maybe<Array<MutationError>>;
|
|
114441
|
+
favicon?: Maybe<JiraFavicon>;
|
|
114214
114442
|
success: Scalars['Boolean']['output'];
|
|
114215
114443
|
};
|
|
114216
114444
|
export declare type JiraResetLogoInput = {
|
|
@@ -114219,6 +114447,7 @@ export declare type JiraResetLogoInput = {
|
|
|
114219
114447
|
export declare type JiraResetLogoPayload = Payload & {
|
|
114220
114448
|
__typename?: 'JiraResetLogoPayload';
|
|
114221
114449
|
errors?: Maybe<Array<MutationError>>;
|
|
114450
|
+
logo?: Maybe<JiraLogo>;
|
|
114222
114451
|
success: Scalars['Boolean']['output'];
|
|
114223
114452
|
};
|
|
114224
114453
|
export declare type JiraResolution = Node & {
|
|
@@ -114827,6 +115056,7 @@ export declare type JiraScreenTabLayoutItemEdge = {
|
|
|
114827
115056
|
};
|
|
114828
115057
|
export declare type JiraSearchContextInput = {
|
|
114829
115058
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
115059
|
+
subcontainerId?: InputMaybe<Scalars['Long']['input']>;
|
|
114830
115060
|
};
|
|
114831
115061
|
export declare type JiraSearchableEntity = JiraBoard | JiraCustomFilter | JiraDashboard | JiraIssue | JiraPlan | JiraProject | JiraServiceManagementQueue | JiraSystemFilter;
|
|
114832
115062
|
export declare type JiraSearchableEntityConnection = {
|
|
@@ -116168,10 +116398,6 @@ export declare type JiraSetBoardViewWorkflowSelectedPayload = Payload & {
|
|
|
116168
116398
|
errors?: Maybe<Array<MutationError>>;
|
|
116169
116399
|
success: Scalars['Boolean']['output'];
|
|
116170
116400
|
};
|
|
116171
|
-
export declare type JiraSetCalendarViewFilterInput = {
|
|
116172
|
-
jql: Scalars['String']['input'];
|
|
116173
|
-
viewId: Scalars['ID']['input'];
|
|
116174
|
-
};
|
|
116175
116401
|
export declare type JiraSetCapacityMostRecentSubRouteInput = {
|
|
116176
116402
|
cloudId: Scalars['ID']['input'];
|
|
116177
116403
|
scopeId: Scalars['ID']['input'];
|
|
@@ -116212,6 +116438,7 @@ export declare type JiraSetFaviconInput = {
|
|
|
116212
116438
|
export declare type JiraSetFaviconPayload = Payload & {
|
|
116213
116439
|
__typename?: 'JiraSetFaviconPayload';
|
|
116214
116440
|
errors?: Maybe<Array<MutationError>>;
|
|
116441
|
+
favicon?: Maybe<JiraFavicon>;
|
|
116215
116442
|
success: Scalars['Boolean']['output'];
|
|
116216
116443
|
};
|
|
116217
116444
|
export declare type JiraSetFieldAssociationWithIssueTypesInput = {
|
|
@@ -116353,6 +116580,10 @@ export declare type JiraSetJswBoardViewSettingsPayload = Payload & {
|
|
|
116353
116580
|
jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
|
|
116354
116581
|
success: Scalars['Boolean']['output'];
|
|
116355
116582
|
};
|
|
116583
|
+
export declare type JiraSetJswBoardViewSettingsStringListInput = {
|
|
116584
|
+
values: Array<Scalars['String']['input']>;
|
|
116585
|
+
viewId: Scalars['ID']['input'];
|
|
116586
|
+
};
|
|
116356
116587
|
export declare type JiraSetJswBoardViewSettingsToggleInput = {
|
|
116357
116588
|
enabled: Scalars['Boolean']['input'];
|
|
116358
116589
|
viewId: Scalars['ID']['input'];
|
|
@@ -116364,6 +116595,7 @@ export declare type JiraSetLogoInput = {
|
|
|
116364
116595
|
export declare type JiraSetLogoPayload = Payload & {
|
|
116365
116596
|
__typename?: 'JiraSetLogoPayload';
|
|
116366
116597
|
errors?: Maybe<Array<MutationError>>;
|
|
116598
|
+
logo?: Maybe<JiraLogo>;
|
|
116367
116599
|
success: Scalars['Boolean']['output'];
|
|
116368
116600
|
};
|
|
116369
116601
|
export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
|
|
@@ -116387,6 +116619,15 @@ export declare type JiraSetProjectSelectedDeploymentAppsPropertyPayload = Payloa
|
|
|
116387
116619
|
errors?: Maybe<Array<MutationError>>;
|
|
116388
116620
|
success: Scalars['Boolean']['output'];
|
|
116389
116621
|
};
|
|
116622
|
+
export declare type JiraSetTimelineBarColorModeInput = {
|
|
116623
|
+
barColorMode: JiraBarColorMode;
|
|
116624
|
+
viewId: Scalars['ID']['input'];
|
|
116625
|
+
};
|
|
116626
|
+
export declare type JiraSetTimelineBarColorModePayload = Payload & {
|
|
116627
|
+
__typename?: 'JiraSetTimelineBarColorModePayload';
|
|
116628
|
+
errors?: Maybe<Array<MutationError>>;
|
|
116629
|
+
success: Scalars['Boolean']['output'];
|
|
116630
|
+
};
|
|
116390
116631
|
export declare type JiraSetTimelineHighlightedReleasesInput = {
|
|
116391
116632
|
highlightedReleases: Array<Scalars['ID']['input']>;
|
|
116392
116633
|
viewId: Scalars['ID']['input'];
|
|
@@ -116396,6 +116637,15 @@ export declare type JiraSetTimelineHighlightedReleasesPayload = Payload & {
|
|
|
116396
116637
|
errors?: Maybe<Array<MutationError>>;
|
|
116397
116638
|
success: Scalars['Boolean']['output'];
|
|
116398
116639
|
};
|
|
116640
|
+
export declare type JiraSetTimelineViewHideReleasesInput = {
|
|
116641
|
+
hideReleases: Scalars['Boolean']['input'];
|
|
116642
|
+
viewId: Scalars['ID']['input'];
|
|
116643
|
+
};
|
|
116644
|
+
export declare type JiraSetTimelineViewHideReleasesPayload = Payload & {
|
|
116645
|
+
__typename?: 'JiraSetTimelineViewHideReleasesPayload';
|
|
116646
|
+
errors?: Maybe<Array<MutationError>>;
|
|
116647
|
+
success: Scalars['Boolean']['output'];
|
|
116648
|
+
};
|
|
116399
116649
|
export declare type JiraSetTimelineViewHideWarningsInput = {
|
|
116400
116650
|
hideWarnings: Scalars['Boolean']['input'];
|
|
116401
116651
|
viewId: Scalars['ID']['input'];
|
|
@@ -116688,6 +116938,7 @@ export declare type JiraSingleSelectFieldFieldOptionsArgs = {
|
|
|
116688
116938
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
116689
116939
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
116690
116940
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
116941
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
116691
116942
|
};
|
|
116692
116943
|
export declare type JiraSingleSelectFieldSelectableValueOptionsArgs = {
|
|
116693
116944
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -117847,6 +118098,21 @@ export declare type JiraTimelineIssueSearchCustomInput = {
|
|
|
117847
118098
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
117848
118099
|
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
117849
118100
|
};
|
|
118101
|
+
export declare type JiraTimelineProjectOrBoardInput = {
|
|
118102
|
+
boardId?: InputMaybe<Scalars['Int']['input']>;
|
|
118103
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
118104
|
+
};
|
|
118105
|
+
export declare type JiraTimelineProjectSettings = {
|
|
118106
|
+
__typename?: 'JiraTimelineProjectSettings';
|
|
118107
|
+
childIssuePlanningMode?: Maybe<JiraIssueSearchTimelineChildIssuePlanningMode>;
|
|
118108
|
+
isBoardJqlFilteringOutEpics?: Maybe<Scalars['Boolean']['output']>;
|
|
118109
|
+
isChildIssuePlanningEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
118110
|
+
isGoalsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
118111
|
+
isReleaseEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
118112
|
+
isSprintsFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
118113
|
+
isUserBoardAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
118114
|
+
rankIssueSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
118115
|
+
};
|
|
117850
118116
|
export declare type JiraTimelineStaticViewInput = {
|
|
117851
118117
|
hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117852
118118
|
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
@@ -117868,6 +118134,7 @@ export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSear
|
|
|
117868
118134
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
117869
118135
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
117870
118136
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
118137
|
+
timelineProjectSettings?: Maybe<JiraTimelineProjectSettings>;
|
|
117871
118138
|
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
117872
118139
|
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
117873
118140
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
@@ -117907,6 +118174,9 @@ export declare type JiraTimelineViewIssuesArgs = {
|
|
|
117907
118174
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
117908
118175
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
117909
118176
|
};
|
|
118177
|
+
export declare type JiraTimelineViewTimelineProjectSettingsArgs = {
|
|
118178
|
+
input?: InputMaybe<JiraTimelineProjectOrBoardInput>;
|
|
118179
|
+
};
|
|
117910
118180
|
export declare type JiraTimelineViewTimelineSettingsArgs = {
|
|
117911
118181
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
117912
118182
|
timelineStaticViewInput?: InputMaybe<JiraTimelineStaticViewInput>;
|
|
@@ -117967,6 +118237,7 @@ export declare type JiraTownsquareProjectEntry = {
|
|
|
117967
118237
|
name?: Maybe<Scalars['String']['output']>;
|
|
117968
118238
|
privateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
117969
118239
|
state?: Maybe<Scalars['String']['output']>;
|
|
118240
|
+
workspaceActive?: Maybe<Scalars['Boolean']['output']>;
|
|
117970
118241
|
};
|
|
117971
118242
|
export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
117972
118243
|
__typename?: 'JiraTownsquareProjectField';
|
|
@@ -118972,6 +119243,7 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
118972
119243
|
setFilterSearchMode?: Maybe<JiraFilterSearchModeMutationPayload>;
|
|
118973
119244
|
setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
118974
119245
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
119246
|
+
setIssueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
118975
119247
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
118976
119248
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
118977
119249
|
setProjectListRightPanelState?: Maybe<JiraProjectListRightPanelStateMutationPayload>;
|
|
@@ -118995,6 +119267,9 @@ export declare type JiraUserPreferencesMutationSetIsIssueViewHideDoneChildIssues
|
|
|
118995
119267
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
118996
119268
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
118997
119269
|
};
|
|
119270
|
+
export declare type JiraUserPreferencesMutationSetIssueViewTimestampDisplayModeArgs = {
|
|
119271
|
+
timestampDisplayMode: JiraIssueViewTimestampDisplayMode;
|
|
119272
|
+
};
|
|
118998
119273
|
export declare type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
118999
119274
|
searchMode?: InputMaybe<JiraJqlBuilderSearchMode>;
|
|
119000
119275
|
};
|
|
@@ -120465,6 +120740,19 @@ export declare type JpdViewUpdatedEvent = {
|
|
|
120465
120740
|
viewId: Scalars['Int']['output'];
|
|
120466
120741
|
viewUuid: Scalars['ID']['output'];
|
|
120467
120742
|
};
|
|
120743
|
+
export declare type JpdViewsServiceAxisConfig = {
|
|
120744
|
+
__typename?: 'JpdViewsServiceAxisConfig';
|
|
120745
|
+
dimension: Scalars['String']['output'];
|
|
120746
|
+
field: JpdViewsServiceField;
|
|
120747
|
+
fieldOptions: Array<JpdViewsServiceOption>;
|
|
120748
|
+
reversed: Scalars['Boolean']['output'];
|
|
120749
|
+
};
|
|
120750
|
+
export declare type JpdViewsServiceAxisConfigInput = {
|
|
120751
|
+
dimension: Scalars['String']['input'];
|
|
120752
|
+
field: Scalars['String']['input'];
|
|
120753
|
+
fieldOptions: Array<JpdViewsServiceOptionInput>;
|
|
120754
|
+
reversed: Scalars['Boolean']['input'];
|
|
120755
|
+
};
|
|
120468
120756
|
export declare type JpdViewsServiceCreateGlobalViewInput = {
|
|
120469
120757
|
name: Scalars['String']['input'];
|
|
120470
120758
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
@@ -120484,11 +120772,80 @@ export declare type JpdViewsServiceDeleteGlobalViewPayload = Payload & {
|
|
|
120484
120772
|
errors?: Maybe<Array<MutationError>>;
|
|
120485
120773
|
success: Scalars['Boolean']['output'];
|
|
120486
120774
|
};
|
|
120775
|
+
export declare type JpdViewsServiceField = {
|
|
120776
|
+
__typename?: 'JpdViewsServiceField';
|
|
120777
|
+
jiraFieldKey: Scalars['String']['output'];
|
|
120778
|
+
};
|
|
120779
|
+
export declare type JpdViewsServiceFieldInput = {
|
|
120780
|
+
jiraFieldKey: Scalars['String']['input'];
|
|
120781
|
+
};
|
|
120782
|
+
export declare type JpdViewsServiceFieldRollup = {
|
|
120783
|
+
__typename?: 'JpdViewsServiceFieldRollup';
|
|
120784
|
+
field: JpdViewsServiceField;
|
|
120785
|
+
rollup: Scalars['String']['output'];
|
|
120786
|
+
};
|
|
120787
|
+
export declare type JpdViewsServiceFieldRollupInput = {
|
|
120788
|
+
field: Scalars['String']['input'];
|
|
120789
|
+
rollup: Scalars['String']['input'];
|
|
120790
|
+
};
|
|
120791
|
+
export declare type JpdViewsServiceFilter = {
|
|
120792
|
+
__typename?: 'JpdViewsServiceFilter';
|
|
120793
|
+
field: JpdViewsServiceField;
|
|
120794
|
+
kind: Scalars['String']['output'];
|
|
120795
|
+
values: Array<JpdViewsServiceFilterValue>;
|
|
120796
|
+
};
|
|
120797
|
+
export declare type JpdViewsServiceFilterInput = {
|
|
120798
|
+
field: Scalars['String']['input'];
|
|
120799
|
+
kind: Scalars['String']['input'];
|
|
120800
|
+
values: Array<JpdViewsServiceFilterValueInput>;
|
|
120801
|
+
};
|
|
120802
|
+
export declare type JpdViewsServiceFilterValue = {
|
|
120803
|
+
__typename?: 'JpdViewsServiceFilterValue';
|
|
120804
|
+
enumValue?: Maybe<Scalars['String']['output']>;
|
|
120805
|
+
numericValue?: Maybe<Scalars['Float']['output']>;
|
|
120806
|
+
operator?: Maybe<Scalars['String']['output']>;
|
|
120807
|
+
stringValue?: Maybe<Scalars['String']['output']>;
|
|
120808
|
+
};
|
|
120809
|
+
export declare type JpdViewsServiceFilterValueInput = {
|
|
120810
|
+
enumValue?: InputMaybe<Scalars['String']['input']>;
|
|
120811
|
+
numericValue?: InputMaybe<Scalars['Float']['input']>;
|
|
120812
|
+
operator?: InputMaybe<Scalars['String']['input']>;
|
|
120813
|
+
stringValue?: InputMaybe<Scalars['String']['input']>;
|
|
120814
|
+
};
|
|
120487
120815
|
export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node & {
|
|
120488
120816
|
__typename?: 'JpdViewsServiceGlobalView';
|
|
120817
|
+
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
120818
|
+
colorBy?: Maybe<JpdViewsServiceField>;
|
|
120819
|
+
colorStyle?: Maybe<Scalars['String']['output']>;
|
|
120820
|
+
columnSize?: Maybe<Scalars['String']['output']>;
|
|
120821
|
+
connectionsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
120822
|
+
connectionsLayoutType?: Maybe<Scalars['String']['output']>;
|
|
120823
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
120824
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
120825
|
+
fieldRollups?: Maybe<Array<Maybe<JpdViewsServiceFieldRollup>>>;
|
|
120826
|
+
fields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
120827
|
+
filter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
120828
|
+
groupBy?: Maybe<JpdViewsServiceField>;
|
|
120829
|
+
groupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
120830
|
+
groupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
120831
|
+
hiddenFields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
120832
|
+
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
120833
|
+
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
120489
120834
|
id: Scalars['ID']['output'];
|
|
120835
|
+
layoutType?: Maybe<Scalars['String']['output']>;
|
|
120836
|
+
matrixConfig?: Maybe<JpdViewsServiceMatrixConfig>;
|
|
120490
120837
|
name: Scalars['String']['output'];
|
|
120491
120838
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
120839
|
+
showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
120840
|
+
showConnectionsMatchingGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
120841
|
+
sort?: Maybe<JpdViewsServiceSort>;
|
|
120842
|
+
sortMode?: Maybe<Scalars['String']['output']>;
|
|
120843
|
+
tableColumnSizes?: Maybe<Array<Maybe<JpdViewsServiceTableColumnSize>>>;
|
|
120844
|
+
timelineConfig?: Maybe<JpdViewsServiceTimelineConfig>;
|
|
120845
|
+
verticalGroupBy?: Maybe<JpdViewsServiceField>;
|
|
120846
|
+
verticalGroupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
120847
|
+
verticalGroupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
120848
|
+
viewId: Scalars['String']['output'];
|
|
120492
120849
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
120493
120850
|
};
|
|
120494
120851
|
export declare type JpdViewsServiceGlobalViewConnection = {
|
|
@@ -120504,6 +120861,31 @@ export declare type JpdViewsServiceGlobalViewEdge = {
|
|
|
120504
120861
|
export declare type JpdViewsServiceGlobalViewsByCriteriaInput = {
|
|
120505
120862
|
containsText: Scalars['String']['input'];
|
|
120506
120863
|
};
|
|
120864
|
+
export declare type JpdViewsServiceMatrixConfig = {
|
|
120865
|
+
__typename?: 'JpdViewsServiceMatrixConfig';
|
|
120866
|
+
axes: Array<JpdViewsServiceAxisConfig>;
|
|
120867
|
+
};
|
|
120868
|
+
export declare type JpdViewsServiceMatrixConfigInput = {
|
|
120869
|
+
axes: Array<JpdViewsServiceAxisConfigInput>;
|
|
120870
|
+
};
|
|
120871
|
+
export declare type JpdViewsServiceNestedId = {
|
|
120872
|
+
__typename?: 'JpdViewsServiceNestedId';
|
|
120873
|
+
id: Scalars['String']['output'];
|
|
120874
|
+
};
|
|
120875
|
+
export declare type JpdViewsServiceNestedIdInput = {
|
|
120876
|
+
id: Scalars['String']['input'];
|
|
120877
|
+
};
|
|
120878
|
+
export declare type JpdViewsServiceOption = {
|
|
120879
|
+
__typename?: 'JpdViewsServiceOption';
|
|
120880
|
+
id: Scalars['String']['output'];
|
|
120881
|
+
label: Scalars['String']['output'];
|
|
120882
|
+
weight: Scalars['Int']['output'];
|
|
120883
|
+
};
|
|
120884
|
+
export declare type JpdViewsServiceOptionInput = {
|
|
120885
|
+
id: Scalars['String']['input'];
|
|
120886
|
+
label: Scalars['String']['input'];
|
|
120887
|
+
weight: Scalars['Int']['input'];
|
|
120888
|
+
};
|
|
120507
120889
|
export declare type JpdViewsServicePaginationInput = {
|
|
120508
120890
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
120509
120891
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -120519,18 +120901,81 @@ export declare type JpdViewsServiceRerankGlobalViewPayload = Payload & {
|
|
|
120519
120901
|
errors?: Maybe<Array<MutationError>>;
|
|
120520
120902
|
success: Scalars['Boolean']['output'];
|
|
120521
120903
|
};
|
|
120904
|
+
export declare type JpdViewsServiceSort = {
|
|
120905
|
+
__typename?: 'JpdViewsServiceSort';
|
|
120906
|
+
field: JpdViewsServiceField;
|
|
120907
|
+
order: Scalars['String']['output'];
|
|
120908
|
+
};
|
|
120522
120909
|
export declare type JpdViewsServiceSortByInput = {
|
|
120523
120910
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
120524
120911
|
mode?: InputMaybe<JpdViewsServiceViewSortMode>;
|
|
120525
120912
|
order?: InputMaybe<JpdViewsServiceSortOrder>;
|
|
120526
120913
|
};
|
|
120914
|
+
export declare type JpdViewsServiceSortInput = {
|
|
120915
|
+
field: Scalars['String']['input'];
|
|
120916
|
+
order: Scalars['String']['input'];
|
|
120917
|
+
};
|
|
120527
120918
|
export declare enum JpdViewsServiceSortOrder {
|
|
120528
120919
|
Asc = "ASC",
|
|
120529
120920
|
Desc = "DESC"
|
|
120530
120921
|
}
|
|
120922
|
+
export declare type JpdViewsServiceTableColumnSize = {
|
|
120923
|
+
__typename?: 'JpdViewsServiceTableColumnSize';
|
|
120924
|
+
field: JpdViewsServiceField;
|
|
120925
|
+
size: Scalars['Int']['output'];
|
|
120926
|
+
};
|
|
120927
|
+
export declare type JpdViewsServiceTableColumnSizeInput = {
|
|
120928
|
+
field: Scalars['String']['input'];
|
|
120929
|
+
size: Scalars['Int']['input'];
|
|
120930
|
+
};
|
|
120931
|
+
export declare type JpdViewsServiceTimelineConfig = {
|
|
120932
|
+
__typename?: 'JpdViewsServiceTimelineConfig';
|
|
120933
|
+
dueDateField: JpdViewsServiceField;
|
|
120934
|
+
endTimestamp: Scalars['String']['output'];
|
|
120935
|
+
mode: Scalars['String']['output'];
|
|
120936
|
+
startDateField: JpdViewsServiceField;
|
|
120937
|
+
startTimestamp: Scalars['String']['output'];
|
|
120938
|
+
summaryCardField: JpdViewsServiceField;
|
|
120939
|
+
};
|
|
120940
|
+
export declare type JpdViewsServiceTimelineConfigInput = {
|
|
120941
|
+
dueDateField: Scalars['String']['input'];
|
|
120942
|
+
endTimestamp: Scalars['String']['input'];
|
|
120943
|
+
mode: Scalars['String']['input'];
|
|
120944
|
+
startDateField: Scalars['String']['input'];
|
|
120945
|
+
startTimestamp: Scalars['String']['input'];
|
|
120946
|
+
summaryCardField: Scalars['String']['input'];
|
|
120947
|
+
};
|
|
120531
120948
|
export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
120949
|
+
boldColors?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120950
|
+
colorBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
120951
|
+
colorStyle?: InputMaybe<Scalars['String']['input']>;
|
|
120952
|
+
columnSize?: InputMaybe<Scalars['String']['input']>;
|
|
120953
|
+
connectionsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
120954
|
+
connectionsLayoutType?: InputMaybe<Scalars['String']['input']>;
|
|
120955
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
120956
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
120957
|
+
fieldRollups?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldRollupInput>>>;
|
|
120958
|
+
fields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
120959
|
+
filter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
120960
|
+
groupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
120961
|
+
groupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
120962
|
+
groupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
120963
|
+
hiddenFields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
120964
|
+
hideEmptyColumns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120965
|
+
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120532
120966
|
id: Scalars['ID']['input'];
|
|
120967
|
+
layoutType?: InputMaybe<Scalars['String']['input']>;
|
|
120968
|
+
matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
|
|
120533
120969
|
name: Scalars['String']['input'];
|
|
120970
|
+
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120971
|
+
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120972
|
+
sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
|
|
120973
|
+
sortMode?: InputMaybe<Scalars['String']['input']>;
|
|
120974
|
+
tableColumnSizes?: InputMaybe<Array<InputMaybe<JpdViewsServiceTableColumnSizeInput>>>;
|
|
120975
|
+
timelineConfig?: InputMaybe<JpdViewsServiceTimelineConfigInput>;
|
|
120976
|
+
verticalGroupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
120977
|
+
verticalGroupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
120978
|
+
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
120534
120979
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
120535
120980
|
};
|
|
120536
120981
|
export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
|
|
@@ -120539,6 +120984,13 @@ export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
|
|
|
120539
120984
|
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
120540
120985
|
success: Scalars['Boolean']['output'];
|
|
120541
120986
|
};
|
|
120987
|
+
export declare type JpdViewsServiceUserHydrationExample = {
|
|
120988
|
+
__typename?: 'JpdViewsServiceUserHydrationExample';
|
|
120989
|
+
id: Scalars['ID']['output'];
|
|
120990
|
+
userId: Scalars['String']['output'];
|
|
120991
|
+
userProfileByAri?: Maybe<User>;
|
|
120992
|
+
userProfileById?: Maybe<User>;
|
|
120993
|
+
};
|
|
120542
120994
|
export declare type JpdViewsServiceViewBase = {
|
|
120543
120995
|
name: Scalars['String']['output'];
|
|
120544
120996
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
@@ -121506,11 +121958,13 @@ export declare enum JsmConversationMessageSource {
|
|
|
121506
121958
|
export declare type JsmConversationSettings = {
|
|
121507
121959
|
__typename?: 'JsmConversationSettings';
|
|
121508
121960
|
assignedTeam?: Maybe<TeamV2>;
|
|
121961
|
+
defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
121509
121962
|
projectAri?: Maybe<Scalars['String']['output']>;
|
|
121510
121963
|
slaList?: Maybe<Array<Maybe<JsmConversationSla>>>;
|
|
121511
121964
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
121512
121965
|
};
|
|
121513
121966
|
export declare type JsmConversationSettingsInput = {
|
|
121967
|
+
defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
121514
121968
|
projectAri?: InputMaybe<Scalars['String']['input']>;
|
|
121515
121969
|
slaList?: InputMaybe<Array<JsmConversationSlaInput>>;
|
|
121516
121970
|
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -121909,6 +122363,10 @@ export declare type KitsuneDateValue = {
|
|
|
121909
122363
|
_id: Scalars['ID']['output'];
|
|
121910
122364
|
value: Scalars['Date']['output'];
|
|
121911
122365
|
};
|
|
122366
|
+
export declare type KitsuneDeletedRecord = {
|
|
122367
|
+
__typename?: 'KitsuneDeletedRecord';
|
|
122368
|
+
id: Scalars['ID']['output'];
|
|
122369
|
+
};
|
|
121912
122370
|
export declare type KitsuneEdge = {
|
|
121913
122371
|
cursor: Scalars['String']['output'];
|
|
121914
122372
|
};
|
|
@@ -124466,6 +124924,7 @@ export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
|
124466
124924
|
cloudAppVersionId: Scalars['ID']['output'];
|
|
124467
124925
|
compatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
124468
124926
|
scopes: Array<CloudAppScope>;
|
|
124927
|
+
scopesFetchError?: Maybe<Scalars['String']['output']>;
|
|
124469
124928
|
};
|
|
124470
124929
|
export declare type MarketplaceCloudFortified = {
|
|
124471
124930
|
__typename?: 'MarketplaceCloudFortified';
|
|
@@ -127701,6 +128160,7 @@ export declare type MercuryArchiveFocusAreaChange = MercuryChangeInterface & Nod
|
|
|
127701
128160
|
updatedDate: Scalars['DateTime']['output'];
|
|
127702
128161
|
};
|
|
127703
128162
|
export declare type MercuryArchiveFocusAreaChangeInput = {
|
|
128163
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
127704
128164
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
127705
128165
|
};
|
|
127706
128166
|
export declare type MercuryArchiveFocusAreaInput = {
|
|
@@ -127781,6 +128241,7 @@ export declare type MercuryChangeParentFocusAreaChange = MercuryChangeInterface
|
|
|
127781
128241
|
};
|
|
127782
128242
|
export declare type MercuryChangeParentFocusAreaChangeInput = {
|
|
127783
128243
|
focusAreaId: Scalars['ID']['input'];
|
|
128244
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
127784
128245
|
targetFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
127785
128246
|
};
|
|
127786
128247
|
export declare type MercuryChangeProposal = Node & {
|
|
@@ -128202,6 +128663,7 @@ export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node
|
|
|
128202
128663
|
export declare type MercuryCreateFocusAreaChangeInput = {
|
|
128203
128664
|
focusAreaName: Scalars['String']['input'];
|
|
128204
128665
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
128666
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
128205
128667
|
targetFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
128206
128668
|
};
|
|
128207
128669
|
export declare type MercuryCreateFocusAreaCustomFieldDefinitionInput = {
|
|
@@ -128653,6 +129115,13 @@ export declare enum MercuryEventType {
|
|
|
128653
129115
|
Unlink = "UNLINK",
|
|
128654
129116
|
Update = "UPDATE"
|
|
128655
129117
|
}
|
|
129118
|
+
export declare type MercuryExpenditureType = {
|
|
129119
|
+
__typename?: 'MercuryExpenditureType';
|
|
129120
|
+
displayName: Scalars['String']['output'];
|
|
129121
|
+
id: Scalars['ID']['output'];
|
|
129122
|
+
key: Scalars['String']['output'];
|
|
129123
|
+
order: Scalars['Int']['output'];
|
|
129124
|
+
};
|
|
128656
129125
|
export declare type MercuryExternalOwner = MercuryExternalUser & {
|
|
128657
129126
|
__typename?: 'MercuryExternalOwner';
|
|
128658
129127
|
email?: Maybe<Scalars['String']['output']>;
|
|
@@ -129222,7 +129691,9 @@ export declare type MercuryFundsQueryApi = {
|
|
|
129222
129691
|
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
129223
129692
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
129224
129693
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
129694
|
+
costTypes?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
129225
129695
|
currencies?: Maybe<Array<MercuryCurrency>>;
|
|
129696
|
+
expenditureTypes?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
129226
129697
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
129227
129698
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
129228
129699
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
@@ -129246,9 +129717,15 @@ export declare type MercuryFundsQueryApiCostSubtypesSearchArgs = {
|
|
|
129246
129717
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
129247
129718
|
sort?: InputMaybe<Array<InputMaybe<MercuryCostSubtypeSort>>>;
|
|
129248
129719
|
};
|
|
129720
|
+
export declare type MercuryFundsQueryApiCostTypesArgs = {
|
|
129721
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129722
|
+
};
|
|
129249
129723
|
export declare type MercuryFundsQueryApiCurrenciesArgs = {
|
|
129250
129724
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129251
129725
|
};
|
|
129726
|
+
export declare type MercuryFundsQueryApiExpenditureTypesArgs = {
|
|
129727
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129728
|
+
};
|
|
129252
129729
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
|
|
129253
129730
|
id: Scalars['ID']['input'];
|
|
129254
129731
|
};
|
|
@@ -129558,6 +130035,24 @@ export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
|
129558
130035
|
errors?: Maybe<Array<MutationError>>;
|
|
129559
130036
|
success: Scalars['Boolean']['output'];
|
|
129560
130037
|
};
|
|
130038
|
+
export declare type MercuryLinkRiskToFocusAreasInput = {
|
|
130039
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
130040
|
+
id: Scalars['ID']['input'];
|
|
130041
|
+
};
|
|
130042
|
+
export declare type MercuryLinkRiskToFocusAreasPayload = Payload & {
|
|
130043
|
+
__typename?: 'MercuryLinkRiskToFocusAreasPayload';
|
|
130044
|
+
errors?: Maybe<Array<MutationError>>;
|
|
130045
|
+
success: Scalars['Boolean']['output'];
|
|
130046
|
+
};
|
|
130047
|
+
export declare type MercuryLinkWorkToChangeProposalInput = {
|
|
130048
|
+
changeProposalId: Scalars['ID']['input'];
|
|
130049
|
+
workIds: Array<Scalars['ID']['input']>;
|
|
130050
|
+
};
|
|
130051
|
+
export declare type MercuryLinkWorkToChangeProposalPayload = Payload & {
|
|
130052
|
+
__typename?: 'MercuryLinkWorkToChangeProposalPayload';
|
|
130053
|
+
errors?: Maybe<Array<MutationError>>;
|
|
130054
|
+
success: Scalars['Boolean']['output'];
|
|
130055
|
+
};
|
|
129561
130056
|
export declare type MercuryLinkWorkToFocusAreaInput = {
|
|
129562
130057
|
cloudId: Scalars['ID']['input'];
|
|
129563
130058
|
externalChildWorkIds: Array<Scalars['ID']['input']>;
|
|
@@ -129622,6 +130117,7 @@ export declare type MercuryMoveFundsChange = MercuryChangeInterface & Node & {
|
|
|
129622
130117
|
};
|
|
129623
130118
|
export declare type MercuryMoveFundsChangeInput = {
|
|
129624
130119
|
amount: Scalars['BigDecimal']['input'];
|
|
130120
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
129625
130121
|
sourceFocusAreaId: Scalars['ID']['input'];
|
|
129626
130122
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
129627
130123
|
};
|
|
@@ -129642,6 +130138,7 @@ export declare type MercuryMovePositionsChange = MercuryChangeInterface & Node &
|
|
|
129642
130138
|
};
|
|
129643
130139
|
export declare type MercuryMovePositionsChangeInput = {
|
|
129644
130140
|
cost?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
130141
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
129645
130142
|
positionsAmount: Scalars['Int']['input'];
|
|
129646
130143
|
sourceFocusAreaId: Scalars['ID']['input'];
|
|
129647
130144
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
@@ -129909,6 +130406,17 @@ export declare type MercuryNormalizedWork = {
|
|
|
129909
130406
|
targetDate?: Maybe<MercuryNormalizedWorkTargetDate>;
|
|
129910
130407
|
type?: Maybe<Scalars['String']['output']>;
|
|
129911
130408
|
};
|
|
130409
|
+
export declare type MercuryNormalizedWorkSearchFiltersInput = {
|
|
130410
|
+
owner?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
130411
|
+
source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
130412
|
+
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
130413
|
+
targetDate?: InputMaybe<MercuryNormalizedWorkTargetDateInput>;
|
|
130414
|
+
type?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
130415
|
+
};
|
|
130416
|
+
export declare type MercuryNormalizedWorkSortInput = {
|
|
130417
|
+
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
130418
|
+
order: SortOrder;
|
|
130419
|
+
};
|
|
129912
130420
|
export declare type MercuryNormalizedWorkSourceStatus = {
|
|
129913
130421
|
__typename?: 'MercuryNormalizedWorkSourceStatus';
|
|
129914
130422
|
color?: Maybe<MercuryNormalizedWorkStatusColor>;
|
|
@@ -129931,6 +130439,10 @@ export declare type MercuryNormalizedWorkTargetDate = {
|
|
|
129931
130439
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
129932
130440
|
targetDateType?: Maybe<MercuryNormalizedWorkTargetDateType>;
|
|
129933
130441
|
};
|
|
130442
|
+
export declare type MercuryNormalizedWorkTargetDateInput = {
|
|
130443
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
130444
|
+
targetDateType?: InputMaybe<MercuryNormalizedWorkTargetDateType>;
|
|
130445
|
+
};
|
|
129934
130446
|
export declare enum MercuryNormalizedWorkTargetDateType {
|
|
129935
130447
|
Day = "DAY",
|
|
129936
130448
|
Month = "MONTH",
|
|
@@ -129983,6 +130495,7 @@ export declare enum MercuryPermission {
|
|
|
129983
130495
|
CreateFocusAreaUpdate = "CREATE_FOCUS_AREA_UPDATE",
|
|
129984
130496
|
CreateFocusAreaWorkLink = "CREATE_FOCUS_AREA_WORK_LINK",
|
|
129985
130497
|
CreateProposal = "CREATE_PROPOSAL",
|
|
130498
|
+
CreateRisk = "CREATE_RISK",
|
|
129986
130499
|
CreateStrategicEvent = "CREATE_STRATEGIC_EVENT",
|
|
129987
130500
|
DeleteFocusArea = "DELETE_FOCUS_AREA",
|
|
129988
130501
|
DeleteFocusAreaGoalLink = "DELETE_FOCUS_AREA_GOAL_LINK",
|
|
@@ -129991,6 +130504,7 @@ export declare enum MercuryPermission {
|
|
|
129991
130504
|
DeleteFocusAreaView = "DELETE_FOCUS_AREA_VIEW",
|
|
129992
130505
|
DeleteFocusAreaWorkLink = "DELETE_FOCUS_AREA_WORK_LINK",
|
|
129993
130506
|
DeleteProposal = "DELETE_PROPOSAL",
|
|
130507
|
+
DeleteRisk = "DELETE_RISK",
|
|
129994
130508
|
DeleteStrategicEvent = "DELETE_STRATEGIC_EVENT",
|
|
129995
130509
|
EditFocusAreaAbout = "EDIT_FOCUS_AREA_ABOUT",
|
|
129996
130510
|
EditFocusAreaName = "EDIT_FOCUS_AREA_NAME",
|
|
@@ -129998,12 +130512,14 @@ export declare enum MercuryPermission {
|
|
|
129998
130512
|
EditFocusAreaType = "EDIT_FOCUS_AREA_TYPE",
|
|
129999
130513
|
EditProposal = "EDIT_PROPOSAL",
|
|
130000
130514
|
EditProposalStatus = "EDIT_PROPOSAL_STATUS",
|
|
130515
|
+
EditRisk = "EDIT_RISK",
|
|
130001
130516
|
EditStrategicEvent = "EDIT_STRATEGIC_EVENT",
|
|
130002
130517
|
ExportFocusArea = "EXPORT_FOCUS_AREA",
|
|
130003
130518
|
ExportFocusAreaView = "EXPORT_FOCUS_AREA_VIEW",
|
|
130004
130519
|
Manage = "MANAGE",
|
|
130005
130520
|
Read = "READ",
|
|
130006
130521
|
ViewFocusAreaFund = "VIEW_FOCUS_AREA_FUND",
|
|
130522
|
+
ViewRisk = "VIEW_RISK",
|
|
130007
130523
|
ViewStrategicEvent = "VIEW_STRATEGIC_EVENT",
|
|
130008
130524
|
Write = "WRITE"
|
|
130009
130525
|
}
|
|
@@ -130078,6 +130594,7 @@ export declare type MercuryPositionAllocationChange = MercuryChangeInterface & N
|
|
|
130078
130594
|
updatedDate: Scalars['DateTime']['output'];
|
|
130079
130595
|
};
|
|
130080
130596
|
export declare type MercuryPositionAllocationChangeInput = {
|
|
130597
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
130081
130598
|
positionId: Scalars['ID']['input'];
|
|
130082
130599
|
sourceFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
130083
130600
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
@@ -130211,7 +130728,9 @@ export declare type MercuryProviderOrchestrationMutationApi = {
|
|
|
130211
130728
|
deleteFocusAreaWorkLink?: Maybe<MercuryDeleteFocusAreaWorkLinkPayload>;
|
|
130212
130729
|
deleteFocusAreaWorkLinks?: Maybe<MercuryDeleteFocusAreaWorkLinksPayload>;
|
|
130213
130730
|
linkAtlassianWorkToFocusArea?: Maybe<MercuryLinkAtlassianWorkToFocusAreaPayload>;
|
|
130731
|
+
linkWorkToChangeProposal?: Maybe<MercuryLinkWorkToChangeProposalPayload>;
|
|
130214
130732
|
linkWorkToFocusArea?: Maybe<MercuryLinkWorkToFocusAreaPayload>;
|
|
130733
|
+
unlinkWorkFromChangeProposal?: Maybe<MercuryUnlinkWorkFromChangeProposalPayload>;
|
|
130215
130734
|
};
|
|
130216
130735
|
export declare type MercuryProviderOrchestrationMutationApiDeleteFocusAreaWorkLinkArgs = {
|
|
130217
130736
|
input: MercuryDeleteFocusAreaWorkLinkInput;
|
|
@@ -130222,9 +130741,15 @@ export declare type MercuryProviderOrchestrationMutationApiDeleteFocusAreaWorkLi
|
|
|
130222
130741
|
export declare type MercuryProviderOrchestrationMutationApiLinkAtlassianWorkToFocusAreaArgs = {
|
|
130223
130742
|
input: MercuryLinkAtlassianWorkToFocusAreaInput;
|
|
130224
130743
|
};
|
|
130744
|
+
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToChangeProposalArgs = {
|
|
130745
|
+
input: MercuryLinkWorkToChangeProposalInput;
|
|
130746
|
+
};
|
|
130225
130747
|
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaArgs = {
|
|
130226
130748
|
input: MercuryLinkWorkToFocusAreaInput;
|
|
130227
130749
|
};
|
|
130750
|
+
export declare type MercuryProviderOrchestrationMutationApiUnlinkWorkFromChangeProposalArgs = {
|
|
130751
|
+
input: MercuryUnlinkWorkFromChangeProposalInput;
|
|
130752
|
+
};
|
|
130228
130753
|
export declare type MercuryProviderOrchestrationQueryApi = {
|
|
130229
130754
|
__typename?: 'MercuryProviderOrchestrationQueryApi';
|
|
130230
130755
|
connectedProviders?: Maybe<MercuryProviderConnection>;
|
|
@@ -130578,6 +131103,7 @@ export declare type MercuryRenameFocusAreaChange = MercuryChangeInterface & Node
|
|
|
130578
131103
|
};
|
|
130579
131104
|
export declare type MercuryRenameFocusAreaChangeInput = {
|
|
130580
131105
|
newFocusAreaName: Scalars['String']['input'];
|
|
131106
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
130581
131107
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
130582
131108
|
};
|
|
130583
131109
|
export declare type MercuryReorderCustomFieldDefinitionOptionsInput = {
|
|
@@ -130605,6 +131131,7 @@ export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node &
|
|
|
130605
131131
|
};
|
|
130606
131132
|
export declare type MercuryRequestFundsChangeInput = {
|
|
130607
131133
|
amount: Scalars['BigDecimal']['input'];
|
|
131134
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
130608
131135
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
130609
131136
|
};
|
|
130610
131137
|
export declare type MercuryRequestPositionsChange = MercuryChangeInterface & Node & {
|
|
@@ -130623,6 +131150,7 @@ export declare type MercuryRequestPositionsChange = MercuryChangeInterface & Nod
|
|
|
130623
131150
|
};
|
|
130624
131151
|
export declare type MercuryRequestPositionsChangeInput = {
|
|
130625
131152
|
cost?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
131153
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
130626
131154
|
positionsAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
130627
131155
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
130628
131156
|
};
|
|
@@ -130683,7 +131211,9 @@ export declare type MercuryRisksMutationApi = {
|
|
|
130683
131211
|
__typename?: 'MercuryRisksMutationApi';
|
|
130684
131212
|
createRisk?: Maybe<MercuryCreateRiskPayload>;
|
|
130685
131213
|
deleteRisk?: Maybe<MercuryDeleteRiskPayload>;
|
|
131214
|
+
linkRiskToFocusAreas?: Maybe<MercuryLinkRiskToFocusAreasPayload>;
|
|
130686
131215
|
transitionRiskStatus?: Maybe<MercuryTransitionRiskPayload>;
|
|
131216
|
+
unlinkRiskFromFocusAreas?: Maybe<MercuryUnlinkRiskFromFocusAreasPayload>;
|
|
130687
131217
|
updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
|
|
130688
131218
|
updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
|
|
130689
131219
|
updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
|
|
@@ -130694,9 +131224,15 @@ export declare type MercuryRisksMutationApiCreateRiskArgs = {
|
|
|
130694
131224
|
export declare type MercuryRisksMutationApiDeleteRiskArgs = {
|
|
130695
131225
|
input: MercuryDeleteRiskInput;
|
|
130696
131226
|
};
|
|
131227
|
+
export declare type MercuryRisksMutationApiLinkRiskToFocusAreasArgs = {
|
|
131228
|
+
input: MercuryLinkRiskToFocusAreasInput;
|
|
131229
|
+
};
|
|
130697
131230
|
export declare type MercuryRisksMutationApiTransitionRiskStatusArgs = {
|
|
130698
131231
|
input: MercuryTransitionRiskStatusInput;
|
|
130699
131232
|
};
|
|
131233
|
+
export declare type MercuryRisksMutationApiUnlinkRiskFromFocusAreasArgs = {
|
|
131234
|
+
input: MercuryUnlinkRiskFromFocusAreasInput;
|
|
131235
|
+
};
|
|
130700
131236
|
export declare type MercuryRisksMutationApiUpdateRiskDescriptionArgs = {
|
|
130701
131237
|
input: MercuryUpdateRiskDescriptionInput;
|
|
130702
131238
|
};
|
|
@@ -131284,7 +131820,6 @@ export declare type MercuryTransitionRiskPayload = Payload & {
|
|
|
131284
131820
|
updatedRisk?: Maybe<MercuryRisk>;
|
|
131285
131821
|
};
|
|
131286
131822
|
export declare type MercuryTransitionRiskStatusInput = {
|
|
131287
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
131288
131823
|
id: Scalars['ID']['input'];
|
|
131289
131824
|
statusTransitionId: Scalars['ID']['input'];
|
|
131290
131825
|
};
|
|
@@ -131318,6 +131853,24 @@ export declare type MercuryUnlinkGoalsFromChangeProposalPayload = Payload & {
|
|
|
131318
131853
|
errors?: Maybe<Array<MutationError>>;
|
|
131319
131854
|
success: Scalars['Boolean']['output'];
|
|
131320
131855
|
};
|
|
131856
|
+
export declare type MercuryUnlinkRiskFromFocusAreasInput = {
|
|
131857
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
131858
|
+
id: Scalars['ID']['input'];
|
|
131859
|
+
};
|
|
131860
|
+
export declare type MercuryUnlinkRiskFromFocusAreasPayload = Payload & {
|
|
131861
|
+
__typename?: 'MercuryUnlinkRiskFromFocusAreasPayload';
|
|
131862
|
+
errors?: Maybe<Array<MutationError>>;
|
|
131863
|
+
success: Scalars['Boolean']['output'];
|
|
131864
|
+
};
|
|
131865
|
+
export declare type MercuryUnlinkWorkFromChangeProposalInput = {
|
|
131866
|
+
changeProposalId: Scalars['ID']['input'];
|
|
131867
|
+
workIds: Array<Scalars['ID']['input']>;
|
|
131868
|
+
};
|
|
131869
|
+
export declare type MercuryUnlinkWorkFromChangeProposalPayload = Payload & {
|
|
131870
|
+
__typename?: 'MercuryUnlinkWorkFromChangeProposalPayload';
|
|
131871
|
+
errors?: Maybe<Array<MutationError>>;
|
|
131872
|
+
success: Scalars['Boolean']['output'];
|
|
131873
|
+
};
|
|
131321
131874
|
export declare type MercuryUnrankChangeProposalInViewInput = {
|
|
131322
131875
|
changeProposalId: Scalars['ID']['input'];
|
|
131323
131876
|
changeProposalsViewId: Scalars['ID']['input'];
|
|
@@ -131690,8 +132243,41 @@ export declare enum MercuryViewType {
|
|
|
131690
132243
|
}
|
|
131691
132244
|
export declare type MercuryWorkNormalizationQueryApi = {
|
|
131692
132245
|
__typename?: 'MercuryWorkNormalizationQueryApi';
|
|
132246
|
+
focusAreasWithCount?: Maybe<MercuryWorkNormalizationSearchConnection>;
|
|
132247
|
+
linkedWorkByFocusArea?: Maybe<MercuryWorkNormalizationSearchConnection>;
|
|
132248
|
+
searchHierarchyByFocusArea?: Maybe<MercuryWorkNormalizationSearchConnection>;
|
|
132249
|
+
searchWorkByFocusArea?: Maybe<MercuryWorkNormalizationSearchConnection>;
|
|
131693
132250
|
workNormalizationByFocusAreaId?: Maybe<MercuryWorkNormalizationSearchConnection>;
|
|
131694
132251
|
};
|
|
132252
|
+
export declare type MercuryWorkNormalizationQueryApiFocusAreasWithCountArgs = {
|
|
132253
|
+
filter?: InputMaybe<MercuryNormalizedWorkSearchFiltersInput>;
|
|
132254
|
+
parentFocusAreaId: Scalars['ID']['input'];
|
|
132255
|
+
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
132256
|
+
};
|
|
132257
|
+
export declare type MercuryWorkNormalizationQueryApiLinkedWorkByFocusAreaArgs = {
|
|
132258
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132259
|
+
filter?: InputMaybe<MercuryNormalizedWorkSearchFiltersInput>;
|
|
132260
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132261
|
+
parentFocusAreaId: Scalars['ID']['input'];
|
|
132262
|
+
sortOptions?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
|
|
132263
|
+
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
132264
|
+
};
|
|
132265
|
+
export declare type MercuryWorkNormalizationQueryApiSearchHierarchyByFocusAreaArgs = {
|
|
132266
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132267
|
+
filter?: InputMaybe<MercuryNormalizedWorkSearchFiltersInput>;
|
|
132268
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132269
|
+
parentFocusAreaId: Scalars['ID']['input'];
|
|
132270
|
+
sortOptions?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
|
|
132271
|
+
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
132272
|
+
};
|
|
132273
|
+
export declare type MercuryWorkNormalizationQueryApiSearchWorkByFocusAreaArgs = {
|
|
132274
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132275
|
+
filter?: InputMaybe<MercuryNormalizedWorkSearchFiltersInput>;
|
|
132276
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132277
|
+
parentFocusAreaId: Scalars['ID']['input'];
|
|
132278
|
+
sortOptions?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
|
|
132279
|
+
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
132280
|
+
};
|
|
131695
132281
|
export declare type MercuryWorkNormalizationQueryApiWorkNormalizationByFocusAreaIdArgs = {
|
|
131696
132282
|
focusAreaId: Scalars['ID']['input'];
|
|
131697
132283
|
};
|
|
@@ -132016,24 +132602,24 @@ export declare type Mutation = {
|
|
|
132016
132602
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
132017
132603
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
132018
132604
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
132019
|
-
|
|
132020
|
-
|
|
132605
|
+
agentWorkspace_assignSkill?: Maybe<AgentWorkspaceAssignSkillPayload>;
|
|
132606
|
+
agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalogCreateResponse>;
|
|
132607
|
+
agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogTypeCreateResponse>;
|
|
132021
132608
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
132022
|
-
agentWorkspace_createSkill?: Maybe<
|
|
132023
|
-
|
|
132024
|
-
|
|
132025
|
-
agentWorkspace_deleteCatalogType?: Maybe<Scalars['Boolean']['output']>;
|
|
132609
|
+
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
132610
|
+
agentWorkspace_deleteCatalog?: Maybe<AgentWorkspaceCatalogDeleteResponse>;
|
|
132611
|
+
agentWorkspace_deleteCatalogType?: Maybe<AgentWorkspaceCatalogTypeDeleteResponse>;
|
|
132026
132612
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
132027
|
-
agentWorkspace_deleteSkill?: Maybe<
|
|
132028
|
-
agentWorkspace_deleteUserSkill?: Maybe<
|
|
132613
|
+
agentWorkspace_deleteSkill?: Maybe<AgentWorkspaceSkillDeletePayload>;
|
|
132614
|
+
agentWorkspace_deleteUserSkill?: Maybe<AgentWorkspaceDeleteUserSkillPayload>;
|
|
132029
132615
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
132030
132616
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
132031
132617
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
132032
|
-
agentWorkspace_updateCatalog?: Maybe<
|
|
132033
|
-
agentWorkspace_updateCatalogType?: Maybe<
|
|
132618
|
+
agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
|
|
132619
|
+
agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogTypeUpdateResponse>;
|
|
132034
132620
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
132035
|
-
agentWorkspace_updateSkill?: Maybe<
|
|
132036
|
-
|
|
132621
|
+
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
132622
|
+
agentWorkspace_updateSkillProficiency?: Maybe<AgentWorkspaceUpdateSkillProficiencyPayload>;
|
|
132037
132623
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
132038
132624
|
appStorage?: Maybe<AppStorageMutation>;
|
|
132039
132625
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -132093,6 +132679,7 @@ export declare type Mutation = {
|
|
|
132093
132679
|
assetsDM_updateDataSourcePriority?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
132094
132680
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
132095
132681
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
132682
|
+
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
132096
132683
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
132097
132684
|
attachDanglingComment?: Maybe<Comment>;
|
|
132098
132685
|
avpPermissions_updateDashboardUserAccess?: Maybe<AvpPermissionsUpdateDashboardUserAccessPayload>;
|
|
@@ -132128,7 +132715,7 @@ export declare type Mutation = {
|
|
|
132128
132715
|
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
132129
132716
|
avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
|
|
132130
132717
|
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
132131
|
-
avpanalytics_createModel?: Maybe<
|
|
132718
|
+
avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
|
|
132132
132719
|
blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
|
|
132133
132720
|
blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
|
|
132134
132721
|
blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
|
|
@@ -132143,6 +132730,7 @@ export declare type Mutation = {
|
|
|
132143
132730
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
132144
132731
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
132145
132732
|
ccp?: Maybe<CcpMutationApi>;
|
|
132733
|
+
changeManagement_deleteLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
132146
132734
|
changeManagement_recordLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
132147
132735
|
changeManagement_updateGlobalRiskAssessmentSettings: Scalars['Boolean']['output'];
|
|
132148
132736
|
changeManagement_updateRovoRiskAssessmentSettings: Scalars['Boolean']['output'];
|
|
@@ -132213,12 +132801,15 @@ export declare type Mutation = {
|
|
|
132213
132801
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
132214
132802
|
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
132215
132803
|
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
132804
|
+
confluence_nbmExecuteTestTransformation?: Maybe<ConfluenceNbmExecuteTestTransformationPayload>;
|
|
132216
132805
|
confluence_nbmRetryPerfScanLongTask?: Maybe<ConfluenceNbmRetryPerfScanLongTaskPayload>;
|
|
132217
132806
|
confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
|
|
132807
|
+
confluence_nbmSetChainReadyForTransformation?: Maybe<ConfluenceNbmSetChainReadyForTransformationPayload>;
|
|
132218
132808
|
confluence_nbmStartPerfScanLongTask?: Maybe<ConfluenceNbmStartPerfScanLongTaskPayload>;
|
|
132219
132809
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
132220
132810
|
confluence_nbmStartTransformationLongTask?: Maybe<ConfluenceNbmStartTransformationLongTaskPayload>;
|
|
132221
132811
|
confluence_nbmStartVerificationLongTask?: Maybe<ConfluenceNbmStartVerificationLongTaskPayload>;
|
|
132812
|
+
confluence_nbmUploadTransformerConfig?: Maybe<ConfluenceNbmUploadTransformerConfigPayload>;
|
|
132222
132813
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
132223
132814
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
132224
132815
|
confluence_removeContentApprovalReviewer?: Maybe<ConfluenceContentApprovalPayload>;
|
|
@@ -132604,7 +133195,6 @@ export declare type Mutation = {
|
|
|
132604
133195
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
132605
133196
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
132606
133197
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
132607
|
-
jira_setCalendarViewFilter?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
132608
133198
|
jira_setCapacityMostRecentSubRoute?: Maybe<JiraSetCapacityMostRecentSubRoutePayload>;
|
|
132609
133199
|
jira_setCustomFieldTranslation?: Maybe<JiraSetCustomFieldTranslationPayload>;
|
|
132610
133200
|
jira_setFavicon?: Maybe<JiraSetFaviconPayload>;
|
|
@@ -132622,10 +133212,13 @@ export declare type Mutation = {
|
|
|
132622
133212
|
jira_setJswBoardCardOptions?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
132623
133213
|
jira_setJswBoardGroupBy?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
132624
133214
|
jira_setJswBoardQuickFilterToggle?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
133215
|
+
jira_setJswBoardSwimlaneCollapsed?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
132625
133216
|
jira_setJswBoardWorkSuggestionToggle?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
132626
133217
|
jira_setLogo?: Maybe<JiraSetLogoPayload>;
|
|
132627
133218
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
133219
|
+
jira_setTimelineBarColorMode?: Maybe<JiraSetTimelineBarColorModePayload>;
|
|
132628
133220
|
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
133221
|
+
jira_setTimelineViewHideReleases?: Maybe<JiraSetTimelineViewHideReleasesPayload>;
|
|
132629
133222
|
jira_setTimelineViewHideWarnings?: Maybe<JiraSetTimelineViewHideWarningsPayload>;
|
|
132630
133223
|
jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
|
|
132631
133224
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
@@ -132662,9 +133255,9 @@ export declare type Mutation = {
|
|
|
132662
133255
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
132663
133256
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
132664
133257
|
kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
|
|
132665
|
-
kitsune_removeFeedback?: Maybe<
|
|
132666
|
-
kitsune_removeSection?: Maybe<
|
|
132667
|
-
kitsune_removeView?: Maybe<
|
|
133258
|
+
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
133259
|
+
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
133260
|
+
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
132668
133261
|
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
132669
133262
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
132670
133263
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
@@ -132854,6 +133447,8 @@ export declare type Mutation = {
|
|
|
132854
133447
|
shepherd?: Maybe<ShepherdMutation>;
|
|
132855
133448
|
signInvocationTokenForUI?: Maybe<SignInvocationTokenForUiResponse>;
|
|
132856
133449
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
133450
|
+
spcs_startFullSiteScan?: Maybe<SpcsStartFullSiteScanPayload>;
|
|
133451
|
+
spcs_updateScanStatus?: Maybe<SpcsUpdateScanStatusPayload>;
|
|
132857
133452
|
spf_acceptProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
132858
133453
|
spf_addPlanApprover?: Maybe<SpfUpsertPlanApproverPayload>;
|
|
132859
133454
|
spf_addPlanOwner?: Maybe<SpfUpsertPlanOwnerPayload>;
|
|
@@ -132863,7 +133458,7 @@ export declare type Mutation = {
|
|
|
132863
133458
|
spf_createAskUpdate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
132864
133459
|
spf_createPlan?: Maybe<SpfUpsertPlanPayload>;
|
|
132865
133460
|
spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
132866
|
-
|
|
133461
|
+
spf_createPlanScenarioInvestments?: Maybe<SpfCreatePlanScenarioInvestmentsPayload>;
|
|
132867
133462
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
132868
133463
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
132869
133464
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
@@ -132871,6 +133466,7 @@ export declare type Mutation = {
|
|
|
132871
133466
|
spf_deletePlan?: Maybe<SpfDeletePlanPayload>;
|
|
132872
133467
|
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
132873
133468
|
spf_deletePlanScenarioInvestments?: Maybe<SpfDeletePlanScenarioInvestmentsPayload>;
|
|
133469
|
+
spf_prioritizePlanScenarioInvestment?: Maybe<SpfPrioritizePlanScenarioInvestmentPayload>;
|
|
132874
133470
|
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
132875
133471
|
spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
|
|
132876
133472
|
spf_removePlanOwner?: Maybe<SpfRemovePlanOwnerPayload>;
|
|
@@ -133245,6 +133841,9 @@ export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
|
133245
133841
|
productType: AgentStudioProductType;
|
|
133246
133842
|
projectContainerAri: Scalars['ID']['input'];
|
|
133247
133843
|
};
|
|
133844
|
+
export declare type MutationAgentWorkspace_AssignSkillArgs = {
|
|
133845
|
+
input: AgentWorkspaceAssignSkillInput;
|
|
133846
|
+
};
|
|
133248
133847
|
export declare type MutationAgentWorkspace_CreateCatalogArgs = {
|
|
133249
133848
|
input: AgentWorkspaceCreateCatalogInput;
|
|
133250
133849
|
};
|
|
@@ -133255,10 +133854,7 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
|
133255
133854
|
input: AgentWorkspaceCreateScheduleInput;
|
|
133256
133855
|
};
|
|
133257
133856
|
export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
133258
|
-
input:
|
|
133259
|
-
};
|
|
133260
|
-
export declare type MutationAgentWorkspace_CreateUserSkillArgs = {
|
|
133261
|
-
input: AgentWorkspaceCreateUserSkillInput;
|
|
133857
|
+
input: AgentWorkspaceSkillCreateInput;
|
|
133262
133858
|
};
|
|
133263
133859
|
export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
|
|
133264
133860
|
cloudId: Scalars['ID']['input'];
|
|
@@ -133276,8 +133872,7 @@ export declare type MutationAgentWorkspace_DeleteSkillArgs = {
|
|
|
133276
133872
|
id: Scalars['ID']['input'];
|
|
133277
133873
|
};
|
|
133278
133874
|
export declare type MutationAgentWorkspace_DeleteUserSkillArgs = {
|
|
133279
|
-
|
|
133280
|
-
id: Scalars['ID']['input'];
|
|
133875
|
+
input: AgentWorkspaceDeleteUserSkillInput;
|
|
133281
133876
|
};
|
|
133282
133877
|
export declare type MutationAgentWorkspace_EndBreakArgs = {
|
|
133283
133878
|
agentId: Scalars['ID']['input'];
|
|
@@ -133291,19 +133886,25 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
|
|
|
133291
133886
|
cloudId: Scalars['ID']['input'];
|
|
133292
133887
|
};
|
|
133293
133888
|
export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
|
|
133889
|
+
cloudId: Scalars['ID']['input'];
|
|
133890
|
+
id: Scalars['ID']['input'];
|
|
133294
133891
|
input: AgentWorkspaceUpdateCatalogInput;
|
|
133295
133892
|
};
|
|
133296
133893
|
export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
|
|
133894
|
+
cloudId: Scalars['ID']['input'];
|
|
133895
|
+
id: Scalars['ID']['input'];
|
|
133297
133896
|
input: AgentWorkspaceUpdateCatalogTypeInput;
|
|
133298
133897
|
};
|
|
133299
133898
|
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
133300
133899
|
input: AgentWorkspaceUpdateScheduleInput;
|
|
133301
133900
|
};
|
|
133302
133901
|
export declare type MutationAgentWorkspace_UpdateSkillArgs = {
|
|
133303
|
-
|
|
133902
|
+
cloudId: Scalars['ID']['input'];
|
|
133903
|
+
id: Scalars['ID']['input'];
|
|
133904
|
+
input: AgentWorkspaceSkillUpdateInput;
|
|
133304
133905
|
};
|
|
133305
|
-
export declare type
|
|
133306
|
-
input:
|
|
133906
|
+
export declare type MutationAgentWorkspace_UpdateSkillProficiencyArgs = {
|
|
133907
|
+
input: AgentWorkspaceUpdateSkillProficiencyInput;
|
|
133307
133908
|
};
|
|
133308
133909
|
export declare type MutationAppStorage_AdminArgs = {
|
|
133309
133910
|
appId: Scalars['ID']['input'];
|
|
@@ -133584,6 +134185,11 @@ export declare type MutationAssetsDm_UpdateDefaultCleansingRuleArgs = {
|
|
|
133584
134185
|
input: AssetsDmUpdateDefaultCleansingRuleInput;
|
|
133585
134186
|
workspaceId: Scalars['ID']['input'];
|
|
133586
134187
|
};
|
|
134188
|
+
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
134189
|
+
cloudId: Scalars['ID']['input'];
|
|
134190
|
+
id: Scalars['ID']['input'];
|
|
134191
|
+
value?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
134192
|
+
};
|
|
133587
134193
|
export declare type MutationAssignIssueParentArgs = {
|
|
133588
134194
|
input?: InputMaybe<AssignIssueParentInput>;
|
|
133589
134195
|
};
|
|
@@ -133690,7 +134296,7 @@ export declare type MutationAvp_UpdateVariableArgs = {
|
|
|
133690
134296
|
input: AvpUpdateVariableInput;
|
|
133691
134297
|
};
|
|
133692
134298
|
export declare type MutationAvpanalytics_CreateModelArgs = {
|
|
133693
|
-
input?: InputMaybe<
|
|
134299
|
+
input?: InputMaybe<AvpAnalyticsCreateModelInput>;
|
|
133694
134300
|
};
|
|
133695
134301
|
export declare type MutationBlockService_CreateBlockArgs = {
|
|
133696
134302
|
input: BlockServiceCreateBlockInput;
|
|
@@ -133734,6 +134340,10 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
|
|
|
133734
134340
|
input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
|
|
133735
134341
|
spaceKey: Scalars['String']['input'];
|
|
133736
134342
|
};
|
|
134343
|
+
export declare type MutationChangeManagement_DeleteLastRovoRiskAssessmentArgs = {
|
|
134344
|
+
cloudId: Scalars['ID']['input'];
|
|
134345
|
+
issueId: Scalars['String']['input'];
|
|
134346
|
+
};
|
|
133737
134347
|
export declare type MutationChangeManagement_RecordLastRovoRiskAssessmentArgs = {
|
|
133738
134348
|
input: ChangeManagementUpdateLastRovoRiskAssessmentInput;
|
|
133739
134349
|
keepUpdatedAt?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -133977,6 +134587,10 @@ export declare type MutationConfluence_NbmBulkUpdateVerificationEntryArgs = {
|
|
|
133977
134587
|
cloudId: Scalars['ID']['input'];
|
|
133978
134588
|
input: ConfluenceNbmBulkUpdateVerificationEntryInput;
|
|
133979
134589
|
};
|
|
134590
|
+
export declare type MutationConfluence_NbmExecuteTestTransformationArgs = {
|
|
134591
|
+
cloudId: Scalars['ID']['input'];
|
|
134592
|
+
input: ConfluenceNbmExecuteTestTransformationInput;
|
|
134593
|
+
};
|
|
133980
134594
|
export declare type MutationConfluence_NbmRetryPerfScanLongTaskArgs = {
|
|
133981
134595
|
cloudId: Scalars['ID']['input'];
|
|
133982
134596
|
input: ConfluenceNbmRetryPerfScanLongTaskInput;
|
|
@@ -133985,6 +134599,10 @@ export declare type MutationConfluence_NbmRetryScanLongTaskArgs = {
|
|
|
133985
134599
|
cloudId: Scalars['ID']['input'];
|
|
133986
134600
|
input: ConfluenceNbmRetryScanLongTaskInput;
|
|
133987
134601
|
};
|
|
134602
|
+
export declare type MutationConfluence_NbmSetChainReadyForTransformationArgs = {
|
|
134603
|
+
cloudId: Scalars['ID']['input'];
|
|
134604
|
+
input: ConfluenceNbmSetChainReadyForTransformationInput;
|
|
134605
|
+
};
|
|
133988
134606
|
export declare type MutationConfluence_NbmStartPerfScanLongTaskArgs = {
|
|
133989
134607
|
cloudId: Scalars['ID']['input'];
|
|
133990
134608
|
input: ConfluenceNbmStartPerfScanLongTaskInput;
|
|
@@ -134001,6 +134619,10 @@ export declare type MutationConfluence_NbmStartVerificationLongTaskArgs = {
|
|
|
134001
134619
|
cloudId: Scalars['ID']['input'];
|
|
134002
134620
|
input: ConfluenceNbmStartVerificationLongTaskInput;
|
|
134003
134621
|
};
|
|
134622
|
+
export declare type MutationConfluence_NbmUploadTransformerConfigArgs = {
|
|
134623
|
+
cloudId: Scalars['ID']['input'];
|
|
134624
|
+
input: ConfluenceNbmUploadTransformerConfigInput;
|
|
134625
|
+
};
|
|
134004
134626
|
export declare type MutationConfluence_PatchCalendarArgs = {
|
|
134005
134627
|
cloudId: Scalars['ID']['input'];
|
|
134006
134628
|
input: ConfluencePatchCalendarInput;
|
|
@@ -135298,9 +135920,6 @@ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
|
135298
135920
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
135299
135921
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
135300
135922
|
};
|
|
135301
|
-
export declare type MutationJira_SetCalendarViewFilterArgs = {
|
|
135302
|
-
input: JiraSetCalendarViewFilterInput;
|
|
135303
|
-
};
|
|
135304
135923
|
export declare type MutationJira_SetCapacityMostRecentSubRouteArgs = {
|
|
135305
135924
|
input: JiraSetCapacityMostRecentSubRouteInput;
|
|
135306
135925
|
};
|
|
@@ -135355,6 +135974,9 @@ export declare type MutationJira_SetJswBoardGroupByArgs = {
|
|
|
135355
135974
|
export declare type MutationJira_SetJswBoardQuickFilterToggleArgs = {
|
|
135356
135975
|
input: JiraSetJswBoardViewSettingsToggleInput;
|
|
135357
135976
|
};
|
|
135977
|
+
export declare type MutationJira_SetJswBoardSwimlaneCollapsedArgs = {
|
|
135978
|
+
input: JiraSetJswBoardViewSettingsStringListInput;
|
|
135979
|
+
};
|
|
135358
135980
|
export declare type MutationJira_SetJswBoardWorkSuggestionToggleArgs = {
|
|
135359
135981
|
input: JiraSetJswBoardViewSettingsToggleInput;
|
|
135360
135982
|
};
|
|
@@ -135365,10 +135987,16 @@ export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
|
135365
135987
|
cloudId: Scalars['ID']['input'];
|
|
135366
135988
|
show: Scalars['Boolean']['input'];
|
|
135367
135989
|
};
|
|
135990
|
+
export declare type MutationJira_SetTimelineBarColorModeArgs = {
|
|
135991
|
+
input: JiraSetTimelineBarColorModeInput;
|
|
135992
|
+
};
|
|
135368
135993
|
export declare type MutationJira_SetTimelineHighlightedReleasesArgs = {
|
|
135369
135994
|
cloudId: Scalars['ID']['input'];
|
|
135370
135995
|
input: JiraSetTimelineHighlightedReleasesInput;
|
|
135371
135996
|
};
|
|
135997
|
+
export declare type MutationJira_SetTimelineViewHideReleasesArgs = {
|
|
135998
|
+
input: JiraSetTimelineViewHideReleasesInput;
|
|
135999
|
+
};
|
|
135372
136000
|
export declare type MutationJira_SetTimelineViewHideWarningsArgs = {
|
|
135373
136001
|
input: JiraSetTimelineViewHideWarningsInput;
|
|
135374
136002
|
};
|
|
@@ -136086,6 +136714,15 @@ export declare type MutationSignInvocationTokenForUiArgs = {
|
|
|
136086
136714
|
export declare type MutationSoftDeleteSpaceArgs = {
|
|
136087
136715
|
spaceKey: Scalars['String']['input'];
|
|
136088
136716
|
};
|
|
136717
|
+
export declare type MutationSpcs_StartFullSiteScanArgs = {
|
|
136718
|
+
input: SpcsStartFullSiteScanInput;
|
|
136719
|
+
orgId: Scalars['ID']['input'];
|
|
136720
|
+
};
|
|
136721
|
+
export declare type MutationSpcs_UpdateScanStatusArgs = {
|
|
136722
|
+
input: SpcsUpdateScanStatusInput;
|
|
136723
|
+
orgId: Scalars['ID']['input'];
|
|
136724
|
+
scanId: Scalars['ID']['input'];
|
|
136725
|
+
};
|
|
136089
136726
|
export declare type MutationSpf_AcceptProposedDateArgs = {
|
|
136090
136727
|
input: SpfResolveProposedDateInput;
|
|
136091
136728
|
};
|
|
@@ -136113,8 +136750,8 @@ export declare type MutationSpf_CreatePlanArgs = {
|
|
|
136113
136750
|
export declare type MutationSpf_CreatePlanScenarioArgs = {
|
|
136114
136751
|
input: SpfCreatePlanScenarioInput;
|
|
136115
136752
|
};
|
|
136116
|
-
export declare type
|
|
136117
|
-
input:
|
|
136753
|
+
export declare type MutationSpf_CreatePlanScenarioInvestmentsArgs = {
|
|
136754
|
+
input: SpfCreatePlanScenarioInvestmentsInput;
|
|
136118
136755
|
};
|
|
136119
136756
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
136120
136757
|
input: SpfDeleteAskInput;
|
|
@@ -136137,6 +136774,9 @@ export declare type MutationSpf_DeletePlanScenarioArgs = {
|
|
|
136137
136774
|
export declare type MutationSpf_DeletePlanScenarioInvestmentsArgs = {
|
|
136138
136775
|
input: SpfDeletePlanScenarioInvestmentsInput;
|
|
136139
136776
|
};
|
|
136777
|
+
export declare type MutationSpf_PrioritizePlanScenarioInvestmentArgs = {
|
|
136778
|
+
input: SpfPrioritizePlanScenarioInvestmentInput;
|
|
136779
|
+
};
|
|
136140
136780
|
export declare type MutationSpf_RejectProposedDateArgs = {
|
|
136141
136781
|
input: SpfResolveProposedDateInput;
|
|
136142
136782
|
};
|
|
@@ -139592,7 +140232,8 @@ export declare type Query = {
|
|
|
139592
140232
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
139593
140233
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
139594
140234
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
139595
|
-
|
|
140235
|
+
agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
140236
|
+
agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
139596
140237
|
agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
|
|
139597
140238
|
agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
139598
140239
|
agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
|
|
@@ -139602,9 +140243,10 @@ export declare type Query = {
|
|
|
139602
140243
|
agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
|
|
139603
140244
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
139604
140245
|
agentWorkspace_skill?: Maybe<AgentWorkspaceSkill>;
|
|
140246
|
+
agentWorkspace_skillGaps?: Maybe<AgentWorkspaceSkillConnection>;
|
|
139605
140247
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
139606
|
-
agentWorkspace_userSkill?: Maybe<AgentWorkspaceUserSkill>;
|
|
139607
140248
|
agentWorkspace_userSkills?: Maybe<AgentWorkspaceUserSkillConnection>;
|
|
140249
|
+
agentWorkspace_usersBySkills?: Maybe<AgentWorkspaceUserConnection>;
|
|
139608
140250
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
139609
140251
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
139610
140252
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -139692,6 +140334,7 @@ export declare type Query = {
|
|
|
139692
140334
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
139693
140335
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
139694
140336
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
140337
|
+
assets_objectTypeAttributesForServices?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
139695
140338
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
139696
140339
|
assets_objectsByAQL?: Maybe<AssetsObjectAqlResult>;
|
|
139697
140340
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
@@ -139714,9 +140357,8 @@ export declare type Query = {
|
|
|
139714
140357
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
139715
140358
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
139716
140359
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
139717
|
-
|
|
139718
|
-
|
|
139719
|
-
avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
|
|
140360
|
+
avpanalytics_getModel?: Maybe<AvpAnalyticsModel>;
|
|
140361
|
+
avpanalytics_getModels?: Maybe<AvpAnalyticsModelConnection>;
|
|
139720
140362
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
139721
140363
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
139722
140364
|
blockService_batchRetrieveBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
@@ -139865,6 +140507,7 @@ export declare type Query = {
|
|
|
139865
140507
|
confluence_nbmPerfScanResult?: Maybe<ConfluenceNbmPerfScanResult>;
|
|
139866
140508
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
139867
140509
|
confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
|
|
140510
|
+
confluence_nbmTransformationJobList?: Maybe<ConfluenceNbmTransformationJobConnection>;
|
|
139868
140511
|
confluence_nbmTransformationList?: Maybe<ConfluenceNbmTransformationListConnection>;
|
|
139869
140512
|
confluence_nbmVerificationResult?: Maybe<ConfluenceNbmVerificationResultConnection>;
|
|
139870
140513
|
confluence_ncsPdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
|
|
@@ -139945,6 +140588,7 @@ export declare type Query = {
|
|
|
139945
140588
|
convoAiAgentSession_getById?: Maybe<ConvoAiAgentSession>;
|
|
139946
140589
|
convoAiAgentSession_getByIds?: Maybe<Array<Maybe<ConvoAiAgentSession>>>;
|
|
139947
140590
|
convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
|
|
140591
|
+
convoai_confluenceSpaceSummary?: Maybe<ConvoAiConfluenceSpaceSummary>;
|
|
139948
140592
|
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
139949
140593
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
139950
140594
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
@@ -140225,6 +140869,7 @@ export declare type Query = {
|
|
|
140225
140869
|
jpdViewsService_globalView?: Maybe<JpdViewsServiceGlobalView>;
|
|
140226
140870
|
jpdViewsService_globalViewsByCriteria?: Maybe<JpdViewsServiceGlobalViewConnection>;
|
|
140227
140871
|
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
140872
|
+
jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
|
|
140228
140873
|
jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
|
|
140229
140874
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
140230
140875
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -140473,6 +141118,8 @@ export declare type Query = {
|
|
|
140473
141118
|
spaceWatchers?: Maybe<PaginatedPersonList>;
|
|
140474
141119
|
spaces?: Maybe<PaginatedSpaceList>;
|
|
140475
141120
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
141121
|
+
spcs_fullSiteScan?: Maybe<SpcsFullSiteScan>;
|
|
141122
|
+
spcs_listFullSiteScans?: Maybe<SpcsFullSiteScanListResponse>;
|
|
140476
141123
|
spf_ask?: Maybe<SpfAskResult>;
|
|
140477
141124
|
spf_askCommentsByIds?: Maybe<Array<Maybe<SpfAskComment>>>;
|
|
140478
141125
|
spf_askLinksByIds?: Maybe<Array<Maybe<SpfAskLink>>>;
|
|
@@ -140513,6 +141160,7 @@ export declare type Query = {
|
|
|
140513
141160
|
stakeholderComms_getPagesSummaryByCloudId?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
|
|
140514
141161
|
stakeholderComms_getPagesSummaryByCloudIdV2?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
|
|
140515
141162
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
141163
|
+
stakeholderComms_getStakeholderCommsTransformerRecord?: Maybe<StakeholderCommsTransformerRecordResponse>;
|
|
140516
141164
|
stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
140517
141165
|
stakeholderComms_getStakeholderGroupByMembership?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
|
|
140518
141166
|
stakeholderComms_getStakeholderGroupWithMemberships?: Maybe<StakeholderCommsStakeholderGroupsAndMemberships>;
|
|
@@ -141095,12 +141743,17 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
|
|
|
141095
141743
|
export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
141096
141744
|
input: AgentWorkspaceAvailabilityInput;
|
|
141097
141745
|
};
|
|
141746
|
+
export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
|
|
141747
|
+
cloudId: Scalars['ID']['input'];
|
|
141748
|
+
projectKey: Scalars['String']['input'];
|
|
141749
|
+
};
|
|
141098
141750
|
export declare type QueryAgentWorkspace_CapacityArgs = {
|
|
141099
141751
|
input: AgentWorkspaceCapacityInput;
|
|
141100
141752
|
};
|
|
141101
141753
|
export declare type QueryAgentWorkspace_CatalogArgs = {
|
|
141102
141754
|
cloudId: Scalars['ID']['input'];
|
|
141103
141755
|
id: Scalars['ID']['input'];
|
|
141756
|
+
maxDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
141104
141757
|
};
|
|
141105
141758
|
export declare type QueryAgentWorkspace_CatalogTypeArgs = {
|
|
141106
141759
|
cloudId: Scalars['ID']['input'];
|
|
@@ -141108,15 +141761,13 @@ export declare type QueryAgentWorkspace_CatalogTypeArgs = {
|
|
|
141108
141761
|
};
|
|
141109
141762
|
export declare type QueryAgentWorkspace_CatalogTypesArgs = {
|
|
141110
141763
|
cloudId: Scalars['ID']['input'];
|
|
141111
|
-
filter?: InputMaybe<
|
|
141112
|
-
|
|
141113
|
-
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
141764
|
+
filter?: InputMaybe<AgentWorkspaceCatalogTypeFilterInput>;
|
|
141765
|
+
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
141114
141766
|
};
|
|
141115
141767
|
export declare type QueryAgentWorkspace_CatalogsArgs = {
|
|
141116
141768
|
cloudId: Scalars['ID']['input'];
|
|
141117
|
-
filter?: InputMaybe<
|
|
141118
|
-
|
|
141119
|
-
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
141769
|
+
filter?: InputMaybe<AgentWorkspaceCatalogFilterInput>;
|
|
141770
|
+
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
141120
141771
|
};
|
|
141121
141772
|
export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
141122
141773
|
cloudId: Scalars['ID']['input'];
|
|
@@ -141142,21 +141793,25 @@ export declare type QueryAgentWorkspace_SkillArgs = {
|
|
|
141142
141793
|
cloudId: Scalars['ID']['input'];
|
|
141143
141794
|
id: Scalars['ID']['input'];
|
|
141144
141795
|
};
|
|
141145
|
-
export declare type
|
|
141796
|
+
export declare type QueryAgentWorkspace_SkillGapsArgs = {
|
|
141146
141797
|
cloudId: Scalars['ID']['input'];
|
|
141147
|
-
|
|
141148
|
-
page?: InputMaybe<Scalars['Int']['input']>;
|
|
141149
|
-
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
141798
|
+
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
141150
141799
|
};
|
|
141151
|
-
export declare type
|
|
141800
|
+
export declare type QueryAgentWorkspace_SkillsArgs = {
|
|
141152
141801
|
cloudId: Scalars['ID']['input'];
|
|
141153
|
-
|
|
141802
|
+
filter?: InputMaybe<AgentWorkspaceSkillFilterInput>;
|
|
141803
|
+
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
141154
141804
|
};
|
|
141155
141805
|
export declare type QueryAgentWorkspace_UserSkillsArgs = {
|
|
141156
141806
|
cloudId: Scalars['ID']['input'];
|
|
141157
|
-
filter?: InputMaybe<
|
|
141158
|
-
|
|
141159
|
-
|
|
141807
|
+
filter?: InputMaybe<AgentWorkspaceUserSkillFilterInput>;
|
|
141808
|
+
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
141809
|
+
};
|
|
141810
|
+
export declare type QueryAgentWorkspace_UsersBySkillsArgs = {
|
|
141811
|
+
cloudId: Scalars['ID']['input'];
|
|
141812
|
+
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
141813
|
+
skillIds: Array<Scalars['ID']['input']>;
|
|
141814
|
+
skillMatchType?: InputMaybe<AgentWorkspaceSkillMatchType>;
|
|
141160
141815
|
};
|
|
141161
141816
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
141162
141817
|
projectAri: Scalars['ID']['input'];
|
|
@@ -141643,6 +142298,9 @@ export declare type QueryAssets_ObjectByIdArgs = {
|
|
|
141643
142298
|
export declare type QueryAssets_ObjectTypeAttributesBySchemaIdsArgs = {
|
|
141644
142299
|
schemaIds: Array<Scalars['ID']['input']>;
|
|
141645
142300
|
};
|
|
142301
|
+
export declare type QueryAssets_ObjectTypeAttributesForServicesArgs = {
|
|
142302
|
+
cloudId: Scalars['ID']['input'];
|
|
142303
|
+
};
|
|
141646
142304
|
export declare type QueryAssets_ObjectTypesByIdsArgs = {
|
|
141647
142305
|
ids: Array<Scalars['ID']['input']>;
|
|
141648
142306
|
};
|
|
@@ -141719,14 +142377,11 @@ export declare type QueryAvp_GetDashboardsByArisArgs = {
|
|
|
141719
142377
|
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
141720
142378
|
dashboardAri: Scalars['ID']['input'];
|
|
141721
142379
|
};
|
|
141722
|
-
export declare type
|
|
141723
|
-
input?: InputMaybe<
|
|
141724
|
-
};
|
|
141725
|
-
export declare type QueryAvpanalytics_GetmodeldataArgs = {
|
|
141726
|
-
input?: InputMaybe<AvpAnalyticsGetModelDataRequest>;
|
|
142380
|
+
export declare type QueryAvpanalytics_GetModelArgs = {
|
|
142381
|
+
input?: InputMaybe<AvpAnalyticsGetModelInput>;
|
|
141727
142382
|
};
|
|
141728
|
-
export declare type
|
|
141729
|
-
input?: InputMaybe<
|
|
142383
|
+
export declare type QueryAvpanalytics_GetModelsArgs = {
|
|
142384
|
+
input?: InputMaybe<AvpAnalyticsGetModelsInput>;
|
|
141730
142385
|
};
|
|
141731
142386
|
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
141732
142387
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -142212,11 +142867,11 @@ export declare type QueryConfluence_GenerateSpaceKeyArgs = {
|
|
|
142212
142867
|
};
|
|
142213
142868
|
export declare type QueryConfluence_GetActiveWorkflowApplicationArgs = {
|
|
142214
142869
|
cloudId: Scalars['ID']['input'];
|
|
142215
|
-
contentId: Scalars['
|
|
142870
|
+
contentId: Scalars['ID']['input'];
|
|
142216
142871
|
contentStatus: Scalars['String']['input'];
|
|
142217
142872
|
contentVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
142218
142873
|
fetchWorkflowReview?: InputMaybe<Scalars['Boolean']['input']>;
|
|
142219
|
-
workflowId: Scalars['
|
|
142874
|
+
workflowId: Scalars['ID']['input'];
|
|
142220
142875
|
};
|
|
142221
142876
|
export declare type QueryConfluence_GetAllAppsArgs = {
|
|
142222
142877
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -142344,6 +142999,11 @@ export declare type QueryConfluence_NbmScanResultArgs = {
|
|
|
142344
142999
|
cloudId: Scalars['ID']['input'];
|
|
142345
143000
|
scanId: Scalars['ID']['input'];
|
|
142346
143001
|
};
|
|
143002
|
+
export declare type QueryConfluence_NbmTransformationJobListArgs = {
|
|
143003
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143004
|
+
cloudId: Scalars['ID']['input'];
|
|
143005
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143006
|
+
};
|
|
142347
143007
|
export declare type QueryConfluence_NbmTransformationListArgs = {
|
|
142348
143008
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
142349
143009
|
cloudId: Scalars['ID']['input'];
|
|
@@ -142777,6 +143437,10 @@ export declare type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
|
|
|
142777
143437
|
pageTitle: Scalars['String']['input'];
|
|
142778
143438
|
userPrompt: Scalars['String']['input'];
|
|
142779
143439
|
};
|
|
143440
|
+
export declare type QueryConvoai_ConfluenceSpaceSummaryArgs = {
|
|
143441
|
+
cloudId: Scalars['ID']['input'];
|
|
143442
|
+
spaceId: Scalars['ID']['input'];
|
|
143443
|
+
};
|
|
142780
143444
|
export declare type QueryConvoai_HomeThreadsArgs = {
|
|
142781
143445
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
142782
143446
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -143643,6 +144307,7 @@ export declare type QueryIncomingLinksCountArgs = {
|
|
|
143643
144307
|
contentId: Scalars['ID']['input'];
|
|
143644
144308
|
};
|
|
143645
144309
|
export declare type QueryInlineTasksArgs = {
|
|
144310
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143646
144311
|
tasksQuery: InlineTasksByMetadata;
|
|
143647
144312
|
};
|
|
143648
144313
|
export declare type QueryInstallationContextsArgs = {
|
|
@@ -143882,6 +144547,9 @@ export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
|
|
|
143882
144547
|
export declare type QueryJpdViewsService_GlobalViewsByIdArgs = {
|
|
143883
144548
|
ids: Array<Scalars['ID']['input']>;
|
|
143884
144549
|
};
|
|
144550
|
+
export declare type QueryJpdViewsService_HydrateUserArgs = {
|
|
144551
|
+
cloudId: Scalars['ID']['input'];
|
|
144552
|
+
};
|
|
143885
144553
|
export declare type QueryJsmAgentWorkspace_LocationsArgs = {
|
|
143886
144554
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
143887
144555
|
cloudId: Scalars['ID']['input'];
|
|
@@ -144784,6 +145452,15 @@ export declare type QuerySpacesArgs = {
|
|
|
144784
145452
|
export declare type QuerySpacesWithExemptionsArgs = {
|
|
144785
145453
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
144786
145454
|
};
|
|
145455
|
+
export declare type QuerySpcs_FullSiteScanArgs = {
|
|
145456
|
+
orgId: Scalars['ID']['input'];
|
|
145457
|
+
scanId: Scalars['ID']['input'];
|
|
145458
|
+
};
|
|
145459
|
+
export declare type QuerySpcs_ListFullSiteScansArgs = {
|
|
145460
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
145461
|
+
orgId: Scalars['ID']['input'];
|
|
145462
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
145463
|
+
};
|
|
144787
145464
|
export declare type QuerySpf_AskArgs = {
|
|
144788
145465
|
id: Scalars['ID']['input'];
|
|
144789
145466
|
};
|
|
@@ -169109,6 +169786,53 @@ export declare type SpaceWithExemption = {
|
|
|
169109
169786
|
status?: Maybe<Scalars['String']['output']>;
|
|
169110
169787
|
type?: Maybe<Scalars['String']['output']>;
|
|
169111
169788
|
};
|
|
169789
|
+
export declare type SpcsFullSiteScan = {
|
|
169790
|
+
__typename?: 'SpcsFullSiteScan';
|
|
169791
|
+
createdBy: Scalars['ID']['output'];
|
|
169792
|
+
createdOn: Scalars['String']['output'];
|
|
169793
|
+
orgId: Scalars['ID']['output'];
|
|
169794
|
+
scanEndedOn?: Maybe<Scalars['String']['output']>;
|
|
169795
|
+
scanId: Scalars['ID']['output'];
|
|
169796
|
+
scanPercentage?: Maybe<Scalars['Float']['output']>;
|
|
169797
|
+
scanStartedOn?: Maybe<Scalars['String']['output']>;
|
|
169798
|
+
status: SpcsFullSiteScanStatus;
|
|
169799
|
+
updatedBy: Scalars['ID']['output'];
|
|
169800
|
+
updatedOn: Scalars['String']['output'];
|
|
169801
|
+
workspaceAris: Array<Scalars['ID']['output']>;
|
|
169802
|
+
};
|
|
169803
|
+
export declare type SpcsFullSiteScanListResponse = {
|
|
169804
|
+
__typename?: 'SpcsFullSiteScanListResponse';
|
|
169805
|
+
items: Array<SpcsFullSiteScan>;
|
|
169806
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
169807
|
+
};
|
|
169808
|
+
export declare enum SpcsFullSiteScanStatus {
|
|
169809
|
+
Cancelled = "CANCELLED",
|
|
169810
|
+
Completed = "COMPLETED",
|
|
169811
|
+
Failed = "FAILED",
|
|
169812
|
+
Queued = "QUEUED",
|
|
169813
|
+
Scanning = "SCANNING",
|
|
169814
|
+
Started = "STARTED"
|
|
169815
|
+
}
|
|
169816
|
+
export declare type SpcsStartFullSiteScanInput = {
|
|
169817
|
+
workspaceAris: Array<Scalars['ID']['input']>;
|
|
169818
|
+
};
|
|
169819
|
+
export declare type SpcsStartFullSiteScanPayload = {
|
|
169820
|
+
__typename?: 'SpcsStartFullSiteScanPayload';
|
|
169821
|
+
scanId: Scalars['ID']['output'];
|
|
169822
|
+
status: SpcsFullSiteScanStatus;
|
|
169823
|
+
};
|
|
169824
|
+
export declare enum SpcsUpdateScanStatusAction {
|
|
169825
|
+
Cancel = "CANCEL"
|
|
169826
|
+
}
|
|
169827
|
+
export declare type SpcsUpdateScanStatusInput = {
|
|
169828
|
+
status: SpcsUpdateScanStatusAction;
|
|
169829
|
+
};
|
|
169830
|
+
export declare type SpcsUpdateScanStatusPayload = {
|
|
169831
|
+
__typename?: 'SpcsUpdateScanStatusPayload';
|
|
169832
|
+
message: Scalars['String']['output'];
|
|
169833
|
+
scanId: Scalars['ID']['output'];
|
|
169834
|
+
status: SpcsFullSiteScanStatus;
|
|
169835
|
+
};
|
|
169112
169836
|
export declare type SpfAddPlanApproverInput = {
|
|
169113
169837
|
approverId: Scalars['String']['input'];
|
|
169114
169838
|
planId: Scalars['ID']['input'];
|
|
@@ -169499,13 +170223,22 @@ export declare type SpfCreatePlanScenarioInput = {
|
|
|
169499
170223
|
planId: Scalars['ID']['input'];
|
|
169500
170224
|
status: SpfPlanScenarioStatus;
|
|
169501
170225
|
};
|
|
169502
|
-
export declare type
|
|
170226
|
+
export declare type SpfCreatePlanScenarioInvestmentItemInput = {
|
|
169503
170227
|
committedEffort?: InputMaybe<Scalars['Int']['input']>;
|
|
169504
170228
|
committedOwnerId?: InputMaybe<Scalars['String']['input']>;
|
|
169505
170229
|
groupType?: InputMaybe<SpfPlanScenarioInvestmentGroupType>;
|
|
169506
170230
|
investmentId: Scalars['String']['input'];
|
|
170231
|
+
};
|
|
170232
|
+
export declare type SpfCreatePlanScenarioInvestmentsInput = {
|
|
170233
|
+
investments: Array<SpfCreatePlanScenarioInvestmentItemInput>;
|
|
169507
170234
|
planScenarioId: Scalars['ID']['input'];
|
|
169508
170235
|
};
|
|
170236
|
+
export declare type SpfCreatePlanScenarioInvestmentsPayload = Payload & {
|
|
170237
|
+
__typename?: 'SpfCreatePlanScenarioInvestmentsPayload';
|
|
170238
|
+
errors?: Maybe<Array<MutationError>>;
|
|
170239
|
+
planScenarioInvestments: Array<SpfPlanScenarioInvestment>;
|
|
170240
|
+
success: Scalars['Boolean']['output'];
|
|
170241
|
+
};
|
|
169509
170242
|
export declare type SpfDeleteAskCommentInput = {
|
|
169510
170243
|
id: Scalars['ID']['input'];
|
|
169511
170244
|
};
|
|
@@ -169734,6 +170467,17 @@ export declare type SpfPlanTransition = {
|
|
|
169734
170467
|
status?: Maybe<SpfPlanStatus>;
|
|
169735
170468
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
169736
170469
|
};
|
|
170470
|
+
export declare type SpfPrioritizePlanScenarioInvestmentInput = {
|
|
170471
|
+
groupType: SpfPlanScenarioInvestmentGroupType;
|
|
170472
|
+
investmentIds: Array<Scalars['ID']['input']>;
|
|
170473
|
+
precedingInvestmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
170474
|
+
};
|
|
170475
|
+
export declare type SpfPrioritizePlanScenarioInvestmentPayload = Payload & {
|
|
170476
|
+
__typename?: 'SpfPrioritizePlanScenarioInvestmentPayload';
|
|
170477
|
+
errors?: Maybe<Array<MutationError>>;
|
|
170478
|
+
planScenarioInvestments?: Maybe<Array<SpfPlanScenarioInvestmentEdge>>;
|
|
170479
|
+
success: Scalars['Boolean']['output'];
|
|
170480
|
+
};
|
|
169737
170481
|
export declare type SpfRemovePlanApproverInput = {
|
|
169738
170482
|
approverId: Scalars['String']['input'];
|
|
169739
170483
|
planId: Scalars['ID']['input'];
|
|
@@ -170491,6 +171235,16 @@ export declare type StakeholderCommsIssueSslResponse = {
|
|
|
170491
171235
|
sslStatus: StakeholderCommsSslStatus;
|
|
170492
171236
|
success: Scalars['Boolean']['output'];
|
|
170493
171237
|
};
|
|
171238
|
+
export declare type StakeholderCommsJsmProductDetail = {
|
|
171239
|
+
__typename?: 'StakeholderCommsJsmProductDetail';
|
|
171240
|
+
billingSourceSystem?: Maybe<Scalars['String']['output']>;
|
|
171241
|
+
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
171242
|
+
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
171243
|
+
ccpTransactionAccountId?: Maybe<Scalars['String']['output']>;
|
|
171244
|
+
license?: Maybe<Scalars['String']['output']>;
|
|
171245
|
+
productKey?: Maybe<Scalars['String']['output']>;
|
|
171246
|
+
skuId?: Maybe<Scalars['String']['output']>;
|
|
171247
|
+
};
|
|
170494
171248
|
export declare type StakeholderCommsLicenseLimit = {
|
|
170495
171249
|
__typename?: 'StakeholderCommsLicenseLimit';
|
|
170496
171250
|
availableLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -170793,6 +171547,7 @@ export declare type StakeholderCommsPageSummary = {
|
|
|
170793
171547
|
__typename?: 'StakeholderCommsPageSummary';
|
|
170794
171548
|
componentCount?: Maybe<Scalars['Int']['output']>;
|
|
170795
171549
|
customDomain?: Maybe<Scalars['String']['output']>;
|
|
171550
|
+
customDomainConfig?: Maybe<StakeholderCommsCustomDomainConfig>;
|
|
170796
171551
|
domain?: Maybe<Scalars['String']['output']>;
|
|
170797
171552
|
id?: Maybe<Scalars['String']['output']>;
|
|
170798
171553
|
isDraft?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -170804,6 +171559,7 @@ export declare type StakeholderCommsPageSummary = {
|
|
|
170804
171559
|
export declare type StakeholderCommsPageSummaryDetails = {
|
|
170805
171560
|
__typename?: 'StakeholderCommsPageSummaryDetails';
|
|
170806
171561
|
componentCount?: Maybe<Scalars['Int']['output']>;
|
|
171562
|
+
customDomainConfig?: Maybe<StakeholderCommsCustomDomainConfig>;
|
|
170807
171563
|
health?: Maybe<Scalars['String']['output']>;
|
|
170808
171564
|
subscribersCount?: Maybe<Scalars['Int']['output']>;
|
|
170809
171565
|
};
|
|
@@ -171262,6 +172018,16 @@ export declare enum StakeholderCommsSubscriptionType {
|
|
|
171262
172018
|
Sms = "SMS",
|
|
171263
172019
|
Webhook = "WEBHOOK"
|
|
171264
172020
|
}
|
|
172021
|
+
export declare type StakeholderCommsTransformerRecord = {
|
|
172022
|
+
__typename?: 'StakeholderCommsTransformerRecord';
|
|
172023
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
172024
|
+
jsmProductDetail?: Maybe<StakeholderCommsJsmProductDetail>;
|
|
172025
|
+
};
|
|
172026
|
+
export declare type StakeholderCommsTransformerRecordResponse = {
|
|
172027
|
+
__typename?: 'StakeholderCommsTransformerRecordResponse';
|
|
172028
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
172029
|
+
transformerRecord?: Maybe<StakeholderCommsTransformerRecord>;
|
|
172030
|
+
};
|
|
171265
172031
|
export declare type StakeholderCommsUnifiedSearchInput = {
|
|
171266
172032
|
filters?: InputMaybe<Array<InputMaybe<StakeholderCommsSearchFilterType>>>;
|
|
171267
172033
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -173359,7 +174125,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
173359
174125
|
Create = "CREATE"
|
|
173360
174126
|
}
|
|
173361
174127
|
export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
173362
|
-
export declare type TownsquareActivityChange = TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange;
|
|
174128
|
+
export declare type TownsquareActivityChange = TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalRenamedChange;
|
|
173363
174129
|
export declare type TownsquareActivityItem = {
|
|
173364
174130
|
__typename?: 'TownsquareActivityItem';
|
|
173365
174131
|
actor?: Maybe<User>;
|
|
@@ -174100,6 +174866,11 @@ export declare enum TownsquareGoalProgressType {
|
|
|
174100
174866
|
AverageSuccessMeasureRollup = "AVERAGE_SUCCESS_MEASURE_ROLLUP",
|
|
174101
174867
|
None = "NONE"
|
|
174102
174868
|
}
|
|
174869
|
+
export declare type TownsquareGoalRenamedChange = {
|
|
174870
|
+
__typename?: 'TownsquareGoalRenamedChange';
|
|
174871
|
+
goalName?: Maybe<Scalars['String']['output']>;
|
|
174872
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
174873
|
+
};
|
|
174103
174874
|
export declare type TownsquareGoalRestoredChange = {
|
|
174104
174875
|
__typename?: 'TownsquareGoalRestoredChange';
|
|
174105
174876
|
goalType?: Maybe<TownsquareGoalType>;
|
|
@@ -174260,6 +175031,7 @@ export declare type TownsquareGoalUpdate = Node & {
|
|
|
174260
175031
|
updateType?: Maybe<TownsquareUpdateType>;
|
|
174261
175032
|
url?: Maybe<Scalars['String']['output']>;
|
|
174262
175033
|
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
175034
|
+
viewers?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
174263
175035
|
};
|
|
174264
175036
|
export declare type TownsquareGoalUpdateCommentsArgs = {
|
|
174265
175037
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -174277,6 +175049,10 @@ export declare type TownsquareGoalUpdateUpdateNotesArgs = {
|
|
|
174277
175049
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
174278
175050
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
174279
175051
|
};
|
|
175052
|
+
export declare type TownsquareGoalUpdateViewersArgs = {
|
|
175053
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
175054
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
175055
|
+
};
|
|
174280
175056
|
export declare type TownsquareGoalUpdateConnection = {
|
|
174281
175057
|
__typename?: 'TownsquareGoalUpdateConnection';
|
|
174282
175058
|
edges?: Maybe<Array<Maybe<TownsquareGoalUpdateEdge>>>;
|
|
@@ -175500,6 +176276,7 @@ export declare type TownsquareProjectUpdate = Node & {
|
|
|
175500
176276
|
updateType?: Maybe<TownsquareUpdateType>;
|
|
175501
176277
|
url?: Maybe<Scalars['String']['output']>;
|
|
175502
176278
|
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
176279
|
+
viewers?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection>;
|
|
175503
176280
|
};
|
|
175504
176281
|
export declare type TownsquareProjectUpdateCommentsArgs = {
|
|
175505
176282
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -175513,6 +176290,10 @@ export declare type TownsquareProjectUpdateUpdateNotesArgs = {
|
|
|
175513
176290
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
175514
176291
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
175515
176292
|
};
|
|
176293
|
+
export declare type TownsquareProjectUpdateViewersArgs = {
|
|
176294
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
176295
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
176296
|
+
};
|
|
175516
176297
|
export declare type TownsquareProjectUpdateConnection = {
|
|
175517
176298
|
__typename?: 'TownsquareProjectUpdateConnection';
|
|
175518
176299
|
count: Scalars['Int']['output'];
|
|
@@ -176727,6 +177508,7 @@ export declare type TrelloAddAttachmentToCardAction = TrelloAction & TrelloCardA
|
|
|
176727
177508
|
attachment?: Maybe<TrelloAttachment>;
|
|
176728
177509
|
board?: Maybe<TrelloBoard>;
|
|
176729
177510
|
card?: Maybe<TrelloCard>;
|
|
177511
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
176730
177512
|
creator?: Maybe<TrelloMember>;
|
|
176731
177513
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
176732
177514
|
displayEntities?: Maybe<TrelloAddAttachmentToCardActionDisplayEntities>;
|
|
@@ -176760,6 +177542,7 @@ export declare type TrelloAddChecklistToCardAction = TrelloAction & TrelloCardAc
|
|
|
176760
177542
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
176761
177543
|
board?: Maybe<TrelloBoard>;
|
|
176762
177544
|
card?: Maybe<TrelloCard>;
|
|
177545
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
176763
177546
|
checklist?: Maybe<TrelloChecklist>;
|
|
176764
177547
|
creator?: Maybe<TrelloMember>;
|
|
176765
177548
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -176797,6 +177580,7 @@ export declare type TrelloAddMemberToCardAction = TrelloAction & TrelloCardActio
|
|
|
176797
177580
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
176798
177581
|
board?: Maybe<TrelloBoard>;
|
|
176799
177582
|
card?: Maybe<TrelloCard>;
|
|
177583
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
176800
177584
|
creator?: Maybe<TrelloMember>;
|
|
176801
177585
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
176802
177586
|
displayEntities?: Maybe<TrelloAddRemoveMemberActionDisplayEntities>;
|
|
@@ -177601,6 +178385,7 @@ export declare type TrelloCardActionConnectionUpdated = {
|
|
|
177601
178385
|
export declare type TrelloCardActionData = {
|
|
177602
178386
|
board?: Maybe<TrelloBoard>;
|
|
177603
178387
|
card?: Maybe<TrelloCard>;
|
|
178388
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
177604
178389
|
};
|
|
177605
178390
|
export declare type TrelloCardActionEdge = {
|
|
177606
178391
|
__typename?: 'TrelloCardActionEdge';
|
|
@@ -177877,6 +178662,8 @@ export declare type TrelloCardPlannerEvent = {
|
|
|
177877
178662
|
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
177878
178663
|
id: Scalars['ID']['output'];
|
|
177879
178664
|
objectId: Scalars['ID']['output'];
|
|
178665
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
178666
|
+
providerAccountId?: Maybe<Scalars['ID']['output']>;
|
|
177880
178667
|
};
|
|
177881
178668
|
export declare type TrelloCardPlannerEventConnectionUpdated = {
|
|
177882
178669
|
__typename?: 'TrelloCardPlannerEventConnectionUpdated';
|
|
@@ -178040,6 +178827,7 @@ export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionDat
|
|
|
178040
178827
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
178041
178828
|
board?: Maybe<TrelloBoard>;
|
|
178042
178829
|
card?: Maybe<TrelloCard>;
|
|
178830
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
178043
178831
|
creator?: Maybe<TrelloMember>;
|
|
178044
178832
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
178045
178833
|
dateLastEdited?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -178069,6 +178857,8 @@ export declare type TrelloCopyCardAction = TrelloAction & TrelloCardActionData &
|
|
|
178069
178857
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
178070
178858
|
board?: Maybe<TrelloBoard>;
|
|
178071
178859
|
card?: Maybe<TrelloCard>;
|
|
178860
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
178861
|
+
cardOrInboxCardSource?: Maybe<TrelloBaseCard>;
|
|
178072
178862
|
cardSource?: Maybe<TrelloCard>;
|
|
178073
178863
|
creator?: Maybe<TrelloMember>;
|
|
178074
178864
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -178093,6 +178883,7 @@ export declare type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActio
|
|
|
178093
178883
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
178094
178884
|
board?: Maybe<TrelloBoard>;
|
|
178095
178885
|
card?: Maybe<TrelloCard>;
|
|
178886
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
178096
178887
|
creator?: Maybe<TrelloMember>;
|
|
178097
178888
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
178098
178889
|
displayEntities?: Maybe<TrelloCopyCommentCardActionDisplayEntities>;
|
|
@@ -178116,6 +178907,8 @@ export declare type TrelloCopyInboxCardAction = TrelloAction & TrelloCardActionD
|
|
|
178116
178907
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
178117
178908
|
board?: Maybe<TrelloBoard>;
|
|
178118
178909
|
card?: Maybe<TrelloCard>;
|
|
178910
|
+
cardOrInboxCard?: Maybe<TrelloInboxCard>;
|
|
178911
|
+
cardOrInboxCardSource?: Maybe<TrelloBaseCard>;
|
|
178119
178912
|
cardSource?: Maybe<TrelloCard>;
|
|
178120
178913
|
creator?: Maybe<TrelloMember>;
|
|
178121
178914
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -178165,6 +178958,7 @@ export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData
|
|
|
178165
178958
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
178166
178959
|
board?: Maybe<TrelloBoard>;
|
|
178167
178960
|
card?: Maybe<TrelloCard>;
|
|
178961
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
178168
178962
|
creator?: Maybe<TrelloMember>;
|
|
178169
178963
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
178170
178964
|
displayEntities?: Maybe<TrelloCreateCardActionDisplayEntities>;
|
|
@@ -178186,6 +178980,8 @@ export declare type TrelloCreateCardFromCheckItemAction = TrelloAction & TrelloC
|
|
|
178186
178980
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
178187
178981
|
board?: Maybe<TrelloBoard>;
|
|
178188
178982
|
card?: Maybe<TrelloCard>;
|
|
178983
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
178984
|
+
cardOrInboxCardSource?: Maybe<TrelloBaseCard>;
|
|
178189
178985
|
cardSource?: Maybe<TrelloCard>;
|
|
178190
178986
|
checklist?: Maybe<TrelloChecklist>;
|
|
178191
178987
|
creator?: Maybe<TrelloMember>;
|
|
@@ -178210,6 +179006,7 @@ export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardA
|
|
|
178210
179006
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
178211
179007
|
board?: Maybe<TrelloBoard>;
|
|
178212
179008
|
card?: Maybe<TrelloCard>;
|
|
179009
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
178213
179010
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
178214
179011
|
creator?: Maybe<TrelloMember>;
|
|
178215
179012
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -178248,6 +179045,7 @@ export declare type TrelloCreateInboxCardAction = TrelloAction & TrelloCardActio
|
|
|
178248
179045
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
178249
179046
|
board?: Maybe<TrelloBoard>;
|
|
178250
179047
|
card?: Maybe<TrelloCard>;
|
|
179048
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
178251
179049
|
creator?: Maybe<TrelloMember>;
|
|
178252
179050
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
178253
179051
|
displayEntities?: Maybe<TrelloCreateInboxCardActionDisplayEntities>;
|
|
@@ -178426,6 +179224,7 @@ export declare type TrelloDeleteAttachmentFromCardAction = TrelloAction & Trello
|
|
|
178426
179224
|
attachment?: Maybe<TrelloAttachment>;
|
|
178427
179225
|
board?: Maybe<TrelloBoard>;
|
|
178428
179226
|
card?: Maybe<TrelloCard>;
|
|
179227
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
178429
179228
|
creator?: Maybe<TrelloMember>;
|
|
178430
179229
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
178431
179230
|
displayEntities?: Maybe<TrelloDeleteAttachmentFromCardActionDisplayEntities>;
|
|
@@ -179074,7 +179873,7 @@ export declare type TrelloMergeCardsInput = {
|
|
|
179074
179873
|
export declare type TrelloMergeCardsPayload = Payload & {
|
|
179075
179874
|
__typename?: 'TrelloMergeCardsPayload';
|
|
179076
179875
|
archivedCardIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
179077
|
-
card?: Maybe<
|
|
179876
|
+
card?: Maybe<TrelloBaseCard>;
|
|
179078
179877
|
errors?: Maybe<Array<MutationError>>;
|
|
179079
179878
|
success: Scalars['Boolean']['output'];
|
|
179080
179879
|
};
|
|
@@ -179100,6 +179899,7 @@ export declare type TrelloMoveCardAction = TrelloAction & TrelloCardActionData &
|
|
|
179100
179899
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
179101
179900
|
board?: Maybe<TrelloBoard>;
|
|
179102
179901
|
card?: Maybe<TrelloCard>;
|
|
179902
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
179103
179903
|
creator?: Maybe<TrelloMember>;
|
|
179104
179904
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
179105
179905
|
displayEntities?: Maybe<TrelloMoveCardActionDisplayEntities>;
|
|
@@ -179130,6 +179930,7 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
|
|
|
179130
179930
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
179131
179931
|
board?: Maybe<TrelloBoard>;
|
|
179132
179932
|
card?: Maybe<TrelloCard>;
|
|
179933
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
179133
179934
|
creator?: Maybe<TrelloMember>;
|
|
179134
179935
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
179135
179936
|
displayEntities?: Maybe<TrelloMoveCardBoardEntities>;
|
|
@@ -179145,6 +179946,7 @@ export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCard
|
|
|
179145
179946
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
179146
179947
|
board?: Maybe<TrelloBoard>;
|
|
179147
179948
|
card?: Maybe<TrelloCard>;
|
|
179949
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
179148
179950
|
creator?: Maybe<TrelloMember>;
|
|
179149
179951
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
179150
179952
|
displayEntities?: Maybe<TrelloMoveInboxCardToBoardEntities>;
|
|
@@ -179230,6 +180032,7 @@ export declare type TrelloMutationApi = {
|
|
|
179230
180032
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
179231
180033
|
toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
|
|
179232
180034
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
180035
|
+
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
179233
180036
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
179234
180037
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
179235
180038
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
@@ -179395,6 +180198,9 @@ export declare type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
|
|
|
179395
180198
|
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
179396
180199
|
input: TrelloUnarchiveCardInput;
|
|
179397
180200
|
};
|
|
180201
|
+
export declare type TrelloMutationApiUndoActionArgs = {
|
|
180202
|
+
input: TrelloUndoActionInput;
|
|
180203
|
+
};
|
|
179398
180204
|
export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
179399
180205
|
input: TrelloWatchCardInput;
|
|
179400
180206
|
};
|
|
@@ -179530,6 +180336,7 @@ export declare type TrelloPlanner = {
|
|
|
179530
180336
|
__typename?: 'TrelloPlanner';
|
|
179531
180337
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
179532
180338
|
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnection>;
|
|
180339
|
+
dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettings>;
|
|
179533
180340
|
id: Scalars['ID']['output'];
|
|
179534
180341
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
179535
180342
|
primaryCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -179549,11 +180356,10 @@ export declare type TrelloPlannerProposedEventsArgs = {
|
|
|
179549
180356
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
179550
180357
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
179551
180358
|
};
|
|
179552
|
-
export declare type
|
|
179553
|
-
__typename?: 'TrelloPlannerBoardWithDueCards';
|
|
179554
|
-
board?: Maybe<TrelloBaseBoard>;
|
|
180359
|
+
export declare type TrelloPlannerBaseCardUpdated = {
|
|
179555
180360
|
id: Scalars['ID']['output'];
|
|
179556
|
-
|
|
180361
|
+
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
180362
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
179557
180363
|
};
|
|
179558
180364
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
179559
180365
|
__typename?: 'TrelloPlannerCalendar';
|
|
@@ -179758,6 +180564,7 @@ export declare type TrelloPlannerCalendarEventCardUpdated = {
|
|
|
179758
180564
|
card?: Maybe<TrelloPlannerCardUpdated>;
|
|
179759
180565
|
cardId?: Maybe<Scalars['ID']['output']>;
|
|
179760
180566
|
cardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
180567
|
+
cardOrInboxCard?: Maybe<TrelloPlannerBaseCardUpdated>;
|
|
179761
180568
|
id: Scalars['ID']['output'];
|
|
179762
180569
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
179763
180570
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -179884,7 +180691,7 @@ export declare type TrelloPlannerCardListUpdated = {
|
|
|
179884
180691
|
id: Scalars['ID']['output'];
|
|
179885
180692
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
179886
180693
|
};
|
|
179887
|
-
export declare type TrelloPlannerCardUpdated = {
|
|
180694
|
+
export declare type TrelloPlannerCardUpdated = TrelloPlannerBaseCardUpdated & {
|
|
179888
180695
|
__typename?: 'TrelloPlannerCardUpdated';
|
|
179889
180696
|
id: Scalars['ID']['output'];
|
|
179890
180697
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
@@ -179892,29 +180699,35 @@ export declare type TrelloPlannerCardUpdated = {
|
|
|
179892
180699
|
};
|
|
179893
180700
|
export declare type TrelloPlannerCardWithDueDate = {
|
|
179894
180701
|
__typename?: 'TrelloPlannerCardWithDueDate';
|
|
180702
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
179895
180703
|
card?: Maybe<TrelloBaseCard>;
|
|
179896
180704
|
id: Scalars['ID']['output'];
|
|
180705
|
+
listId?: Maybe<Scalars['ID']['output']>;
|
|
179897
180706
|
};
|
|
179898
180707
|
export declare type TrelloPlannerCardsWithDueDatesConnection = {
|
|
179899
180708
|
__typename?: 'TrelloPlannerCardsWithDueDatesConnection';
|
|
179900
180709
|
edges?: Maybe<Array<TrelloPlannerCardsWithDueDatesEdge>>;
|
|
179901
|
-
nodes?: Maybe<Array<TrelloPlannerBoardWithDueCards>>;
|
|
179902
180710
|
pageInfo: PageInfo;
|
|
179903
180711
|
};
|
|
179904
180712
|
export declare type TrelloPlannerCardsWithDueDatesEdge = {
|
|
179905
180713
|
__typename?: 'TrelloPlannerCardsWithDueDatesEdge';
|
|
179906
180714
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
179907
|
-
node?: Maybe<
|
|
180715
|
+
node?: Maybe<TrelloPlannerCardWithDueDate>;
|
|
179908
180716
|
};
|
|
179909
180717
|
export declare type TrelloPlannerCardsWithDueDatesFilter = {
|
|
179910
180718
|
dueEnd?: InputMaybe<Scalars['DateTime']['input']>;
|
|
179911
180719
|
dueStart?: InputMaybe<Scalars['DateTime']['input']>;
|
|
179912
180720
|
};
|
|
180721
|
+
export declare type TrelloPlannerDueDateCardsSettings = {
|
|
180722
|
+
__typename?: 'TrelloPlannerDueDateCardsSettings';
|
|
180723
|
+
assignedToMe?: Maybe<Scalars['Boolean']['output']>;
|
|
180724
|
+
};
|
|
179913
180725
|
export declare type TrelloPlannerEventCardConnection = {
|
|
179914
180726
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
179915
180727
|
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|
|
179916
180728
|
edges: Array<TrelloPlannerEventCardEdge>;
|
|
179917
180729
|
pageInfo: PageInfo;
|
|
180730
|
+
queryWindow?: Maybe<TrelloPlannerEventQueryWindow>;
|
|
179918
180731
|
};
|
|
179919
180732
|
export declare type TrelloPlannerEventCardDeleted = {
|
|
179920
180733
|
__typename?: 'TrelloPlannerEventCardDeleted';
|
|
@@ -179931,21 +180744,27 @@ export declare type TrelloPlannerEventConnection = {
|
|
|
179931
180744
|
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|
|
179932
180745
|
edges: Array<TrelloPlannerEventEdge>;
|
|
179933
180746
|
pageInfo: PageInfo;
|
|
180747
|
+
queryWindow?: Maybe<TrelloPlannerEventQueryWindow>;
|
|
179934
180748
|
};
|
|
179935
180749
|
export declare type TrelloPlannerEventEdge = {
|
|
179936
180750
|
__typename?: 'TrelloPlannerEventEdge';
|
|
179937
180751
|
cursor: Scalars['String']['output'];
|
|
179938
180752
|
node: TrelloCardPlannerEvent;
|
|
179939
180753
|
};
|
|
180754
|
+
export declare type TrelloPlannerEventQueryWindow = {
|
|
180755
|
+
__typename?: 'TrelloPlannerEventQueryWindow';
|
|
180756
|
+
end: Scalars['DateTime']['output'];
|
|
180757
|
+
start: Scalars['DateTime']['output'];
|
|
180758
|
+
};
|
|
179940
180759
|
export declare enum TrelloPlannerEventTimeFilter {
|
|
179941
180760
|
All = "ALL",
|
|
179942
180761
|
Future = "FUTURE"
|
|
179943
180762
|
}
|
|
179944
|
-
export declare type
|
|
179945
|
-
__typename?: '
|
|
179946
|
-
cards?: Maybe<Array<TrelloPlannerCardWithDueDate>>;
|
|
180763
|
+
export declare type TrelloPlannerInboxCardUpdated = TrelloPlannerBaseCardUpdated & {
|
|
180764
|
+
__typename?: 'TrelloPlannerInboxCardUpdated';
|
|
179947
180765
|
id: Scalars['ID']['output'];
|
|
179948
|
-
list?: Maybe<
|
|
180766
|
+
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
180767
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
179949
180768
|
};
|
|
179950
180769
|
export declare type TrelloPlannerProposedEventConnection = {
|
|
179951
180770
|
__typename?: 'TrelloPlannerProposedEventConnection';
|
|
@@ -180103,6 +180922,11 @@ export declare type TrelloProposedEventCardsArgs = {
|
|
|
180103
180922
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
180104
180923
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180105
180924
|
};
|
|
180925
|
+
export declare type TrelloProposedEventBaseCardUpdated = {
|
|
180926
|
+
id: Scalars['ID']['output'];
|
|
180927
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
180928
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
180929
|
+
};
|
|
180106
180930
|
export declare type TrelloProposedEventCardConnection = {
|
|
180107
180931
|
__typename?: 'TrelloProposedEventCardConnection';
|
|
180108
180932
|
edges?: Maybe<Array<TrelloProposedEventCardEdge>>;
|
|
@@ -180119,9 +180943,9 @@ export declare type TrelloProposedEventCardEdge = {
|
|
|
180119
180943
|
};
|
|
180120
180944
|
export declare type TrelloProposedEventCardEdgeUpdated = {
|
|
180121
180945
|
__typename?: 'TrelloProposedEventCardEdgeUpdated';
|
|
180122
|
-
node?: Maybe<
|
|
180946
|
+
node?: Maybe<TrelloProposedEventBaseCardUpdated>;
|
|
180123
180947
|
};
|
|
180124
|
-
export declare type TrelloProposedEventCardUpdated = {
|
|
180948
|
+
export declare type TrelloProposedEventCardUpdated = TrelloProposedEventBaseCardUpdated & {
|
|
180125
180949
|
__typename?: 'TrelloProposedEventCardUpdated';
|
|
180126
180950
|
id: Scalars['ID']['output'];
|
|
180127
180951
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -180131,6 +180955,12 @@ export declare type TrelloProposedEventDeleted = {
|
|
|
180131
180955
|
__typename?: 'TrelloProposedEventDeleted';
|
|
180132
180956
|
objectId: Scalars['ID']['output'];
|
|
180133
180957
|
};
|
|
180958
|
+
export declare type TrelloProposedEventInboxCardUpdated = TrelloProposedEventBaseCardUpdated & {
|
|
180959
|
+
__typename?: 'TrelloProposedEventInboxCardUpdated';
|
|
180960
|
+
id: Scalars['ID']['output'];
|
|
180961
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
180962
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
180963
|
+
};
|
|
180134
180964
|
export declare type TrelloProposedEventUpdated = {
|
|
180135
180965
|
__typename?: 'TrelloProposedEventUpdated';
|
|
180136
180966
|
cards?: Maybe<TrelloProposedEventCardConnectionUpdated>;
|
|
@@ -180174,6 +181004,7 @@ export declare type TrelloQueryApi = {
|
|
|
180174
181004
|
cardBatch?: Maybe<TrelloCardBatch>;
|
|
180175
181005
|
cardByShortLink?: Maybe<TrelloCard>;
|
|
180176
181006
|
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
181007
|
+
cardOrInboxCardByShortLink?: Maybe<TrelloBaseCard>;
|
|
180177
181008
|
checklistsById?: Maybe<Array<Maybe<TrelloChecklist>>>;
|
|
180178
181009
|
echo?: Maybe<Scalars['String']['output']>;
|
|
180179
181010
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -180233,6 +181064,9 @@ export declare type TrelloQueryApiCardByShortLinkArgs = {
|
|
|
180233
181064
|
export declare type TrelloQueryApiCardOrInboxCardArgs = {
|
|
180234
181065
|
id: Scalars['ID']['input'];
|
|
180235
181066
|
};
|
|
181067
|
+
export declare type TrelloQueryApiCardOrInboxCardByShortLinkArgs = {
|
|
181068
|
+
shortLink: Scalars['TrelloShortLink']['input'];
|
|
181069
|
+
};
|
|
180236
181070
|
export declare type TrelloQueryApiChecklistsByIdArgs = {
|
|
180237
181071
|
ids: Array<Scalars['ID']['input']>;
|
|
180238
181072
|
};
|
|
@@ -180396,6 +181230,7 @@ export declare type TrelloRemoveChecklistFromCardAction = TrelloAction & TrelloC
|
|
|
180396
181230
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
180397
181231
|
board?: Maybe<TrelloBoard>;
|
|
180398
181232
|
card?: Maybe<TrelloCard>;
|
|
181233
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
180399
181234
|
checklist?: Maybe<TrelloChecklist>;
|
|
180400
181235
|
creator?: Maybe<TrelloMember>;
|
|
180401
181236
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -180429,6 +181264,7 @@ export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCard
|
|
|
180429
181264
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
180430
181265
|
board?: Maybe<TrelloBoard>;
|
|
180431
181266
|
card?: Maybe<TrelloCard>;
|
|
181267
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
180432
181268
|
creator?: Maybe<TrelloMember>;
|
|
180433
181269
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
180434
181270
|
displayEntities?: Maybe<TrelloAddRemoveMemberActionDisplayEntities>;
|
|
@@ -180697,6 +181533,14 @@ export declare type TrelloUnarchiveCardPayload = Payload & {
|
|
|
180697
181533
|
errors?: Maybe<Array<MutationError>>;
|
|
180698
181534
|
success: Scalars['Boolean']['output'];
|
|
180699
181535
|
};
|
|
181536
|
+
export declare type TrelloUndoActionInput = {
|
|
181537
|
+
actionId: Scalars['ID']['input'];
|
|
181538
|
+
};
|
|
181539
|
+
export declare type TrelloUndoActionPayload = Payload & {
|
|
181540
|
+
__typename?: 'TrelloUndoActionPayload';
|
|
181541
|
+
errors?: Maybe<Array<MutationError>>;
|
|
181542
|
+
success: Scalars['Boolean']['output'];
|
|
181543
|
+
};
|
|
180700
181544
|
export declare type TrelloUpdateAiRuleInput = {
|
|
180701
181545
|
aiRuleId: Scalars['ID']['input'];
|
|
180702
181546
|
rule: Scalars['String']['input'];
|
|
@@ -180814,6 +181658,7 @@ export declare type TrelloUpdateCardClosedAction = TrelloAction & TrelloCardActi
|
|
|
180814
181658
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
180815
181659
|
board?: Maybe<TrelloBoard>;
|
|
180816
181660
|
card?: Maybe<TrelloCard>;
|
|
181661
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
180817
181662
|
creator?: Maybe<TrelloMember>;
|
|
180818
181663
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
180819
181664
|
displayEntities?: Maybe<TrelloUpdateCardClosedActionDisplayEntities>;
|
|
@@ -180834,6 +181679,7 @@ export declare type TrelloUpdateCardCompleteAction = TrelloAction & TrelloCardAc
|
|
|
180834
181679
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
180835
181680
|
board?: Maybe<TrelloBoard>;
|
|
180836
181681
|
card?: Maybe<TrelloCard>;
|
|
181682
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
180837
181683
|
creator?: Maybe<TrelloMember>;
|
|
180838
181684
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
180839
181685
|
displayEntities?: Maybe<TrelloUpdateCardCompleteActionDisplayEntities>;
|
|
@@ -180864,6 +181710,7 @@ export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionD
|
|
|
180864
181710
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
180865
181711
|
board?: Maybe<TrelloBoard>;
|
|
180866
181712
|
card?: Maybe<TrelloCard>;
|
|
181713
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
180867
181714
|
creator?: Maybe<TrelloMember>;
|
|
180868
181715
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
180869
181716
|
displayEntities?: Maybe<TrelloUpdateCardDueActionDisplayEntities>;
|
|
@@ -180905,6 +181752,7 @@ export declare type TrelloUpdateCardRecurrenceRuleAction = TrelloAction & Trello
|
|
|
180905
181752
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
180906
181753
|
board?: Maybe<TrelloBoard>;
|
|
180907
181754
|
card?: Maybe<TrelloCard>;
|
|
181755
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
180908
181756
|
creator?: Maybe<TrelloMember>;
|
|
180909
181757
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
180910
181758
|
displayEntities?: Maybe<TrelloUpdateCardRecurrenceRuleActionDisplayEntities>;
|
|
@@ -180935,6 +181783,7 @@ export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & Trel
|
|
|
180935
181783
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
180936
181784
|
board?: Maybe<TrelloBoard>;
|
|
180937
181785
|
card?: Maybe<TrelloCard>;
|
|
181786
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
180938
181787
|
checkItem?: Maybe<TrelloCheckItem>;
|
|
180939
181788
|
checklist?: Maybe<TrelloChecklist>;
|
|
180940
181789
|
creator?: Maybe<TrelloMember>;
|
|
@@ -180958,6 +181807,7 @@ export declare type TrelloUpdateCustomFieldItemAction = TrelloAction & TrelloCar
|
|
|
180958
181807
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
180959
181808
|
board?: Maybe<TrelloBoard>;
|
|
180960
181809
|
card?: Maybe<TrelloCard>;
|
|
181810
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
180961
181811
|
creator?: Maybe<TrelloMember>;
|
|
180962
181812
|
customField?: Maybe<TrelloCustomField>;
|
|
180963
181813
|
customFieldItem?: Maybe<TrelloCustomFieldItem>;
|