@forge/cli-shared 8.15.1 → 8.15.2-next.0-experimental-75a65ea
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 +17 -0
- package/out/graphql/graphql-types.d.ts +1076 -230
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +195 -55
- package/package.json +2 -2
|
@@ -170,6 +170,36 @@ export declare type AvpAddFilterExpressionsPayload = Payload & {
|
|
|
170
170
|
filterExpression?: Maybe<AvpFilterExpression>;
|
|
171
171
|
success: Scalars['Boolean']['output'];
|
|
172
172
|
};
|
|
173
|
+
export declare type AvpAnalyticsColumn = {
|
|
174
|
+
id: Scalars['ID']['output'];
|
|
175
|
+
isHidden: Scalars['Boolean']['output'];
|
|
176
|
+
name: Scalars['String']['output'];
|
|
177
|
+
type: AvpAnalyticsColumnType;
|
|
178
|
+
};
|
|
179
|
+
export declare type AvpAnalyticsColumnRequest = {
|
|
180
|
+
formula?: InputMaybe<AvpAnalyticsFormulaColumnRequest>;
|
|
181
|
+
simple?: InputMaybe<AvpAnalyticsSimpleColumnRequest>;
|
|
182
|
+
};
|
|
183
|
+
export declare enum AvpAnalyticsColumnType {
|
|
184
|
+
DateTime = "DATE_TIME",
|
|
185
|
+
Integer = "INTEGER",
|
|
186
|
+
Text = "TEXT"
|
|
187
|
+
}
|
|
188
|
+
export declare type AvpAnalyticsCreateModelRequest = {
|
|
189
|
+
cloudId: Scalars['ID']['input'];
|
|
190
|
+
modelDefinition?: InputMaybe<AvpAnalyticsModelDefinitionRequest>;
|
|
191
|
+
modelDescription?: InputMaybe<Scalars['String']['input']>;
|
|
192
|
+
modelName?: InputMaybe<Scalars['String']['input']>;
|
|
193
|
+
workspaceId: Scalars['ID']['input'];
|
|
194
|
+
};
|
|
195
|
+
export declare type AvpAnalyticsCreateModelResponse = {
|
|
196
|
+
__typename?: 'AVPAnalyticsCreateModelResponse';
|
|
197
|
+
model: AvpAnalyticsModel;
|
|
198
|
+
};
|
|
199
|
+
export declare type AvpAnalyticsDataSourceMetadata = {
|
|
200
|
+
__typename?: 'AVPAnalyticsDataSourceMetadata';
|
|
201
|
+
icon: Scalars['String']['output'];
|
|
202
|
+
};
|
|
173
203
|
export declare type AvpAnalyticsDimension = {
|
|
174
204
|
dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
175
205
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -184,6 +214,32 @@ export declare type AvpAnalyticsDimensionValueDataRow = {
|
|
|
184
214
|
__typename?: 'AVPAnalyticsDimensionValueDataRow';
|
|
185
215
|
dimensionValueDataList: Array<AvpAnalyticsDimensionValueData>;
|
|
186
216
|
};
|
|
217
|
+
export declare type AvpAnalyticsFilter = {
|
|
218
|
+
type: AvpAnalyticsFilterType;
|
|
219
|
+
values: Array<Scalars['String']['input']>;
|
|
220
|
+
};
|
|
221
|
+
export declare type AvpAnalyticsFilterRequest = {
|
|
222
|
+
filters?: InputMaybe<Array<AvpAnalyticsFilter>>;
|
|
223
|
+
};
|
|
224
|
+
export declare enum AvpAnalyticsFilterType {
|
|
225
|
+
ModelCreatedBy = "MODEL_CREATED_BY",
|
|
226
|
+
ModelLabel = "MODEL_LABEL",
|
|
227
|
+
ModelStatus = "MODEL_STATUS"
|
|
228
|
+
}
|
|
229
|
+
export declare type AvpAnalyticsFormulaColumn = AvpAnalyticsColumn & {
|
|
230
|
+
__typename?: 'AVPAnalyticsFormulaColumn';
|
|
231
|
+
expression: Scalars['String']['output'];
|
|
232
|
+
id: Scalars['ID']['output'];
|
|
233
|
+
isHidden: Scalars['Boolean']['output'];
|
|
234
|
+
name: Scalars['String']['output'];
|
|
235
|
+
type: AvpAnalyticsColumnType;
|
|
236
|
+
};
|
|
237
|
+
export declare type AvpAnalyticsFormulaColumnRequest = {
|
|
238
|
+
expression: Scalars['String']['input'];
|
|
239
|
+
isHidden: Scalars['Boolean']['input'];
|
|
240
|
+
name: Scalars['String']['input'];
|
|
241
|
+
type: AvpAnalyticsColumnType;
|
|
242
|
+
};
|
|
187
243
|
export declare type AvpAnalyticsGetModelDataRequest = {
|
|
188
244
|
cloudId: Scalars['ID']['input'];
|
|
189
245
|
dimensions?: InputMaybe<Array<InputMaybe<AvpAnalyticsDimension>>>;
|
|
@@ -198,6 +254,58 @@ export declare type AvpAnalyticsGetModelDataResponse = {
|
|
|
198
254
|
dimensionValueDataRows: Array<AvpAnalyticsDimensionValueDataRow>;
|
|
199
255
|
paginationResponse: AvpAnalyticsPaginationResponse;
|
|
200
256
|
};
|
|
257
|
+
export declare type AvpAnalyticsGetModelsRequest = {
|
|
258
|
+
cloudId: Scalars['ID']['input'];
|
|
259
|
+
filterRequest?: InputMaybe<AvpAnalyticsFilterRequest>;
|
|
260
|
+
modelType: AvpAnalyticsModelType;
|
|
261
|
+
paginationRequest: AvpAnalyticsPaginationRequest;
|
|
262
|
+
searchRequest?: InputMaybe<AvpAnalyticsSearchRequest>;
|
|
263
|
+
sortRequest?: InputMaybe<AvpAnalyticsSortRequest>;
|
|
264
|
+
workspaceId: Scalars['ID']['input'];
|
|
265
|
+
};
|
|
266
|
+
export declare type AvpAnalyticsGetModelsResponse = {
|
|
267
|
+
__typename?: 'AVPAnalyticsGetModelsResponse';
|
|
268
|
+
models: Array<AvpAnalyticsModel>;
|
|
269
|
+
paginationResponse: AvpAnalyticsPaginationResponse;
|
|
270
|
+
};
|
|
271
|
+
export declare type AvpAnalyticsJoinColumnPairs = {
|
|
272
|
+
__typename?: 'AVPAnalyticsJoinColumnPairs';
|
|
273
|
+
joinOnOperator: AvpAnalyticsJoinOnOperator;
|
|
274
|
+
leftColumnId: Scalars['ID']['output'];
|
|
275
|
+
rightColumnId: Scalars['ID']['output'];
|
|
276
|
+
};
|
|
277
|
+
export declare type AvpAnalyticsJoinColumnPairsRequest = {
|
|
278
|
+
joinOnOperator: AvpAnalyticsJoinOnOperator;
|
|
279
|
+
leftColumnId: Scalars['ID']['input'];
|
|
280
|
+
rightColumnId: Scalars['ID']['input'];
|
|
281
|
+
};
|
|
282
|
+
export declare enum AvpAnalyticsJoinOnOperator {
|
|
283
|
+
Equals = "EQUALS",
|
|
284
|
+
GreaterOrEqualThan = "GREATER_OR_EQUAL_THAN",
|
|
285
|
+
GreaterThan = "GREATER_THAN",
|
|
286
|
+
LessOrEqualThan = "LESS_OR_EQUAL_THAN",
|
|
287
|
+
LessThan = "LESS_THAN",
|
|
288
|
+
NotEquals = "NOT_EQUALS"
|
|
289
|
+
}
|
|
290
|
+
export declare type AvpAnalyticsJoinPaths = {
|
|
291
|
+
__typename?: 'AVPAnalyticsJoinPaths';
|
|
292
|
+
columnPairs: Array<AvpAnalyticsJoinColumnPairs>;
|
|
293
|
+
joinType: AvpAnalyticsJoinType;
|
|
294
|
+
leftModelId: Scalars['ID']['output'];
|
|
295
|
+
rightModelId: Scalars['ID']['output'];
|
|
296
|
+
};
|
|
297
|
+
export declare type AvpAnalyticsJoinPathsRequest = {
|
|
298
|
+
columnPairs: Array<AvpAnalyticsJoinColumnPairsRequest>;
|
|
299
|
+
joinType: AvpAnalyticsJoinType;
|
|
300
|
+
leftModelId: Scalars['ID']['input'];
|
|
301
|
+
rightModelId: Scalars['ID']['input'];
|
|
302
|
+
};
|
|
303
|
+
export declare enum AvpAnalyticsJoinType {
|
|
304
|
+
Full = "FULL",
|
|
305
|
+
Inner = "INNER",
|
|
306
|
+
Left = "LEFT",
|
|
307
|
+
Right = "RIGHT"
|
|
308
|
+
}
|
|
201
309
|
export declare type AvpAnalyticsListModelsRequest = {
|
|
202
310
|
cloudId: Scalars['ID']['input'];
|
|
203
311
|
paginationRequest: AvpAnalyticsPaginationRequest;
|
|
@@ -210,6 +318,83 @@ export declare type AvpAnalyticsListModelsResponse = {
|
|
|
210
318
|
models: Array<AvpAnalyticsModelSummary>;
|
|
211
319
|
paginationResponse: AvpAnalyticsPaginationResponse;
|
|
212
320
|
};
|
|
321
|
+
export declare type AvpAnalyticsMetric = {
|
|
322
|
+
__typename?: 'AVPAnalyticsMetric';
|
|
323
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
324
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
325
|
+
};
|
|
326
|
+
export declare type AvpAnalyticsModel = {
|
|
327
|
+
__typename?: 'AVPAnalyticsModel';
|
|
328
|
+
definition?: Maybe<AvpAnalyticsModelDefinition>;
|
|
329
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
330
|
+
id: Scalars['ID']['output'];
|
|
331
|
+
metadata?: Maybe<AvpAnalyticsModelMetadata>;
|
|
332
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
333
|
+
status: AvpAnalyticsModelStatus;
|
|
334
|
+
type: AvpAnalyticsModelType;
|
|
335
|
+
version: Scalars['Int']['output'];
|
|
336
|
+
};
|
|
337
|
+
export declare type AvpAnalyticsModelDataSort = {
|
|
338
|
+
columnName: Scalars['String']['input'];
|
|
339
|
+
sortType: AvpAnalyticsSortType;
|
|
340
|
+
};
|
|
341
|
+
export declare type AvpAnalyticsModelDataSource = {
|
|
342
|
+
__typename?: 'AVPAnalyticsModelDataSource';
|
|
343
|
+
id: Scalars['ID']['output'];
|
|
344
|
+
metadata: AvpAnalyticsDataSourceMetadata;
|
|
345
|
+
models?: Maybe<Array<AvpAnalyticsModel>>;
|
|
346
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
347
|
+
subDataSources?: Maybe<Array<AvpAnalyticsModelDataSource>>;
|
|
348
|
+
};
|
|
349
|
+
export declare type AvpAnalyticsModelDataSourceRequest = {
|
|
350
|
+
id: Scalars['ID']['input'];
|
|
351
|
+
models?: InputMaybe<Array<AvpAnalyticsModelRequest>>;
|
|
352
|
+
subDataSources?: InputMaybe<Array<AvpAnalyticsModelDataSourceRequest>>;
|
|
353
|
+
};
|
|
354
|
+
export declare type AvpAnalyticsModelDefinition = {
|
|
355
|
+
__typename?: 'AVPAnalyticsModelDefinition';
|
|
356
|
+
columns?: Maybe<Array<AvpAnalyticsColumn>>;
|
|
357
|
+
dataSources?: Maybe<Array<AvpAnalyticsModelDataSource>>;
|
|
358
|
+
filters?: Maybe<Array<AvpAnalyticsModelFilter>>;
|
|
359
|
+
joinPaths?: Maybe<Array<AvpAnalyticsJoinPaths>>;
|
|
360
|
+
};
|
|
361
|
+
export declare type AvpAnalyticsModelDefinitionRequest = {
|
|
362
|
+
columns?: InputMaybe<Array<AvpAnalyticsColumnRequest>>;
|
|
363
|
+
dataSources?: InputMaybe<Array<AvpAnalyticsModelDataSourceRequest>>;
|
|
364
|
+
filters?: InputMaybe<Array<AvpAnalyticsModelFilterRequest>>;
|
|
365
|
+
joinPaths?: InputMaybe<Array<AvpAnalyticsJoinPathsRequest>>;
|
|
366
|
+
};
|
|
367
|
+
export declare type AvpAnalyticsModelFilter = {
|
|
368
|
+
__typename?: 'AVPAnalyticsModelFilter';
|
|
369
|
+
columnName: Scalars['String']['output'];
|
|
370
|
+
};
|
|
371
|
+
export declare type AvpAnalyticsModelFilterRequest = {
|
|
372
|
+
columnName: Scalars['String']['input'];
|
|
373
|
+
};
|
|
374
|
+
export declare type AvpAnalyticsModelMetadata = {
|
|
375
|
+
__typename?: 'AVPAnalyticsModelMetadata';
|
|
376
|
+
createdAt: Scalars['DateTime']['output'];
|
|
377
|
+
createdBy: Scalars['String']['output'];
|
|
378
|
+
currentUserPermissions: Array<AvpAnalyticsModelPermission>;
|
|
379
|
+
everPublished?: Maybe<Scalars['Boolean']['output']>;
|
|
380
|
+
hasUnpublishedChanges?: Maybe<Scalars['Boolean']['output']>;
|
|
381
|
+
isStarredByCurrentUser?: Maybe<Scalars['Boolean']['output']>;
|
|
382
|
+
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
383
|
+
lastPublishedVersion?: Maybe<Scalars['Int']['output']>;
|
|
384
|
+
linkedMetrics?: Maybe<Array<AvpAnalyticsMetric>>;
|
|
385
|
+
linkedModels?: Maybe<Array<AvpAnalyticsModel>>;
|
|
386
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
387
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
388
|
+
updatedBy: Scalars['String']['output'];
|
|
389
|
+
};
|
|
390
|
+
export declare enum AvpAnalyticsModelPermission {
|
|
391
|
+
Edit = "EDIT",
|
|
392
|
+
ReadOnly = "READ_ONLY"
|
|
393
|
+
}
|
|
394
|
+
export declare type AvpAnalyticsModelRequest = {
|
|
395
|
+
id: Scalars['ID']['input'];
|
|
396
|
+
type: AvpAnalyticsModelType;
|
|
397
|
+
};
|
|
213
398
|
export declare enum AvpAnalyticsModelStatus {
|
|
214
399
|
Active = "ACTIVE",
|
|
215
400
|
Draft = "DRAFT"
|
|
@@ -233,20 +418,59 @@ export declare enum AvpAnalyticsModelType {
|
|
|
233
418
|
UserDefined = "USER_DEFINED"
|
|
234
419
|
}
|
|
235
420
|
export declare type AvpAnalyticsPaginationRequest = {
|
|
236
|
-
|
|
237
|
-
|
|
421
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
422
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
423
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
424
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
425
|
+
pageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
426
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
238
427
|
};
|
|
239
428
|
export declare type AvpAnalyticsPaginationResponse = {
|
|
240
429
|
__typename?: 'AVPAnalyticsPaginationResponse';
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
430
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
431
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
432
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
433
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
245
434
|
};
|
|
246
435
|
export declare enum AvpAnalyticsProductType {
|
|
247
436
|
Assets = "ASSETS",
|
|
248
437
|
Jira = "JIRA"
|
|
249
438
|
}
|
|
439
|
+
export declare type AvpAnalyticsSearchRequest = {
|
|
440
|
+
searchQuery: Scalars['String']['input'];
|
|
441
|
+
};
|
|
442
|
+
export declare type AvpAnalyticsSimpleColumn = AvpAnalyticsColumn & {
|
|
443
|
+
__typename?: 'AVPAnalyticsSimpleColumn';
|
|
444
|
+
id: Scalars['ID']['output'];
|
|
445
|
+
isHidden: Scalars['Boolean']['output'];
|
|
446
|
+
name: Scalars['String']['output'];
|
|
447
|
+
sourceColumnId?: Maybe<Scalars['ID']['output']>;
|
|
448
|
+
sourceModelId?: Maybe<Scalars['ID']['output']>;
|
|
449
|
+
type: AvpAnalyticsColumnType;
|
|
450
|
+
};
|
|
451
|
+
export declare type AvpAnalyticsSimpleColumnRequest = {
|
|
452
|
+
isHidden: Scalars['Boolean']['input'];
|
|
453
|
+
name: Scalars['String']['input'];
|
|
454
|
+
sourceColumnId: Scalars['ID']['input'];
|
|
455
|
+
sourceModelId: Scalars['ID']['input'];
|
|
456
|
+
type: AvpAnalyticsColumnType;
|
|
457
|
+
};
|
|
458
|
+
export declare enum AvpAnalyticsSortKey {
|
|
459
|
+
ModelCreatedAt = "MODEL_CREATED_AT",
|
|
460
|
+
ModelCreatedBy = "MODEL_CREATED_BY",
|
|
461
|
+
ModelName = "MODEL_NAME",
|
|
462
|
+
ModelStarred = "MODEL_STARRED",
|
|
463
|
+
ModelStatus = "MODEL_STATUS",
|
|
464
|
+
ModelUpdatedAt = "MODEL_UPDATED_AT"
|
|
465
|
+
}
|
|
466
|
+
export declare type AvpAnalyticsSortRequest = {
|
|
467
|
+
sortKey: AvpAnalyticsSortKey;
|
|
468
|
+
sortType: AvpAnalyticsSortType;
|
|
469
|
+
};
|
|
470
|
+
export declare enum AvpAnalyticsSortType {
|
|
471
|
+
Asc = "ASC",
|
|
472
|
+
Desc = "DESC"
|
|
473
|
+
}
|
|
250
474
|
export declare enum AvpCanvasRowHeight {
|
|
251
475
|
Large = "large",
|
|
252
476
|
Medium = "medium",
|
|
@@ -278,12 +502,16 @@ export declare type AvpChartConfig = {
|
|
|
278
502
|
clientSettings?: Maybe<AvpChartClientSettings>;
|
|
279
503
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
280
504
|
creator?: Maybe<Scalars['String']['output']>;
|
|
505
|
+
dataFetchStrategy?: Maybe<AvpDataFetchStrategy>;
|
|
281
506
|
settings?: Maybe<Array<AvpChartSetting>>;
|
|
282
507
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
508
|
+
vizConfig?: Maybe<AvpVizConfig>;
|
|
283
509
|
};
|
|
284
510
|
export declare type AvpChartConfigInput = {
|
|
285
511
|
clientSettings?: InputMaybe<AvpChartClientSettingsInput>;
|
|
512
|
+
dataFetchStrategy?: InputMaybe<AvpDataFetchStrategy>;
|
|
286
513
|
settings?: InputMaybe<Array<AvpChartSettingInput>>;
|
|
514
|
+
vizConfig?: InputMaybe<AvpVizConfigInput>;
|
|
287
515
|
};
|
|
288
516
|
export declare type AvpChartInput = {
|
|
289
517
|
chartConfig?: InputMaybe<AvpChartConfigInput>;
|
|
@@ -699,6 +927,10 @@ export declare type AvpDashboardTemplateInput = {
|
|
|
699
927
|
templatePlaceholderReplacements?: InputMaybe<Array<AvpTemplatePlaceholderReplacement>>;
|
|
700
928
|
templateVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
701
929
|
};
|
|
930
|
+
export declare enum AvpDataFetchStrategy {
|
|
931
|
+
Dynamic = "DYNAMIC",
|
|
932
|
+
Static = "STATIC"
|
|
933
|
+
}
|
|
702
934
|
export declare type AvpDatasourceLocator = {
|
|
703
935
|
__typename?: 'AVPDatasourceLocator';
|
|
704
936
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -1248,6 +1480,15 @@ export declare type AvpVariableInput = {
|
|
|
1248
1480
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
1249
1481
|
name: Scalars['String']['input'];
|
|
1250
1482
|
};
|
|
1483
|
+
export declare type AvpVizConfig = {
|
|
1484
|
+
__typename?: 'AVPVizConfig';
|
|
1485
|
+
accessors?: Maybe<Scalars['JSON']['output']>;
|
|
1486
|
+
data: Array<Array<Maybe<Scalars['JSON']['output']>>>;
|
|
1487
|
+
};
|
|
1488
|
+
export declare type AvpVizConfigInput = {
|
|
1489
|
+
accessors?: InputMaybe<Scalars['JSON']['input']>;
|
|
1490
|
+
data: Array<Array<InputMaybe<Scalars['JSON']['input']>>>;
|
|
1491
|
+
};
|
|
1251
1492
|
export declare enum AcceptableResponse {
|
|
1252
1493
|
False = "FALSE",
|
|
1253
1494
|
NotApplicable = "NOT_APPLICABLE",
|
|
@@ -4264,6 +4505,7 @@ export declare type AgentStudioUpdateAgentPermissionInput = {
|
|
|
4264
4505
|
export declare type AgentStudioUpdateAgentPermissionPayload = Payload & {
|
|
4265
4506
|
__typename?: 'AgentStudioUpdateAgentPermissionPayload';
|
|
4266
4507
|
errors?: Maybe<Array<MutationError>>;
|
|
4508
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
4267
4509
|
success: Scalars['Boolean']['output'];
|
|
4268
4510
|
users?: Maybe<Array<Maybe<User>>>;
|
|
4269
4511
|
};
|
|
@@ -4333,6 +4575,7 @@ export declare type AgentStudioUpdateScenarioPayload = Payload & {
|
|
|
4333
4575
|
export declare type AgentStudioUpdateUseAgentPermissionModePayload = Payload & {
|
|
4334
4576
|
__typename?: 'AgentStudioUpdateUseAgentPermissionModePayload';
|
|
4335
4577
|
errors?: Maybe<Array<MutationError>>;
|
|
4578
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
4336
4579
|
success: Scalars['Boolean']['output'];
|
|
4337
4580
|
};
|
|
4338
4581
|
export declare type AgentStudioUploadBatchEvaluationDatasetInput = {
|
|
@@ -4793,6 +5036,7 @@ export declare enum AnalyticsEventName {
|
|
|
4793
5036
|
PageUpdated = "page_updated",
|
|
4794
5037
|
PageViewed = "page_viewed",
|
|
4795
5038
|
PubliclinkPageViewed = "publiclink_page_viewed",
|
|
5039
|
+
ReactionCreated = "reaction_created",
|
|
4796
5040
|
SpaceAnalyticsViewed = "spaceAnalytics_viewed",
|
|
4797
5041
|
TeamCalendarsViewed = "teamCalendars_viewed",
|
|
4798
5042
|
WhiteboardCreated = "whiteboard_created",
|
|
@@ -5435,7 +5679,6 @@ export declare type AppInstallationInput = {
|
|
|
5435
5679
|
licenseOverride?: InputMaybe<LicenseOverrideState>;
|
|
5436
5680
|
overrides?: InputMaybe<EcosystemAppInstallationOverridesInput>;
|
|
5437
5681
|
provisionRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
5438
|
-
recoveryMode?: InputMaybe<EcosystemInstallationRecoveryMode>;
|
|
5439
5682
|
versionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5440
5683
|
};
|
|
5441
5684
|
export declare type AppInstallationLicense = {
|
|
@@ -6452,14 +6695,19 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
6452
6695
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
6453
6696
|
title: Scalars['String']['output'];
|
|
6454
6697
|
};
|
|
6455
|
-
export declare type AssetsAriAttributeOnObject = {
|
|
6698
|
+
export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
|
|
6456
6699
|
__typename?: 'AssetsARIAttributeOnObject';
|
|
6457
6700
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
6458
6701
|
id: Scalars['ID']['output'];
|
|
6459
|
-
|
|
6702
|
+
name: Scalars['String']['output'];
|
|
6703
|
+
value?: Maybe<Array<AssetsAriAttributeValue>>;
|
|
6460
6704
|
};
|
|
6461
6705
|
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CustomerUser | IdentityGroup | TeamV2;
|
|
6462
|
-
export declare type AssetsAttributeOnObject =
|
|
6706
|
+
export declare type AssetsAttributeOnObject = {
|
|
6707
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
6708
|
+
id: Scalars['ID']['output'];
|
|
6709
|
+
name: Scalars['String']['output'];
|
|
6710
|
+
};
|
|
6463
6711
|
export declare type AssetsAvatar = {
|
|
6464
6712
|
__typename?: 'AssetsAvatar';
|
|
6465
6713
|
url16?: Maybe<Scalars['String']['output']>;
|
|
@@ -6468,10 +6716,17 @@ export declare type AssetsAvatar = {
|
|
|
6468
6716
|
url144?: Maybe<Scalars['String']['output']>;
|
|
6469
6717
|
url288?: Maybe<Scalars['String']['output']>;
|
|
6470
6718
|
};
|
|
6471
|
-
export declare type AssetsBooleanAttributeOnObject = {
|
|
6719
|
+
export declare type AssetsBooleanAttributeOnObject = AssetsAttributeOnObject & {
|
|
6472
6720
|
__typename?: 'AssetsBooleanAttributeOnObject';
|
|
6473
6721
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
6474
6722
|
id: Scalars['ID']['output'];
|
|
6723
|
+
name: Scalars['String']['output'];
|
|
6724
|
+
value?: Maybe<Scalars['Boolean']['output']>;
|
|
6725
|
+
values: Array<AssetsBooleanAttributeValue>;
|
|
6726
|
+
};
|
|
6727
|
+
export declare type AssetsBooleanAttributeValue = {
|
|
6728
|
+
__typename?: 'AssetsBooleanAttributeValue';
|
|
6729
|
+
displayValue: Scalars['String']['output'];
|
|
6475
6730
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
6476
6731
|
};
|
|
6477
6732
|
export declare type AssetsDmAdapter = {
|
|
@@ -8559,45 +8814,88 @@ export declare type AssetsDmUpdateDefaultCleansingRuleResponse = {
|
|
|
8559
8814
|
isSuccessful: Scalars['Boolean']['output'];
|
|
8560
8815
|
message?: Maybe<Scalars['String']['output']>;
|
|
8561
8816
|
};
|
|
8562
|
-
export declare type AssetsDateAttributeOnObject = {
|
|
8817
|
+
export declare type AssetsDateAttributeOnObject = AssetsAttributeOnObject & {
|
|
8563
8818
|
__typename?: 'AssetsDateAttributeOnObject';
|
|
8564
8819
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8565
8820
|
id: Scalars['ID']['output'];
|
|
8821
|
+
name: Scalars['String']['output'];
|
|
8566
8822
|
value?: Maybe<Scalars['String']['output']>;
|
|
8823
|
+
values: Array<AssetsDateAttributeValue>;
|
|
8824
|
+
};
|
|
8825
|
+
export declare type AssetsDateAttributeValue = {
|
|
8826
|
+
__typename?: 'AssetsDateAttributeValue';
|
|
8827
|
+
displayValue: Scalars['String']['output'];
|
|
8567
8828
|
};
|
|
8568
|
-
export declare type AssetsDatetimeAttributeOnObject = {
|
|
8829
|
+
export declare type AssetsDatetimeAttributeOnObject = AssetsAttributeOnObject & {
|
|
8569
8830
|
__typename?: 'AssetsDatetimeAttributeOnObject';
|
|
8570
8831
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8571
8832
|
id: Scalars['ID']['output'];
|
|
8833
|
+
name: Scalars['String']['output'];
|
|
8834
|
+
value?: Maybe<Scalars['DateTime']['output']>;
|
|
8835
|
+
values: Array<AssetsDatetimeAttributeValue>;
|
|
8836
|
+
};
|
|
8837
|
+
export declare type AssetsDatetimeAttributeValue = {
|
|
8838
|
+
__typename?: 'AssetsDatetimeAttributeValue';
|
|
8839
|
+
displayValue: Scalars['String']['output'];
|
|
8572
8840
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
8573
8841
|
};
|
|
8574
|
-
export declare type AssetsEmailAttributeOnObject = {
|
|
8842
|
+
export declare type AssetsEmailAttributeOnObject = AssetsAttributeOnObject & {
|
|
8575
8843
|
__typename?: 'AssetsEmailAttributeOnObject';
|
|
8576
8844
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8577
8845
|
id: Scalars['ID']['output'];
|
|
8846
|
+
name: Scalars['String']['output'];
|
|
8578
8847
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
8848
|
+
values: Array<AssetsEmailAttributeValue>;
|
|
8579
8849
|
};
|
|
8580
|
-
export declare type
|
|
8850
|
+
export declare type AssetsEmailAttributeValue = {
|
|
8851
|
+
__typename?: 'AssetsEmailAttributeValue';
|
|
8852
|
+
displayValue: Scalars['String']['output'];
|
|
8853
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
8854
|
+
};
|
|
8855
|
+
export declare type AssetsFloatAttributeOnObject = AssetsAttributeOnObject & {
|
|
8581
8856
|
__typename?: 'AssetsFloatAttributeOnObject';
|
|
8582
8857
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8583
8858
|
id: Scalars['ID']['output'];
|
|
8859
|
+
name: Scalars['String']['output'];
|
|
8584
8860
|
value?: Maybe<Scalars['Float']['output']>;
|
|
8861
|
+
values: Array<AssetsFloatAttributeValue>;
|
|
8585
8862
|
};
|
|
8586
|
-
export declare type
|
|
8863
|
+
export declare type AssetsFloatAttributeValue = {
|
|
8864
|
+
__typename?: 'AssetsFloatAttributeValue';
|
|
8865
|
+
displayValue: Scalars['String']['output'];
|
|
8866
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
8867
|
+
};
|
|
8868
|
+
export declare type AssetsGroupAttributeOnObject = AssetsAttributeOnObject & {
|
|
8587
8869
|
__typename?: 'AssetsGroupAttributeOnObject';
|
|
8588
8870
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8589
8871
|
id: Scalars['ID']['output'];
|
|
8872
|
+
name: Scalars['String']['output'];
|
|
8590
8873
|
value?: Maybe<Array<AssetsGroupAttributeValue>>;
|
|
8874
|
+
values: Array<AssetsGroupAttributeValue>;
|
|
8591
8875
|
};
|
|
8592
8876
|
export declare type AssetsGroupAttributeValue = {
|
|
8593
8877
|
__typename?: 'AssetsGroupAttributeValue';
|
|
8594
8878
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8879
|
+
displayValue: Scalars['String']['output'];
|
|
8880
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8881
|
+
value?: Maybe<AssetsGroupValueData>;
|
|
8882
|
+
};
|
|
8883
|
+
export declare type AssetsGroupValueData = {
|
|
8884
|
+
__typename?: 'AssetsGroupValueData';
|
|
8885
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8595
8886
|
name?: Maybe<Scalars['String']['output']>;
|
|
8596
8887
|
};
|
|
8597
|
-
export declare type AssetsIpAddressAttributeOnObject = {
|
|
8888
|
+
export declare type AssetsIpAddressAttributeOnObject = AssetsAttributeOnObject & {
|
|
8598
8889
|
__typename?: 'AssetsIPAddressAttributeOnObject';
|
|
8599
8890
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8600
8891
|
id: Scalars['ID']['output'];
|
|
8892
|
+
name: Scalars['String']['output'];
|
|
8893
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
8894
|
+
values: Array<AssetsIpAddressAttributeValue>;
|
|
8895
|
+
};
|
|
8896
|
+
export declare type AssetsIpAddressAttributeValue = {
|
|
8897
|
+
__typename?: 'AssetsIPAddressAttributeValue';
|
|
8898
|
+
displayValue: Scalars['String']['output'];
|
|
8601
8899
|
value?: Maybe<Scalars['String']['output']>;
|
|
8602
8900
|
};
|
|
8603
8901
|
export declare type AssetsIcon = {
|
|
@@ -8606,10 +8904,17 @@ export declare type AssetsIcon = {
|
|
|
8606
8904
|
url16?: Maybe<Scalars['String']['output']>;
|
|
8607
8905
|
url48?: Maybe<Scalars['String']['output']>;
|
|
8608
8906
|
};
|
|
8609
|
-
export declare type AssetsIntegerAttributeOnObject = {
|
|
8907
|
+
export declare type AssetsIntegerAttributeOnObject = AssetsAttributeOnObject & {
|
|
8610
8908
|
__typename?: 'AssetsIntegerAttributeOnObject';
|
|
8611
8909
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8612
8910
|
id: Scalars['ID']['output'];
|
|
8911
|
+
name: Scalars['String']['output'];
|
|
8912
|
+
value?: Maybe<Scalars['Int']['output']>;
|
|
8913
|
+
values: Array<AssetsIntegerAttributeValue>;
|
|
8914
|
+
};
|
|
8915
|
+
export declare type AssetsIntegerAttributeValue = {
|
|
8916
|
+
__typename?: 'AssetsIntegerAttributeValue';
|
|
8917
|
+
displayValue: Scalars['String']['output'];
|
|
8613
8918
|
value?: Maybe<Scalars['Int']['output']>;
|
|
8614
8919
|
};
|
|
8615
8920
|
export declare type AssetsLinks = {
|
|
@@ -8661,11 +8966,18 @@ export declare type AssetsObjectNode = {
|
|
|
8661
8966
|
export declare type AssetsObjectNodeAttributesArgs = {
|
|
8662
8967
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8663
8968
|
};
|
|
8664
|
-
export declare type AssetsObjectReferenceAttributeOnObject = {
|
|
8969
|
+
export declare type AssetsObjectReferenceAttributeOnObject = AssetsAttributeOnObject & {
|
|
8665
8970
|
__typename?: 'AssetsObjectReferenceAttributeOnObject';
|
|
8666
8971
|
attribute?: Maybe<AssetsObjectAttribute>;
|
|
8667
8972
|
id: Scalars['ID']['output'];
|
|
8973
|
+
name: Scalars['String']['output'];
|
|
8668
8974
|
value?: Maybe<Array<AssetsObjectNode>>;
|
|
8975
|
+
values: Array<AssetsObjectReferenceAttributeValue>;
|
|
8976
|
+
};
|
|
8977
|
+
export declare type AssetsObjectReferenceAttributeValue = {
|
|
8978
|
+
__typename?: 'AssetsObjectReferenceAttributeValue';
|
|
8979
|
+
displayValue: Scalars['String']['output'];
|
|
8980
|
+
value?: Maybe<AssetsObjectNode>;
|
|
8669
8981
|
};
|
|
8670
8982
|
export declare type AssetsObjectType = Node & {
|
|
8671
8983
|
__typename?: 'AssetsObjectType';
|
|
@@ -8700,11 +9012,18 @@ export declare type AssetsSelectAttribute = AssetsObjectTypeAttribute & {
|
|
|
8700
9012
|
name?: Maybe<Scalars['String']['output']>;
|
|
8701
9013
|
options?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
8702
9014
|
};
|
|
8703
|
-
export declare type AssetsSelectAttributeOnObject = {
|
|
9015
|
+
export declare type AssetsSelectAttributeOnObject = AssetsAttributeOnObject & {
|
|
8704
9016
|
__typename?: 'AssetsSelectAttributeOnObject';
|
|
8705
9017
|
attribute?: Maybe<AssetsSelectAttribute>;
|
|
8706
9018
|
id: Scalars['ID']['output'];
|
|
9019
|
+
name: Scalars['String']['output'];
|
|
8707
9020
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
9021
|
+
values: Array<AssetsSelectAttributeValue>;
|
|
9022
|
+
};
|
|
9023
|
+
export declare type AssetsSelectAttributeValue = {
|
|
9024
|
+
__typename?: 'AssetsSelectAttributeValue';
|
|
9025
|
+
displayValue: Scalars['String']['output'];
|
|
9026
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
8708
9027
|
};
|
|
8709
9028
|
export declare type AssetsServiceObject = AssetsObjectNode & Node & {
|
|
8710
9029
|
__typename?: 'AssetsServiceObject';
|
|
@@ -8727,15 +9046,26 @@ export declare type AssetsServiceObject = AssetsObjectNode & Node & {
|
|
|
8727
9046
|
export declare type AssetsServiceObjectAttributesArgs = {
|
|
8728
9047
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8729
9048
|
};
|
|
8730
|
-
export declare type AssetsSpaceAttributeOnObject = {
|
|
9049
|
+
export declare type AssetsSpaceAttributeOnObject = AssetsAttributeOnObject & {
|
|
8731
9050
|
__typename?: 'AssetsSpaceAttributeOnObject';
|
|
8732
9051
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8733
9052
|
id: Scalars['ID']['output'];
|
|
9053
|
+
name: Scalars['String']['output'];
|
|
8734
9054
|
value?: Maybe<Array<AssetsSpaceAttributeValue>>;
|
|
9055
|
+
values: Array<AssetsSpaceAttributeValue>;
|
|
8735
9056
|
};
|
|
8736
9057
|
export declare type AssetsSpaceAttributeValue = {
|
|
8737
9058
|
__typename?: 'AssetsSpaceAttributeValue';
|
|
8738
9059
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
9060
|
+
displayValue: Scalars['String']['output'];
|
|
9061
|
+
id: Scalars['ID']['output'];
|
|
9062
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
9063
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9064
|
+
value?: Maybe<AssetsSpaceValueData>;
|
|
9065
|
+
};
|
|
9066
|
+
export declare type AssetsSpaceValueData = {
|
|
9067
|
+
__typename?: 'AssetsSpaceValueData';
|
|
9068
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8739
9069
|
id: Scalars['ID']['output'];
|
|
8740
9070
|
key?: Maybe<Scalars['String']['output']>;
|
|
8741
9071
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -8746,11 +9076,18 @@ export declare type AssetsStatusAttribute = AssetsObjectTypeAttribute & {
|
|
|
8746
9076
|
id: Scalars['ID']['output'];
|
|
8747
9077
|
name?: Maybe<Scalars['String']['output']>;
|
|
8748
9078
|
};
|
|
8749
|
-
export declare type AssetsStatusAttributeOnObject = {
|
|
9079
|
+
export declare type AssetsStatusAttributeOnObject = AssetsAttributeOnObject & {
|
|
8750
9080
|
__typename?: 'AssetsStatusAttributeOnObject';
|
|
8751
9081
|
attribute?: Maybe<AssetsStatusAttribute>;
|
|
8752
9082
|
id: Scalars['ID']['output'];
|
|
9083
|
+
name: Scalars['String']['output'];
|
|
8753
9084
|
value?: Maybe<Array<AssetsStatusType>>;
|
|
9085
|
+
values: Array<AssetsStatusAttributeValue>;
|
|
9086
|
+
};
|
|
9087
|
+
export declare type AssetsStatusAttributeValue = {
|
|
9088
|
+
__typename?: 'AssetsStatusAttributeValue';
|
|
9089
|
+
displayValue: Scalars['String']['output'];
|
|
9090
|
+
value?: Maybe<AssetsStatusType>;
|
|
8754
9091
|
};
|
|
8755
9092
|
export declare enum AssetsStatusCategory {
|
|
8756
9093
|
Active = "ACTIVE",
|
|
@@ -8764,29 +9101,50 @@ export declare type AssetsStatusType = {
|
|
|
8764
9101
|
id: Scalars['ID']['output'];
|
|
8765
9102
|
name?: Maybe<Scalars['String']['output']>;
|
|
8766
9103
|
};
|
|
8767
|
-
export declare type AssetsTagAttributeOnObject = {
|
|
9104
|
+
export declare type AssetsTagAttributeOnObject = AssetsAttributeOnObject & {
|
|
8768
9105
|
__typename?: 'AssetsTagAttributeOnObject';
|
|
8769
9106
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8770
9107
|
id: Scalars['ID']['output'];
|
|
9108
|
+
name: Scalars['String']['output'];
|
|
8771
9109
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
8772
9110
|
};
|
|
8773
|
-
export declare type AssetsTextAttributeOnObject = {
|
|
9111
|
+
export declare type AssetsTextAttributeOnObject = AssetsAttributeOnObject & {
|
|
8774
9112
|
__typename?: 'AssetsTextAttributeOnObject';
|
|
8775
9113
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8776
9114
|
id: Scalars['ID']['output'];
|
|
9115
|
+
name: Scalars['String']['output'];
|
|
8777
9116
|
value?: Maybe<Scalars['String']['output']>;
|
|
9117
|
+
values: Array<AssetsTextAttributeValue>;
|
|
8778
9118
|
};
|
|
8779
|
-
export declare type
|
|
9119
|
+
export declare type AssetsTextAttributeValue = {
|
|
9120
|
+
__typename?: 'AssetsTextAttributeValue';
|
|
9121
|
+
displayValue: Scalars['String']['output'];
|
|
9122
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
9123
|
+
};
|
|
9124
|
+
export declare type AssetsTextareaAttributeOnObject = AssetsAttributeOnObject & {
|
|
8780
9125
|
__typename?: 'AssetsTextareaAttributeOnObject';
|
|
8781
9126
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8782
9127
|
id: Scalars['ID']['output'];
|
|
9128
|
+
name: Scalars['String']['output'];
|
|
8783
9129
|
value?: Maybe<Scalars['String']['output']>;
|
|
9130
|
+
values: Array<AssetsTextareaAttributeValue>;
|
|
8784
9131
|
};
|
|
8785
|
-
export declare type
|
|
9132
|
+
export declare type AssetsTextareaAttributeValue = {
|
|
9133
|
+
__typename?: 'AssetsTextareaAttributeValue';
|
|
9134
|
+
displayValue: Scalars['String']['output'];
|
|
9135
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
9136
|
+
};
|
|
9137
|
+
export declare type AssetsUrlAttributeOnObject = AssetsAttributeOnObject & {
|
|
8786
9138
|
__typename?: 'AssetsURLAttributeOnObject';
|
|
8787
9139
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8788
9140
|
id: Scalars['ID']['output'];
|
|
8789
|
-
|
|
9141
|
+
name: Scalars['String']['output'];
|
|
9142
|
+
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
9143
|
+
values: Array<AssetsUrlAttributeValue>;
|
|
9144
|
+
};
|
|
9145
|
+
export declare type AssetsUrlAttributeValue = {
|
|
9146
|
+
__typename?: 'AssetsURLAttributeValue';
|
|
9147
|
+
displayValue: Scalars['String']['output'];
|
|
8790
9148
|
};
|
|
8791
9149
|
export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
|
|
8792
9150
|
__typename?: 'AssetsUserAttribute';
|
|
@@ -8794,17 +9152,30 @@ export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
|
|
|
8794
9152
|
name?: Maybe<Scalars['String']['output']>;
|
|
8795
9153
|
userGroups?: Maybe<Array<AssetsGroupAttributeValue>>;
|
|
8796
9154
|
};
|
|
8797
|
-
export declare type AssetsUserAttributeOnObject = {
|
|
9155
|
+
export declare type AssetsUserAttributeOnObject = AssetsAttributeOnObject & {
|
|
8798
9156
|
__typename?: 'AssetsUserAttributeOnObject';
|
|
8799
9157
|
attribute?: Maybe<AssetsUserAttribute>;
|
|
8800
9158
|
id: Scalars['ID']['output'];
|
|
9159
|
+
name: Scalars['String']['output'];
|
|
8801
9160
|
value?: Maybe<Array<AssetsUserAttributeValue>>;
|
|
9161
|
+
values: Array<AssetsUserAttributeValue>;
|
|
8802
9162
|
};
|
|
8803
9163
|
export declare type AssetsUserAttributeValue = {
|
|
8804
9164
|
__typename?: 'AssetsUserAttributeValue';
|
|
8805
9165
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8806
|
-
|
|
8807
|
-
|
|
9166
|
+
displayValue: Scalars['String']['output'];
|
|
9167
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
9168
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9169
|
+
value?: Maybe<AssetsUserValueData>;
|
|
9170
|
+
};
|
|
9171
|
+
export declare type AssetsUserValueData = {
|
|
9172
|
+
__typename?: 'AssetsUserValueData';
|
|
9173
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
9174
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
9175
|
+
emailAddress?: Maybe<Scalars['String']['output']>;
|
|
9176
|
+
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
9177
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
9178
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8808
9179
|
};
|
|
8809
9180
|
export declare type AssignIssueParentInput = {
|
|
8810
9181
|
boardId: Scalars['ID']['input'];
|
|
@@ -9257,6 +9628,7 @@ export declare type BlockServiceReferenceError = {
|
|
|
9257
9628
|
export declare type BlockServiceUpdateBlockInput = {
|
|
9258
9629
|
blockAri: Scalars['String']['input'];
|
|
9259
9630
|
content: Scalars['String']['input'];
|
|
9631
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
9260
9632
|
stepVersion?: InputMaybe<Scalars['Float']['input']>;
|
|
9261
9633
|
};
|
|
9262
9634
|
export declare type BlockServiceUpdateDocumentReferencesInput = {
|
|
@@ -25955,6 +26327,7 @@ export declare type ConfluenceReviewerDecisionInfo = {
|
|
|
25955
26327
|
principalId: Scalars['String']['output'];
|
|
25956
26328
|
principalType: ConfluencePrincipalType;
|
|
25957
26329
|
reviewerDecisionStatus?: Maybe<ConfluenceReviewerDecisionState>;
|
|
26330
|
+
user?: Maybe<AtlassianUser>;
|
|
25958
26331
|
};
|
|
25959
26332
|
export declare enum ConfluenceReviewerDecisionState {
|
|
25960
26333
|
PendingReview = "PENDING_REVIEW",
|
|
@@ -27084,14 +27457,6 @@ export declare type ConfluenceUpdateNcsPdfExportConfigurationPayload = Payload &
|
|
|
27084
27457
|
pdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
|
|
27085
27458
|
success: Scalars['Boolean']['output'];
|
|
27086
27459
|
};
|
|
27087
|
-
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
27088
|
-
enableNav4: Scalars['Boolean']['input'];
|
|
27089
|
-
};
|
|
27090
|
-
export declare type ConfluenceUpdateNav4OptInPayload = Payload & {
|
|
27091
|
-
__typename?: 'ConfluenceUpdateNav4OptInPayload';
|
|
27092
|
-
errors?: Maybe<Array<MutationError>>;
|
|
27093
|
-
success: Scalars['Boolean']['output'];
|
|
27094
|
-
};
|
|
27095
27460
|
export declare type ConfluenceUpdateNewCodeMacroInput = {
|
|
27096
27461
|
languageName: Scalars['String']['input'];
|
|
27097
27462
|
themeName: Scalars['String']['input'];
|
|
@@ -27399,6 +27764,14 @@ export declare type ConfluenceUpdateWatermarkConfigPayload = Payload & {
|
|
|
27399
27764
|
success: Scalars['Boolean']['output'];
|
|
27400
27765
|
watermarkConfig?: Maybe<ConfluenceWatermarkConfig>;
|
|
27401
27766
|
};
|
|
27767
|
+
export declare type ConfluenceUpdateWorkflowApplicationRequestInput = {
|
|
27768
|
+
contentId: Scalars['Long']['input'];
|
|
27769
|
+
contentStatus: GraphQlContentStatus;
|
|
27770
|
+
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27771
|
+
version: Scalars['Int']['input'];
|
|
27772
|
+
workflowId?: InputMaybe<Scalars['Long']['input']>;
|
|
27773
|
+
workflowStatusId?: InputMaybe<Scalars['Long']['input']>;
|
|
27774
|
+
};
|
|
27402
27775
|
export declare type ConfluenceUploadDefaultSpaceLogoInput = {
|
|
27403
27776
|
fileStoreId: Scalars['ID']['input'];
|
|
27404
27777
|
};
|
|
@@ -27564,10 +27937,22 @@ export declare type ConfluenceWhiteboardTemplateInfoEdge = {
|
|
|
27564
27937
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
27565
27938
|
node?: Maybe<ConfluenceWhiteboardTemplateInfo>;
|
|
27566
27939
|
};
|
|
27940
|
+
export declare type ConfluenceWorkflowApplicationDetails = {
|
|
27941
|
+
__typename?: 'ConfluenceWorkflowApplicationDetails';
|
|
27942
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
27943
|
+
contentStatus?: Maybe<Scalars['String']['output']>;
|
|
27944
|
+
contentVersion?: Maybe<Scalars['Int']['output']>;
|
|
27945
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
27946
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
27947
|
+
workflowId?: Maybe<Scalars['ID']['output']>;
|
|
27948
|
+
workflowStatusId?: Maybe<Scalars['ID']['output']>;
|
|
27949
|
+
};
|
|
27567
27950
|
export declare type ConfluenceWorkflowApplicationPayload = {
|
|
27568
27951
|
__typename?: 'ConfluenceWorkflowApplicationPayload';
|
|
27569
27952
|
errors: Array<MutationError>;
|
|
27570
27953
|
success: Scalars['Boolean']['output'];
|
|
27954
|
+
workflowApplication?: Maybe<ConfluenceWorkflowApplicationDetails>;
|
|
27955
|
+
workflowReviewWithDecisions?: Maybe<ConfluenceWorkflowReviewWithDecisions>;
|
|
27571
27956
|
workflowStatus?: Maybe<ConfluenceApprovalsWorkflowStatus>;
|
|
27572
27957
|
};
|
|
27573
27958
|
export declare type ConfluenceWorkflowReview = {
|
|
@@ -27602,6 +27987,7 @@ export declare type ConfluenceWorkflowReviewer = {
|
|
|
27602
27987
|
isRequired: Scalars['Boolean']['output'];
|
|
27603
27988
|
principalId: Scalars['String']['output'];
|
|
27604
27989
|
principalType: Scalars['String']['output'];
|
|
27990
|
+
user?: Maybe<AtlassianUser>;
|
|
27605
27991
|
};
|
|
27606
27992
|
export declare type ConfluenceWorkflowReviewerDecisionPayload = {
|
|
27607
27993
|
__typename?: 'ConfluenceWorkflowReviewerDecisionPayload';
|
|
@@ -29898,6 +30284,7 @@ export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
|
|
|
29898
30284
|
ConfluenceInlineTasksRule = "CONFLUENCE_INLINE_TASKS_RULE",
|
|
29899
30285
|
ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
|
|
29900
30286
|
ConfluenceTaggedPageRule = "CONFLUENCE_TAGGED_PAGE_RULE",
|
|
30287
|
+
ConfluenceUpdatedPageRule = "CONFLUENCE_UPDATED_PAGE_RULE",
|
|
29901
30288
|
JiraIssueRule = "JIRA_ISSUE_RULE",
|
|
29902
30289
|
Llm = "LLM",
|
|
29903
30290
|
LoomVideoRule = "LOOM_VIDEO_RULE",
|
|
@@ -30153,10 +30540,14 @@ export declare type CplsAddContributorWorkAssociationInput = {
|
|
|
30153
30540
|
export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
30154
30541
|
__typename?: 'CplsAddContributorWorkAssociationPayload';
|
|
30155
30542
|
contributorWorkAssociations?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
30543
|
+
contributorWorkAssociationsByScope?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
30156
30544
|
errors?: Maybe<Array<MutationError>>;
|
|
30157
30545
|
success: Scalars['Boolean']['output'];
|
|
30158
30546
|
workContributorAssociations?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
|
|
30159
30547
|
};
|
|
30548
|
+
export declare type CplsAddContributorWorkAssociationPayloadContributorWorkAssociationsByScopeArgs = {
|
|
30549
|
+
scopeId: Scalars['ID']['input'];
|
|
30550
|
+
};
|
|
30160
30551
|
export declare type CplsAddWorkScopeAssociationsInput = {
|
|
30161
30552
|
cloudId: Scalars['ID']['input'];
|
|
30162
30553
|
scopeId: Scalars['ID']['input'];
|
|
@@ -35034,11 +35425,11 @@ export declare type DevConsoleHasConsoleAdminResponse = {
|
|
|
35034
35425
|
};
|
|
35035
35426
|
export declare type DevConsoleMutation = {
|
|
35036
35427
|
__typename?: 'DevConsoleMutation';
|
|
35037
|
-
acceptAppBillingConsent
|
|
35038
|
-
archiveDeveloperSpace
|
|
35428
|
+
acceptAppBillingConsent?: Maybe<DevConsoleResponsePayload>;
|
|
35429
|
+
archiveDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
35039
35430
|
assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
|
|
35040
35431
|
createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
|
|
35041
|
-
publishDeveloperSpace
|
|
35432
|
+
publishDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
35042
35433
|
updateDeveloperSpaceMemberRoles?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
35043
35434
|
updateDeveloperSpaceSettings?: Maybe<DevConsoleDeveloperSpaceSettingsPayload>;
|
|
35044
35435
|
};
|
|
@@ -35075,21 +35466,21 @@ export declare type DevConsolePublishDeveloperSpaceInput = {
|
|
|
35075
35466
|
};
|
|
35076
35467
|
export declare type DevConsoleQuery = {
|
|
35077
35468
|
__typename?: 'DevConsoleQuery';
|
|
35078
|
-
appResourceUsage
|
|
35079
|
-
appResourceUsageDetailedView
|
|
35080
|
-
appUsageOverview
|
|
35081
|
-
appUsageTopSites
|
|
35082
|
-
downloadAppInstallations
|
|
35083
|
-
fetchDownloadAppInstallationsStatus
|
|
35084
|
-
getAppsWithoutConsent
|
|
35469
|
+
appResourceUsage?: Maybe<DevConsoleAppResourceUsageResponse>;
|
|
35470
|
+
appResourceUsageDetailedView?: Maybe<DevConsoleAppResourceUsageDetailedViewResponse>;
|
|
35471
|
+
appUsageOverview?: Maybe<DevConsoleAppUsageOverviewResponse>;
|
|
35472
|
+
appUsageTopSites?: Maybe<DevConsoleAppUsageTopSitesResponse>;
|
|
35473
|
+
downloadAppInstallations?: Maybe<DevConsoleDownloadAppInstallationsResponse>;
|
|
35474
|
+
fetchDownloadAppInstallationsStatus?: Maybe<DevConsoleFetchDownloadAppInstallationsStatusResponse>;
|
|
35475
|
+
getAppsWithoutConsent?: Maybe<DevConsoleAppsWithoutConsentResponse>;
|
|
35085
35476
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
35086
35477
|
getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
|
|
35087
|
-
getDeveloperSpaceTransactionAccount
|
|
35088
|
-
getDeveloperSpaceUserPermissions
|
|
35478
|
+
getDeveloperSpaceTransactionAccount?: Maybe<DevConsoleTransactionAccountResponse>;
|
|
35479
|
+
getDeveloperSpaceUserPermissions?: Maybe<DevConsoleDeveloperSpaceUserPermissionsResponse>;
|
|
35089
35480
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
35090
|
-
getDeveloperSpaceWithRoles
|
|
35481
|
+
getDeveloperSpaceWithRoles?: Maybe<Array<DevConsoleDeveloperSpaceWithRole>>;
|
|
35091
35482
|
hasAnyConsoleAdmin?: Maybe<DevConsoleHasConsoleAdminResponse>;
|
|
35092
|
-
tenantContexts
|
|
35483
|
+
tenantContexts?: Maybe<Array<Maybe<DevConsoleTenantContext>>>;
|
|
35093
35484
|
};
|
|
35094
35485
|
export declare type DevConsoleQueryAppResourceUsageArgs = {
|
|
35095
35486
|
appId: Scalars['ID']['input'];
|
|
@@ -36849,10 +37240,6 @@ export declare type EcosystemInstallationOverrides = {
|
|
|
36849
37240
|
key: EcosystemInstallationOverrideKeys;
|
|
36850
37241
|
value: Scalars['Boolean']['input'];
|
|
36851
37242
|
};
|
|
36852
|
-
export declare enum EcosystemInstallationRecoveryMode {
|
|
36853
|
-
FreshInstall = "FRESH_INSTALL",
|
|
36854
|
-
RecoverPreviousInstall = "RECOVER_PREVIOUS_INSTALL"
|
|
36855
|
-
}
|
|
36856
37243
|
export declare enum EcosystemLicenseMode {
|
|
36857
37244
|
UserAccess = "USER_ACCESS"
|
|
36858
37245
|
}
|
|
@@ -41976,6 +42363,7 @@ export declare enum GraphIntegrationSkillColor {
|
|
|
41976
42363
|
Green = "GREEN",
|
|
41977
42364
|
Lime = "LIME",
|
|
41978
42365
|
Magenta = "MAGENTA",
|
|
42366
|
+
Orange = "ORANGE",
|
|
41979
42367
|
Purple = "PURPLE",
|
|
41980
42368
|
Red = "RED",
|
|
41981
42369
|
Teal = "TEAL",
|
|
@@ -44778,6 +45166,8 @@ export declare type GraphStore = {
|
|
|
44778
45166
|
atlasProjectIsTrackedOnJiraEpicInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection>;
|
|
44779
45167
|
atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
44780
45168
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
45169
|
+
atlasProjectLinksJiraSpace?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceConnection>;
|
|
45170
|
+
atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
|
|
44781
45171
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
44782
45172
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
44783
45173
|
atlassianUserCreatedAtlassianGoalUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection>;
|
|
@@ -46118,6 +46508,22 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs =
|
|
|
46118
46508
|
id: Scalars['ID']['input'];
|
|
46119
46509
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46120
46510
|
};
|
|
46511
|
+
export declare type GraphStoreAtlasProjectLinksJiraSpaceArgs = {
|
|
46512
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46513
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46514
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46515
|
+
id: Scalars['ID']['input'];
|
|
46516
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46517
|
+
sort?: InputMaybe<GraphStoreAtlasProjectLinksJiraSpaceSortInput>;
|
|
46518
|
+
};
|
|
46519
|
+
export declare type GraphStoreAtlasProjectLinksJiraSpaceInverseArgs = {
|
|
46520
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46521
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46522
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46523
|
+
id: Scalars['ID']['input'];
|
|
46524
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46525
|
+
sort?: InputMaybe<GraphStoreAtlasProjectLinksJiraSpaceSortInput>;
|
|
46526
|
+
};
|
|
46121
46527
|
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemArgs = {
|
|
46122
46528
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46123
46529
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -53492,6 +53898,9 @@ export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
|
53492
53898
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
53493
53899
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53494
53900
|
};
|
|
53901
|
+
export declare type GraphStoreAtlasProjectLinksJiraSpaceSortInput = {
|
|
53902
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53903
|
+
};
|
|
53495
53904
|
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
53496
53905
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53497
53906
|
};
|
|
@@ -55799,6 +56208,10 @@ export declare enum GraphStoreCypherQueryV2BatchVersionEnum {
|
|
|
55799
56208
|
V2 = "V2",
|
|
55800
56209
|
V3 = "V3"
|
|
55801
56210
|
}
|
|
56211
|
+
export declare type GraphStoreCypherQueryV2BoolListObject = {
|
|
56212
|
+
__typename?: 'GraphStoreCypherQueryV2BoolListObject';
|
|
56213
|
+
values: Array<Scalars['Boolean']['output']>;
|
|
56214
|
+
};
|
|
55802
56215
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
55803
56216
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
55804
56217
|
value: Scalars['Boolean']['output'];
|
|
@@ -55819,6 +56232,10 @@ export declare type GraphStoreCypherQueryV2Edge = {
|
|
|
55819
56232
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
55820
56233
|
node: GraphStoreCypherQueryV2Node;
|
|
55821
56234
|
};
|
|
56235
|
+
export declare type GraphStoreCypherQueryV2FloatListObject = {
|
|
56236
|
+
__typename?: 'GraphStoreCypherQueryV2FloatListObject';
|
|
56237
|
+
values: Array<Scalars['Float']['output']>;
|
|
56238
|
+
};
|
|
55822
56239
|
export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
55823
56240
|
__typename?: 'GraphStoreCypherQueryV2FloatObject';
|
|
55824
56241
|
value: Scalars['Float']['output'];
|
|
@@ -55843,7 +56260,7 @@ export declare type GraphStoreCypherQueryV2Path = {
|
|
|
55843
56260
|
__typename?: 'GraphStoreCypherQueryV2Path';
|
|
55844
56261
|
elements: Array<Scalars['String']['output']>;
|
|
55845
56262
|
};
|
|
55846
|
-
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntListObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2Path | GraphStoreCypherQueryV2StringListObject | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampListObject | GraphStoreCypherQueryV2TimestampObject;
|
|
56263
|
+
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BoolListObject | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatListObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntListObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2Path | GraphStoreCypherQueryV2StringListObject | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampListObject | GraphStoreCypherQueryV2TimestampObject;
|
|
55847
56264
|
export declare type GraphStoreCypherQueryV2StringListObject = {
|
|
55848
56265
|
__typename?: 'GraphStoreCypherQueryV2StringListObject';
|
|
55849
56266
|
values: Array<Scalars['String']['output']>;
|
|
@@ -61796,6 +62213,34 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
|
|
|
61796
62213
|
};
|
|
61797
62214
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion = TownsquareProject;
|
|
61798
62215
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion = JiraIssue;
|
|
62216
|
+
export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceConnection = HasPageInfo & {
|
|
62217
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectLinksJiraSpaceConnection';
|
|
62218
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceEdge>>>;
|
|
62219
|
+
pageInfo: PageInfo;
|
|
62220
|
+
};
|
|
62221
|
+
export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceEdge = {
|
|
62222
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectLinksJiraSpaceEdge';
|
|
62223
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62224
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62225
|
+
id: Scalars['ID']['output'];
|
|
62226
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62227
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceUnion>;
|
|
62228
|
+
};
|
|
62229
|
+
export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection = HasPageInfo & {
|
|
62230
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection';
|
|
62231
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseEdge>>>;
|
|
62232
|
+
pageInfo: PageInfo;
|
|
62233
|
+
};
|
|
62234
|
+
export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseEdge = {
|
|
62235
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseEdge';
|
|
62236
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62237
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62238
|
+
id: Scalars['ID']['output'];
|
|
62239
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62240
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseUnion>;
|
|
62241
|
+
};
|
|
62242
|
+
export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseUnion = TownsquareProject;
|
|
62243
|
+
export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceUnion = JiraProject;
|
|
61799
62244
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection = HasPageInfo & {
|
|
61800
62245
|
__typename?: 'GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection';
|
|
61801
62246
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemEdge>>>;
|
|
@@ -72462,6 +72907,8 @@ export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput =
|
|
|
72462
72907
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
72463
72908
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
72464
72909
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
72910
|
+
relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
72911
|
+
relationship_rsvpStatus?: InputMaybe<GraphStoreUserAttendedCalendarEventRsvpStatusFilterInput>;
|
|
72465
72912
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
72466
72913
|
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
72467
72914
|
to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
@@ -72470,10 +72917,24 @@ export declare type GraphStoreUserAttendedCalendarEventFilterInput = {
|
|
|
72470
72917
|
and?: InputMaybe<Array<InputMaybe<GraphStoreUserAttendedCalendarEventConditionalFilterInput>>>;
|
|
72471
72918
|
or?: InputMaybe<Array<InputMaybe<GraphStoreUserAttendedCalendarEventConditionalFilterInput>>>;
|
|
72472
72919
|
};
|
|
72920
|
+
export declare enum GraphStoreUserAttendedCalendarEventRsvpStatus {
|
|
72921
|
+
Accepted = "ACCEPTED",
|
|
72922
|
+
Declined = "DECLINED",
|
|
72923
|
+
NotResponded = "NOT_RESPONDED",
|
|
72924
|
+
NotSet = "NOT_SET",
|
|
72925
|
+
Other = "OTHER",
|
|
72926
|
+
TentativelyAccepted = "TENTATIVELY_ACCEPTED"
|
|
72927
|
+
}
|
|
72928
|
+
export declare type GraphStoreUserAttendedCalendarEventRsvpStatusFilterInput = {
|
|
72929
|
+
is?: InputMaybe<Array<GraphStoreUserAttendedCalendarEventRsvpStatus>>;
|
|
72930
|
+
isNot?: InputMaybe<Array<GraphStoreUserAttendedCalendarEventRsvpStatus>>;
|
|
72931
|
+
};
|
|
72473
72932
|
export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
72474
72933
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
72475
72934
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
72476
72935
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72936
|
+
relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
|
|
72937
|
+
relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
|
|
72477
72938
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
72478
72939
|
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
72479
72940
|
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -73446,6 +73907,8 @@ export declare type GraphStoreV2 = {
|
|
|
73446
73907
|
jiraSpaceLinksAtlassianAutodevJobInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianAutodevJobInverseConnection>;
|
|
73447
73908
|
jiraSpaceLinksAtlassianGoal?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianGoalConnection>;
|
|
73448
73909
|
jiraSpaceLinksAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianGoalInverseConnection>;
|
|
73910
|
+
jiraSpaceLinksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectConnection>;
|
|
73911
|
+
jiraSpaceLinksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseConnection>;
|
|
73449
73912
|
jiraSpaceLinksCompassComponent?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksCompassComponentConnection>;
|
|
73450
73913
|
jiraSpaceLinksCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksCompassComponentInverseConnection>;
|
|
73451
73914
|
jiraSpaceLinksDocumentEntity?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityConnection>;
|
|
@@ -77296,6 +77759,20 @@ export declare type GraphStoreV2JiraSpaceLinksAtlassianGoalInverseArgs = {
|
|
|
77296
77759
|
id: Scalars['ID']['input'];
|
|
77297
77760
|
sort?: InputMaybe<GraphStoreV2JiraSpaceLinksAtlassianGoalSortInput>;
|
|
77298
77761
|
};
|
|
77762
|
+
export declare type GraphStoreV2JiraSpaceLinksAtlassianProjectArgs = {
|
|
77763
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77764
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77765
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77766
|
+
id: Scalars['ID']['input'];
|
|
77767
|
+
sort?: InputMaybe<GraphStoreV2JiraSpaceLinksAtlassianProjectSortInput>;
|
|
77768
|
+
};
|
|
77769
|
+
export declare type GraphStoreV2JiraSpaceLinksAtlassianProjectInverseArgs = {
|
|
77770
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77771
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77772
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77773
|
+
id: Scalars['ID']['input'];
|
|
77774
|
+
sort?: InputMaybe<GraphStoreV2JiraSpaceLinksAtlassianProjectSortInput>;
|
|
77775
|
+
};
|
|
77299
77776
|
export declare type GraphStoreV2JiraSpaceLinksCompassComponentArgs = {
|
|
77300
77777
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77301
77778
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79481,6 +79958,10 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
79481
79958
|
id: Scalars['ID']['output'];
|
|
79482
79959
|
};
|
|
79483
79960
|
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;
|
|
79961
|
+
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
79962
|
+
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
79963
|
+
values: Array<Scalars['Boolean']['output']>;
|
|
79964
|
+
};
|
|
79484
79965
|
export declare type GraphStoreV2CypherQueryV2BooleanObject = {
|
|
79485
79966
|
__typename?: 'GraphStoreV2CypherQueryV2BooleanObject';
|
|
79486
79967
|
value: Scalars['Boolean']['output'];
|
|
@@ -79501,6 +79982,10 @@ export declare type GraphStoreV2CypherQueryV2Edge = {
|
|
|
79501
79982
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
79502
79983
|
node: GraphStoreV2CypherQueryV2Node;
|
|
79503
79984
|
};
|
|
79985
|
+
export declare type GraphStoreV2CypherQueryV2FloatListObject = {
|
|
79986
|
+
__typename?: 'GraphStoreV2CypherQueryV2FloatListObject';
|
|
79987
|
+
values: Array<Scalars['Float']['output']>;
|
|
79988
|
+
};
|
|
79504
79989
|
export declare type GraphStoreV2CypherQueryV2FloatObject = {
|
|
79505
79990
|
__typename?: 'GraphStoreV2CypherQueryV2FloatObject';
|
|
79506
79991
|
value: Scalars['Float']['output'];
|
|
@@ -79521,7 +80006,7 @@ export declare type GraphStoreV2CypherQueryV2NodeList = {
|
|
|
79521
80006
|
__typename?: 'GraphStoreV2CypherQueryV2NodeList';
|
|
79522
80007
|
nodes: Array<GraphStoreV2CypherQueryV2AriNode>;
|
|
79523
80008
|
};
|
|
79524
|
-
export declare type GraphStoreV2CypherQueryV2ResultRowItemValueUnion = GraphStoreV2CypherQueryV2AriNode | GraphStoreV2CypherQueryV2BooleanObject | GraphStoreV2CypherQueryV2FloatObject | GraphStoreV2CypherQueryV2IntListObject | GraphStoreV2CypherQueryV2IntObject | GraphStoreV2CypherQueryV2NodeList | GraphStoreV2CypherQueryV2StringListObject | GraphStoreV2CypherQueryV2StringObject | GraphStoreV2CypherQueryV2TimestampListObject | GraphStoreV2CypherQueryV2TimestampObject;
|
|
80009
|
+
export declare type GraphStoreV2CypherQueryV2ResultRowItemValueUnion = GraphStoreV2CypherQueryV2AriNode | GraphStoreV2CypherQueryV2BoolListObject | GraphStoreV2CypherQueryV2BooleanObject | GraphStoreV2CypherQueryV2FloatListObject | GraphStoreV2CypherQueryV2FloatObject | GraphStoreV2CypherQueryV2IntListObject | GraphStoreV2CypherQueryV2IntObject | GraphStoreV2CypherQueryV2NodeList | GraphStoreV2CypherQueryV2StringListObject | GraphStoreV2CypherQueryV2StringObject | GraphStoreV2CypherQueryV2TimestampListObject | GraphStoreV2CypherQueryV2TimestampObject;
|
|
79525
80010
|
export declare type GraphStoreV2CypherQueryV2StringListObject = {
|
|
79526
80011
|
__typename?: 'GraphStoreV2CypherQueryV2StringListObject';
|
|
79527
80012
|
values: Array<Scalars['String']['output']>;
|
|
@@ -80050,6 +80535,8 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventConditi
|
|
|
80050
80535
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
80051
80536
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
80052
80537
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
80538
|
+
relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
80539
|
+
relationship_rsvpStatus?: InputMaybe<GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatusFilterInput>;
|
|
80053
80540
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
80054
80541
|
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
80055
80542
|
to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
@@ -80058,10 +80545,24 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventFilterI
|
|
|
80058
80545
|
and?: InputMaybe<Array<InputMaybe<GraphStoreV2ExternalUserAttendedExternalCalendarEventConditionalFilterInput>>>;
|
|
80059
80546
|
or?: InputMaybe<Array<InputMaybe<GraphStoreV2ExternalUserAttendedExternalCalendarEventConditionalFilterInput>>>;
|
|
80060
80547
|
};
|
|
80548
|
+
export declare enum GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatus {
|
|
80549
|
+
Accepted = "ACCEPTED",
|
|
80550
|
+
Declined = "DECLINED",
|
|
80551
|
+
NotResponded = "NOT_RESPONDED",
|
|
80552
|
+
NotSet = "NOT_SET",
|
|
80553
|
+
Other = "OTHER",
|
|
80554
|
+
TentativelyAccepted = "TENTATIVELY_ACCEPTED"
|
|
80555
|
+
}
|
|
80556
|
+
export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatusFilterInput = {
|
|
80557
|
+
is?: InputMaybe<Array<GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatus>>;
|
|
80558
|
+
isNot?: InputMaybe<Array<GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatus>>;
|
|
80559
|
+
};
|
|
80061
80560
|
export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventSortInput = {
|
|
80062
80561
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
80063
80562
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
80064
80563
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80564
|
+
relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
|
|
80565
|
+
relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
|
|
80065
80566
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
80066
80567
|
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
80067
80568
|
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -80408,6 +80909,9 @@ export declare type GraphStoreV2JiraSpaceLinksAtlassianGoalSortInput = {
|
|
|
80408
80909
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80409
80910
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
80410
80911
|
};
|
|
80912
|
+
export declare type GraphStoreV2JiraSpaceLinksAtlassianProjectSortInput = {
|
|
80913
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80914
|
+
};
|
|
80411
80915
|
export declare type GraphStoreV2JiraSpaceLinksCompassComponentSortInput = {
|
|
80412
80916
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
80413
80917
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -89230,6 +89734,34 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianGoalInverseEdge
|
|
|
89230
89734
|
};
|
|
89231
89735
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianGoalInverseUnion = JiraProject;
|
|
89232
89736
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianGoalUnion = TownsquareGoal;
|
|
89737
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectConnection = HasPageInfo & {
|
|
89738
|
+
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectConnection';
|
|
89739
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectEdge>>>;
|
|
89740
|
+
pageInfo: PageInfo;
|
|
89741
|
+
};
|
|
89742
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectEdge = {
|
|
89743
|
+
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectEdge';
|
|
89744
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89745
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89746
|
+
id: Scalars['ID']['output'];
|
|
89747
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89748
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectUnion>;
|
|
89749
|
+
};
|
|
89750
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseConnection = HasPageInfo & {
|
|
89751
|
+
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseConnection';
|
|
89752
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseEdge>>>;
|
|
89753
|
+
pageInfo: PageInfo;
|
|
89754
|
+
};
|
|
89755
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseEdge = {
|
|
89756
|
+
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseEdge';
|
|
89757
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89758
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89759
|
+
id: Scalars['ID']['output'];
|
|
89760
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89761
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseUnion>;
|
|
89762
|
+
};
|
|
89763
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseUnion = JiraProject;
|
|
89764
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectUnion = TownsquareProject;
|
|
89233
89765
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksCompassComponentConnection = HasPageInfo & HasTotal & {
|
|
89234
89766
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksCompassComponentConnection';
|
|
89235
89767
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksCompassComponentEdge>>>;
|
|
@@ -92340,10 +92872,12 @@ export declare type GrowthUnifiedProfilePaidFeatureUsageResult = {
|
|
|
92340
92872
|
export declare enum GrowthUnifiedProfileProduct {
|
|
92341
92873
|
Compass = "compass",
|
|
92342
92874
|
Confluence = "confluence",
|
|
92875
|
+
Csm = "csm",
|
|
92343
92876
|
Jira = "jira",
|
|
92344
92877
|
Jpd = "jpd",
|
|
92345
92878
|
Jsm = "jsm",
|
|
92346
92879
|
Jwm = "jwm",
|
|
92880
|
+
Servco = "servco",
|
|
92347
92881
|
Trello = "trello"
|
|
92348
92882
|
}
|
|
92349
92883
|
export declare type GrowthUnifiedProfileProductDetails = {
|
|
@@ -96217,6 +96751,7 @@ export declare type JiraAiAgentSession = {
|
|
|
96217
96751
|
agent?: Maybe<User>;
|
|
96218
96752
|
conversationId: Scalars['ID']['output'];
|
|
96219
96753
|
convoAiSession?: Maybe<ConvoAiAgentSession>;
|
|
96754
|
+
sortKey?: Maybe<Scalars['String']['output']>;
|
|
96220
96755
|
};
|
|
96221
96756
|
export declare type JiraAiAgentSessionConnection = {
|
|
96222
96757
|
__typename?: 'JiraAiAgentSessionConnection';
|
|
@@ -96233,6 +96768,7 @@ export declare type JiraAiAgentSessionEnrichmentInput = {
|
|
|
96233
96768
|
agentIdentityAccountId: Scalars['String']['input'];
|
|
96234
96769
|
cloudId: Scalars['ID']['input'];
|
|
96235
96770
|
conversationId: Scalars['String']['input'];
|
|
96771
|
+
sortKey?: InputMaybe<Scalars['String']['input']>;
|
|
96236
96772
|
};
|
|
96237
96773
|
export declare type JiraAiEnablementIssueInput = {
|
|
96238
96774
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -97604,16 +98140,18 @@ export declare type JiraBacklogVersionData = {
|
|
|
97604
98140
|
canCreateVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
97605
98141
|
versionsPerProject?: Maybe<Array<Maybe<JiraBacklogProjectVersions>>>;
|
|
97606
98142
|
};
|
|
97607
|
-
export declare type JiraBacklogView = {
|
|
98143
|
+
export declare type JiraBacklogView = JiraView & Node & {
|
|
97608
98144
|
__typename?: 'JiraBacklogView';
|
|
97609
98145
|
assigneeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
97610
98146
|
cardDensity?: Maybe<JiraBacklogCardDensity>;
|
|
97611
98147
|
cardFields?: Maybe<JiraBacklogViewCardFieldConnection>;
|
|
97612
98148
|
cardGroupExpanded?: Maybe<Array<Scalars['String']['output']>>;
|
|
97613
98149
|
cardListCollapsed?: Maybe<Array<Scalars['String']['output']>>;
|
|
98150
|
+
cardLists?: Maybe<JiraBacklogViewCardListConnection>;
|
|
97614
98151
|
emptySprintsToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
97615
98152
|
epicFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
97616
98153
|
epicPanelToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
98154
|
+
error?: Maybe<QueryError>;
|
|
97617
98155
|
id: Scalars['ID']['output'];
|
|
97618
98156
|
issueTypeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
97619
98157
|
labelFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
@@ -97621,6 +98159,7 @@ export declare type JiraBacklogView = {
|
|
|
97621
98159
|
quickFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
97622
98160
|
searchText?: Maybe<Scalars['String']['output']>;
|
|
97623
98161
|
sprintCommitmentToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
98162
|
+
strategy?: Maybe<JiraBacklogViewStrategy>;
|
|
97624
98163
|
versionFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
97625
98164
|
versionPanelToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
97626
98165
|
};
|
|
@@ -97632,6 +98171,10 @@ export declare type JiraBacklogViewCardFieldsArgs = {
|
|
|
97632
98171
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97633
98172
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97634
98173
|
};
|
|
98174
|
+
export declare type JiraBacklogViewCardListsArgs = {
|
|
98175
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98176
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98177
|
+
};
|
|
97635
98178
|
export declare type JiraBacklogViewEpicFiltersArgs = {
|
|
97636
98179
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97637
98180
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -97672,12 +98215,48 @@ export declare type JiraBacklogViewCardFieldInput = {
|
|
|
97672
98215
|
enabled: Scalars['Boolean']['input'];
|
|
97673
98216
|
id: Scalars['ID']['input'];
|
|
97674
98217
|
};
|
|
98218
|
+
export declare type JiraBacklogViewCardList = {
|
|
98219
|
+
id: Scalars['ID']['output'];
|
|
98220
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
98221
|
+
};
|
|
98222
|
+
export declare type JiraBacklogViewCardListIssuesArgs = {
|
|
98223
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98224
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98225
|
+
};
|
|
98226
|
+
export declare type JiraBacklogViewCardListConnection = {
|
|
98227
|
+
__typename?: 'JiraBacklogViewCardListConnection';
|
|
98228
|
+
edges?: Maybe<Array<Maybe<JiraBacklogViewCardListEdge>>>;
|
|
98229
|
+
errors?: Maybe<Array<QueryError>>;
|
|
98230
|
+
pageInfo?: Maybe<PageInfo>;
|
|
98231
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
98232
|
+
};
|
|
98233
|
+
export declare type JiraBacklogViewCardListEdge = {
|
|
98234
|
+
__typename?: 'JiraBacklogViewCardListEdge';
|
|
98235
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
98236
|
+
node?: Maybe<JiraBacklogViewCardList>;
|
|
98237
|
+
};
|
|
97675
98238
|
export declare type JiraBacklogViewInput = {
|
|
97676
98239
|
jiraBacklogViewQueryInput: JiraBacklogViewQueryInput;
|
|
97677
98240
|
};
|
|
97678
98241
|
export declare type JiraBacklogViewQueryInput = {
|
|
97679
98242
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
97680
98243
|
};
|
|
98244
|
+
export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & {
|
|
98245
|
+
__typename?: 'JiraBacklogViewSprintCardList';
|
|
98246
|
+
id: Scalars['ID']['output'];
|
|
98247
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
98248
|
+
sprint?: Maybe<JiraSprint>;
|
|
98249
|
+
};
|
|
98250
|
+
export declare type JiraBacklogViewSprintCardListIssuesArgs = {
|
|
98251
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98252
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98253
|
+
};
|
|
98254
|
+
export declare enum JiraBacklogViewStrategy {
|
|
98255
|
+
IssueList = "ISSUE_LIST",
|
|
98256
|
+
KanbanBacklog = "KANBAN_BACKLOG",
|
|
98257
|
+
None = "NONE",
|
|
98258
|
+
Sprint = "SPRINT"
|
|
98259
|
+
}
|
|
97681
98260
|
export declare type JiraBacklogViewStringFilter = {
|
|
97682
98261
|
__typename?: 'JiraBacklogViewStringFilter';
|
|
97683
98262
|
id: Scalars['ID']['output'];
|
|
@@ -99351,7 +99930,8 @@ export declare enum JiraCollapsibleSection {
|
|
|
99351
99930
|
Attachments = "ATTACHMENTS",
|
|
99352
99931
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
99353
99932
|
Description = "DESCRIPTION",
|
|
99354
|
-
LinkedWorkItem = "LINKED_WORK_ITEM"
|
|
99933
|
+
LinkedWorkItem = "LINKED_WORK_ITEM",
|
|
99934
|
+
UnifiedWorkSection = "UNIFIED_WORK_SECTION"
|
|
99355
99935
|
}
|
|
99356
99936
|
export declare type JiraColor = {
|
|
99357
99937
|
__typename?: 'JiraColor';
|
|
@@ -104373,6 +104953,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
104373
104953
|
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
104374
104954
|
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
104375
104955
|
translations?: Maybe<Array<JiraFieldTranslation>>;
|
|
104956
|
+
translationsLanguagesAvailableToAdd?: Maybe<Array<Scalars['String']['output']>>;
|
|
104376
104957
|
trashedByUser?: Maybe<User>;
|
|
104377
104958
|
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
104378
104959
|
type: JiraConfigFieldType;
|
|
@@ -105986,6 +106567,16 @@ export declare type JiraJourneyItemConfigurationInput = {
|
|
|
105986
106567
|
statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
|
|
105987
106568
|
workItemConfiguration?: InputMaybe<JiraJourneyWorkItemConfigurationInput>;
|
|
105988
106569
|
};
|
|
106570
|
+
export declare type JiraJourneyItemCustomizationSettingsInput = {
|
|
106571
|
+
workItemCustomizationSettings?: InputMaybe<JiraJourneyWorkItemCustomizationSettingsInput>;
|
|
106572
|
+
};
|
|
106573
|
+
export declare type JiraJourneyItemUpdateCustomizationSettingsInput = {
|
|
106574
|
+
customizationSettings?: InputMaybe<JiraJourneyItemCustomizationSettingsInput>;
|
|
106575
|
+
etag: Scalars['String']['input'];
|
|
106576
|
+
journeyId: Scalars['ID']['input'];
|
|
106577
|
+
journeyItemId: Scalars['ID']['input'];
|
|
106578
|
+
journeyVersion: Scalars['Long']['input'];
|
|
106579
|
+
};
|
|
105989
106580
|
export declare enum JiraJourneyItemUpdatedChannel {
|
|
105990
106581
|
JourneyFrontend = "JOURNEY_FRONTEND",
|
|
105991
106582
|
Rovo = "ROVO"
|
|
@@ -106112,6 +106703,7 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
|
106112
106703
|
__typename?: 'JiraJourneyWorkItem';
|
|
106113
106704
|
associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
|
|
106114
106705
|
conditions?: Maybe<JiraJourneyItemConditions>;
|
|
106706
|
+
customizationSettings?: Maybe<JiraJourneyWorkItemCustomizationSettings>;
|
|
106115
106707
|
fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
|
|
106116
106708
|
id: Scalars['ID']['output'];
|
|
106117
106709
|
issueType?: Maybe<JiraIssueType>;
|
|
@@ -106131,6 +106723,13 @@ export declare type JiraJourneyWorkItemConfigurationInput = {
|
|
|
106131
106723
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
106132
106724
|
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
106133
106725
|
};
|
|
106726
|
+
export declare type JiraJourneyWorkItemCustomizationSettings = {
|
|
106727
|
+
__typename?: 'JiraJourneyWorkItemCustomizationSettings';
|
|
106728
|
+
isImmutable?: Maybe<Scalars['Boolean']['output']>;
|
|
106729
|
+
};
|
|
106730
|
+
export declare type JiraJourneyWorkItemCustomizationSettingsInput = {
|
|
106731
|
+
isImmutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106732
|
+
};
|
|
106134
106733
|
export declare type JiraJourneyWorkItemFieldValueKeyValuePair = {
|
|
106135
106734
|
__typename?: 'JiraJourneyWorkItemFieldValueKeyValuePair';
|
|
106136
106735
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -107664,6 +108263,7 @@ export declare type JiraMutation = {
|
|
|
107664
108263
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
107665
108264
|
updateJiraJourneyCustomizationSettings?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
107666
108265
|
updateJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
108266
|
+
updateJiraJourneyItemCustomizationSettings?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
107667
108267
|
updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
107668
108268
|
updateJiraJourneyParentIssueConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
107669
108269
|
updateJiraJourneyParentTriggerConditions?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -108301,6 +108901,10 @@ export declare type JiraMutationUpdateJiraJourneyItemArgs = {
|
|
|
108301
108901
|
cloudId: Scalars['ID']['input'];
|
|
108302
108902
|
input: JiraUpdateJourneyItemInput;
|
|
108303
108903
|
};
|
|
108904
|
+
export declare type JiraMutationUpdateJiraJourneyItemCustomizationSettingsArgs = {
|
|
108905
|
+
cloudId: Scalars['ID']['input'];
|
|
108906
|
+
input: JiraJourneyItemUpdateCustomizationSettingsInput;
|
|
108907
|
+
};
|
|
108304
108908
|
export declare type JiraMutationUpdateJiraJourneyNameArgs = {
|
|
108305
108909
|
cloudId: Scalars['ID']['input'];
|
|
108306
108910
|
input: JiraUpdateJourneyNameInput;
|
|
@@ -115202,6 +115806,15 @@ export declare type JiraSetTimelineHighlightedReleasesPayload = Payload & {
|
|
|
115202
115806
|
errors?: Maybe<Array<MutationError>>;
|
|
115203
115807
|
success: Scalars['Boolean']['output'];
|
|
115204
115808
|
};
|
|
115809
|
+
export declare type JiraSetTimelineViewHideWarningsInput = {
|
|
115810
|
+
hideWarnings: Scalars['Boolean']['input'];
|
|
115811
|
+
viewId: Scalars['ID']['input'];
|
|
115812
|
+
};
|
|
115813
|
+
export declare type JiraSetTimelineViewHideWarningsPayload = Payload & {
|
|
115814
|
+
__typename?: 'JiraSetTimelineViewHideWarningsPayload';
|
|
115815
|
+
errors?: Maybe<Array<MutationError>>;
|
|
115816
|
+
success: Scalars['Boolean']['output'];
|
|
115817
|
+
};
|
|
115205
115818
|
export declare type JiraSetTimelineViewRangeModeInput = {
|
|
115206
115819
|
rangeMode: JiraTimelineViewRangeMode;
|
|
115207
115820
|
viewId: Scalars['ID']['input'];
|
|
@@ -116653,6 +117266,7 @@ export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSear
|
|
|
116653
117266
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
116654
117267
|
id: Scalars['ID']['output'];
|
|
116655
117268
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
117269
|
+
isTimelineViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
116656
117270
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
116657
117271
|
issues?: Maybe<JiraIssueConnection>;
|
|
116658
117272
|
jql?: Maybe<Scalars['String']['output']>;
|
|
@@ -116679,6 +117293,9 @@ export declare type JiraTimelineViewFieldSetsArgs = {
|
|
|
116679
117293
|
export declare type JiraTimelineViewHasDefaultFieldSetsArgs = {
|
|
116680
117294
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
116681
117295
|
};
|
|
117296
|
+
export declare type JiraTimelineViewIsTimelineViewConfigModifiedArgs = {
|
|
117297
|
+
timelineViewSettings?: InputMaybe<JiraTimelineViewSettings>;
|
|
117298
|
+
};
|
|
116682
117299
|
export declare type JiraTimelineViewIsViewConfigModifiedArgs = {
|
|
116683
117300
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
116684
117301
|
};
|
|
@@ -119046,7 +119663,10 @@ export declare type JiraWorklogSortInput = {
|
|
|
119046
119663
|
};
|
|
119047
119664
|
export declare type JpdImportIdeasInput = {
|
|
119048
119665
|
csvContent?: InputMaybe<Scalars['String']['input']>;
|
|
119666
|
+
imageContent?: InputMaybe<Scalars['String']['input']>;
|
|
119667
|
+
imageMimeType?: InputMaybe<Scalars['String']['input']>;
|
|
119049
119668
|
jpdProjectId?: InputMaybe<Scalars['String']['input']>;
|
|
119669
|
+
pdfContent?: InputMaybe<Scalars['String']['input']>;
|
|
119050
119670
|
sourceLabel?: InputMaybe<Scalars['String']['input']>;
|
|
119051
119671
|
sourceType: JpdImportSourceType;
|
|
119052
119672
|
textContent?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -119064,6 +119684,8 @@ export declare type JpdImportMetadata = {
|
|
|
119064
119684
|
};
|
|
119065
119685
|
export declare enum JpdImportSourceType {
|
|
119066
119686
|
Csv = "CSV",
|
|
119687
|
+
Image = "IMAGE",
|
|
119688
|
+
Pdf = "PDF",
|
|
119067
119689
|
Text = "TEXT"
|
|
119068
119690
|
}
|
|
119069
119691
|
export declare type JpdInsightDeletedEvent = {
|
|
@@ -120658,10 +121280,30 @@ export declare type KitsuneChunkEdge = KitsuneEdge & {
|
|
|
120658
121280
|
cursor: Scalars['String']['output'];
|
|
120659
121281
|
node?: Maybe<KitsuneChunk>;
|
|
120660
121282
|
};
|
|
121283
|
+
export declare enum KitsuneComparisonOperator {
|
|
121284
|
+
Contains = "CONTAINS",
|
|
121285
|
+
DoesNotContain = "DOES_NOT_CONTAIN",
|
|
121286
|
+
Is = "IS",
|
|
121287
|
+
IsBetween = "IS_BETWEEN",
|
|
121288
|
+
IsEmpty = "IS_EMPTY",
|
|
121289
|
+
IsFalse = "IS_FALSE",
|
|
121290
|
+
IsGreaterThan = "IS_GREATER_THAN",
|
|
121291
|
+
IsGreaterThanOrEqualTo = "IS_GREATER_THAN_OR_EQUAL_TO",
|
|
121292
|
+
IsLowerThan = "IS_LOWER_THAN",
|
|
121293
|
+
IsLowerThanOrEqualTo = "IS_LOWER_THAN_OR_EQUAL_TO",
|
|
121294
|
+
IsNot = "IS_NOT",
|
|
121295
|
+
IsNotEmpty = "IS_NOT_EMPTY",
|
|
121296
|
+
IsTrue = "IS_TRUE"
|
|
121297
|
+
}
|
|
120661
121298
|
export declare type KitsuneConnection = {
|
|
120662
121299
|
edges: Array<KitsuneEdge>;
|
|
120663
121300
|
pageInfo: PageInfo;
|
|
120664
121301
|
};
|
|
121302
|
+
export declare type KitsuneDateValue = {
|
|
121303
|
+
__typename?: 'KitsuneDateValue';
|
|
121304
|
+
_id: Scalars['ID']['output'];
|
|
121305
|
+
value: Scalars['Date']['output'];
|
|
121306
|
+
};
|
|
120665
121307
|
export declare type KitsuneEdge = {
|
|
120666
121308
|
cursor: Scalars['String']['output'];
|
|
120667
121309
|
};
|
|
@@ -120731,9 +121373,43 @@ export declare enum KitsuneFieldType {
|
|
|
120731
121373
|
Reporter = "REPORTER",
|
|
120732
121374
|
SourceCategory = "SOURCE_CATEGORY"
|
|
120733
121375
|
}
|
|
121376
|
+
export declare type KitsuneFieldValue = {
|
|
121377
|
+
__typename?: 'KitsuneFieldValue';
|
|
121378
|
+
_id: Scalars['ID']['output'];
|
|
121379
|
+
};
|
|
121380
|
+
export declare type KitsuneFilter = {
|
|
121381
|
+
__typename?: 'KitsuneFilter';
|
|
121382
|
+
comparisonOperator: KitsuneComparisonOperator;
|
|
121383
|
+
field: KitsuneField;
|
|
121384
|
+
logicalOperator: KitsuneLogicalOperator;
|
|
121385
|
+
values: Array<KitsuneFilterValue>;
|
|
121386
|
+
};
|
|
121387
|
+
export declare type KitsuneFilterInput = {
|
|
121388
|
+
comparisonOperator: KitsuneComparisonOperator;
|
|
121389
|
+
fieldId: Scalars['ID']['input'];
|
|
121390
|
+
logicalOperator: KitsuneLogicalOperator;
|
|
121391
|
+
values: KitsuneFilterValueInput;
|
|
121392
|
+
};
|
|
121393
|
+
export declare type KitsuneFilterValue = KitsuneDateValue | KitsuneFieldValue | KitsuneNumberValue | KitsuneSourceCategory | KitsuneTextValue;
|
|
121394
|
+
export declare type KitsuneFilterValueInput = {
|
|
121395
|
+
sourceCategoryId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
121396
|
+
valueDate?: InputMaybe<Array<Scalars['Date']['input']>>;
|
|
121397
|
+
valueId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
121398
|
+
valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
121399
|
+
valueText?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
121400
|
+
};
|
|
121401
|
+
export declare enum KitsuneLogicalOperator {
|
|
121402
|
+
And = "AND",
|
|
121403
|
+
Or = "OR"
|
|
121404
|
+
}
|
|
120734
121405
|
export declare type KitsuneNode = {
|
|
120735
121406
|
_id: Scalars['ID']['output'];
|
|
120736
121407
|
};
|
|
121408
|
+
export declare type KitsuneNumberValue = {
|
|
121409
|
+
__typename?: 'KitsuneNumberValue';
|
|
121410
|
+
_id: Scalars['ID']['output'];
|
|
121411
|
+
value: Scalars['Float']['output'];
|
|
121412
|
+
};
|
|
120737
121413
|
export declare type KitsunePaginationInput = {
|
|
120738
121414
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
120739
121415
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -120748,6 +121424,25 @@ export declare type KitsuneSection = Node & {
|
|
|
120748
121424
|
name: Scalars['String']['output'];
|
|
120749
121425
|
updatedAt: Scalars['DateTime']['output'];
|
|
120750
121426
|
};
|
|
121427
|
+
export declare type KitsuneSourceCategory = {
|
|
121428
|
+
__typename?: 'KitsuneSourceCategory';
|
|
121429
|
+
_id: Scalars['ID']['output'];
|
|
121430
|
+
type: KitsuneSourceCategoryType;
|
|
121431
|
+
};
|
|
121432
|
+
export declare type KitsuneSourceCategoryConnection = KitsuneConnection & {
|
|
121433
|
+
__typename?: 'KitsuneSourceCategoryConnection';
|
|
121434
|
+
edges: Array<KitsuneSourceCategoryEdge>;
|
|
121435
|
+
pageInfo: PageInfo;
|
|
121436
|
+
};
|
|
121437
|
+
export declare type KitsuneSourceCategoryEdge = KitsuneEdge & {
|
|
121438
|
+
__typename?: 'KitsuneSourceCategoryEdge';
|
|
121439
|
+
cursor: Scalars['String']['output'];
|
|
121440
|
+
node?: Maybe<KitsuneSourceCategory>;
|
|
121441
|
+
};
|
|
121442
|
+
export declare enum KitsuneSourceCategoryType {
|
|
121443
|
+
FeedbackApp = "FEEDBACK_APP",
|
|
121444
|
+
Loom = "LOOM"
|
|
121445
|
+
}
|
|
120751
121446
|
export declare type KitsuneSourceInput = {
|
|
120752
121447
|
sourceWeb?: InputMaybe<KitsuneSourceInputWeb>;
|
|
120753
121448
|
};
|
|
@@ -120760,6 +121455,7 @@ export declare type KitsuneSpace = Node & {
|
|
|
120760
121455
|
fields: KitsuneFieldConnection;
|
|
120761
121456
|
id: Scalars['ID']['output'];
|
|
120762
121457
|
name?: Maybe<Scalars['String']['output']>;
|
|
121458
|
+
sourceCategories: KitsuneSourceCategoryConnection;
|
|
120763
121459
|
};
|
|
120764
121460
|
export declare type KitsuneSpaceFeedbacksArgs = {
|
|
120765
121461
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
@@ -120767,6 +121463,9 @@ export declare type KitsuneSpaceFeedbacksArgs = {
|
|
|
120767
121463
|
export declare type KitsuneSpaceFieldsArgs = {
|
|
120768
121464
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
120769
121465
|
};
|
|
121466
|
+
export declare type KitsuneSpaceSourceCategoriesArgs = {
|
|
121467
|
+
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
121468
|
+
};
|
|
120770
121469
|
export declare type KitsuneSpaceConnection = KitsuneConnection & {
|
|
120771
121470
|
__typename?: 'KitsuneSpaceConnection';
|
|
120772
121471
|
edges: Array<KitsuneSpaceEdge>;
|
|
@@ -120777,17 +121476,29 @@ export declare type KitsuneSpaceEdge = KitsuneEdge & {
|
|
|
120777
121476
|
cursor: Scalars['String']['output'];
|
|
120778
121477
|
node?: Maybe<KitsuneSpace>;
|
|
120779
121478
|
};
|
|
121479
|
+
export declare type KitsuneTextValue = {
|
|
121480
|
+
__typename?: 'KitsuneTextValue';
|
|
121481
|
+
_id: Scalars['ID']['output'];
|
|
121482
|
+
value: Scalars['String']['output'];
|
|
121483
|
+
};
|
|
120780
121484
|
export declare type KitsuneView = Node & {
|
|
120781
121485
|
__typename?: 'KitsuneView';
|
|
121486
|
+
config?: Maybe<KitsuneViewConfig>;
|
|
120782
121487
|
description?: Maybe<Scalars['String']['output']>;
|
|
120783
121488
|
id: Scalars['ID']['output'];
|
|
120784
121489
|
name?: Maybe<Scalars['String']['output']>;
|
|
120785
121490
|
};
|
|
120786
|
-
export declare type KitsuneViewConfig =
|
|
121491
|
+
export declare type KitsuneViewConfig = {
|
|
120787
121492
|
__typename?: 'KitsuneViewConfig';
|
|
120788
|
-
|
|
121493
|
+
filters: Array<KitsuneFilter>;
|
|
121494
|
+
logicalOperator: KitsuneLogicalOperator;
|
|
121495
|
+
query: Scalars['String']['output'];
|
|
120789
121496
|
status: KitsuneViewConfigStatus;
|
|
120790
121497
|
};
|
|
121498
|
+
export declare type KitsuneViewConfigInput = {
|
|
121499
|
+
filters: Array<KitsuneFilterInput>;
|
|
121500
|
+
logicalOperator: KitsuneLogicalOperator;
|
|
121501
|
+
};
|
|
120791
121502
|
export declare enum KitsuneViewConfigStatus {
|
|
120792
121503
|
Draft = "DRAFT",
|
|
120793
121504
|
Published = "PUBLISHED",
|
|
@@ -120856,6 +121567,7 @@ export declare type KnowledgeBaseArticleMetadata = {
|
|
|
120856
121567
|
__typename?: 'KnowledgeBaseArticleMetadata';
|
|
120857
121568
|
categoryDetails?: Maybe<Array<KnowledgeBaseCategoryDetail>>;
|
|
120858
121569
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
121570
|
+
viewCount?: Maybe<Scalars['Int']['output']>;
|
|
120859
121571
|
};
|
|
120860
121572
|
export declare type KnowledgeBaseArticleSearchInput = {
|
|
120861
121573
|
articleContainers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -123464,10 +124176,16 @@ export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
|
123464
124176
|
};
|
|
123465
124177
|
export declare type MarketplaceConsoleCreateAppSoftwareVersionError = MarketplaceConsoleError & {
|
|
123466
124178
|
__typename?: 'MarketplaceConsoleCreateAppSoftwareVersionError';
|
|
124179
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
124180
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
124181
|
+
genericMessage?: Maybe<Scalars['String']['output']>;
|
|
123467
124182
|
id: Scalars['ID']['output'];
|
|
123468
124183
|
message: Scalars['String']['output'];
|
|
123469
124184
|
path?: Maybe<Scalars['String']['output']>;
|
|
124185
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
123470
124186
|
subCode?: Maybe<Scalars['String']['output']>;
|
|
124187
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
124188
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
123471
124189
|
versionType?: Maybe<MarketplaceConsoleVersionType>;
|
|
123472
124190
|
};
|
|
123473
124191
|
export declare type MarketplaceConsoleCreateAppSoftwareVersionKnownError = {
|
|
@@ -123495,6 +124213,7 @@ export declare type MarketplaceConsoleCreatePrivateAppMutationOutput = Marketpla
|
|
|
123495
124213
|
export declare type MarketplaceConsoleCreatePrivateAppMutationResponse = {
|
|
123496
124214
|
__typename?: 'MarketplaceConsoleCreatePrivateAppMutationResponse';
|
|
123497
124215
|
appId: Scalars['String']['output'];
|
|
124216
|
+
buildNumber: Scalars['Int']['output'];
|
|
123498
124217
|
success: Scalars['Boolean']['output'];
|
|
123499
124218
|
};
|
|
123500
124219
|
export declare type MarketplaceConsoleCreatePrivateAppVersionError = MarketplaceConsoleError & {
|
|
@@ -124552,18 +125271,24 @@ export declare enum MarketplaceConsoleProductListingCurrentTaskStatus {
|
|
|
124552
125271
|
Success = "SUCCESS"
|
|
124553
125272
|
}
|
|
124554
125273
|
export declare enum MarketplaceConsoleProductListingReleaseAppListingStatus {
|
|
125274
|
+
Archived = "ARCHIVED",
|
|
125275
|
+
Notassigned = "NOTASSIGNED",
|
|
124555
125276
|
Private = "PRIVATE",
|
|
124556
125277
|
Public = "PUBLIC",
|
|
125278
|
+
Readytolaunch = "READYTOLAUNCH",
|
|
124557
125279
|
Rejected = "REJECTED",
|
|
124558
125280
|
Submitted = "SUBMITTED"
|
|
124559
125281
|
}
|
|
124560
125282
|
export declare enum MarketplaceConsoleProductListingReleaseCurrentStatus {
|
|
124561
|
-
Approved = "APPROVED",
|
|
124562
125283
|
Failed = "FAILED",
|
|
124563
|
-
Pending = "PENDING",
|
|
124564
125284
|
Processing = "PROCESSING",
|
|
124565
|
-
|
|
125285
|
+
Success = "SUCCESS"
|
|
124566
125286
|
}
|
|
125287
|
+
export declare type MarketplaceConsoleProductListingReleaseStatusDetail = {
|
|
125288
|
+
__typename?: 'MarketplaceConsoleProductListingReleaseStatusDetail';
|
|
125289
|
+
currentProductListingStatus: MarketplaceConsoleProductListingReleaseAppListingStatus;
|
|
125290
|
+
productListingStatusInProcess?: Maybe<MarketplaceConsoleProductListingReleaseAppListingStatus>;
|
|
125291
|
+
};
|
|
124567
125292
|
export declare type MarketplaceConsoleProductListingReleaseStatusError = MarketplaceConsoleError & {
|
|
124568
125293
|
__typename?: 'MarketplaceConsoleProductListingReleaseStatusError';
|
|
124569
125294
|
code: Scalars['String']['output'];
|
|
@@ -124573,10 +125298,9 @@ export declare type MarketplaceConsoleProductListingReleaseStatusError = Marketp
|
|
|
124573
125298
|
export declare type MarketplaceConsoleProductListingReleaseStatusResponse = MarketplaceConsoleProductListingReleaseStatusError | MarketplaceConsoleProductListingReleaseStatusSuccess;
|
|
124574
125299
|
export declare type MarketplaceConsoleProductListingReleaseStatusSuccess = {
|
|
124575
125300
|
__typename?: 'MarketplaceConsoleProductListingReleaseStatusSuccess';
|
|
124576
|
-
appListingStatusInProcess?: Maybe<MarketplaceConsoleProductListingReleaseAppListingStatus>;
|
|
124577
|
-
currentAppListingStatus: MarketplaceConsoleProductListingReleaseAppListingStatus;
|
|
124578
125301
|
currentStatus: MarketplaceConsoleProductListingReleaseCurrentStatus;
|
|
124579
125302
|
failureReason?: Maybe<Scalars['String']['output']>;
|
|
125303
|
+
productListing: MarketplaceConsoleProductListingReleaseStatusDetail;
|
|
124580
125304
|
};
|
|
124581
125305
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
124582
125306
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
@@ -126330,6 +127054,7 @@ export declare type MercuryArchiveFocusAreaChange = MercuryChangeInterface & Nod
|
|
|
126330
127054
|
createdBy?: Maybe<User>;
|
|
126331
127055
|
createdDate: Scalars['DateTime']['output'];
|
|
126332
127056
|
id: Scalars['ID']['output'];
|
|
127057
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
126333
127058
|
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
126334
127059
|
updatedBy?: Maybe<User>;
|
|
126335
127060
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -126395,6 +127120,7 @@ export declare type MercuryChangeInterface = {
|
|
|
126395
127120
|
createdBy?: Maybe<User>;
|
|
126396
127121
|
createdDate: Scalars['DateTime']['output'];
|
|
126397
127122
|
id: Scalars['ID']['output'];
|
|
127123
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
126398
127124
|
updatedBy?: Maybe<User>;
|
|
126399
127125
|
updatedDate: Scalars['DateTime']['output'];
|
|
126400
127126
|
};
|
|
@@ -126406,6 +127132,7 @@ export declare type MercuryChangeParentFocusAreaChange = MercuryChangeInterface
|
|
|
126406
127132
|
createdDate: Scalars['DateTime']['output'];
|
|
126407
127133
|
focusAreaId?: Maybe<MercuryFocusArea>;
|
|
126408
127134
|
id: Scalars['ID']['output'];
|
|
127135
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
126409
127136
|
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
126410
127137
|
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
126411
127138
|
updatedBy?: Maybe<User>;
|
|
@@ -126682,14 +127409,12 @@ export declare type MercuryCommentEdge = {
|
|
|
126682
127409
|
};
|
|
126683
127410
|
export declare type MercuryCostSubtype = Node & {
|
|
126684
127411
|
__typename?: 'MercuryCostSubtype';
|
|
126685
|
-
costType
|
|
127412
|
+
costType?: Maybe<MercuryCostType>;
|
|
126686
127413
|
createdBy?: Maybe<User>;
|
|
126687
127414
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
126688
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
126689
127415
|
id: Scalars['ID']['output'];
|
|
126690
|
-
isDeletable?: Maybe<Scalars['Boolean']['output']>;
|
|
126691
|
-
key: Scalars['String']['output'];
|
|
126692
127416
|
name: Scalars['String']['output'];
|
|
127417
|
+
references?: Maybe<MercuryCostSubtypeReferences>;
|
|
126693
127418
|
updatedBy?: Maybe<User>;
|
|
126694
127419
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
126695
127420
|
};
|
|
@@ -126704,18 +127429,24 @@ export declare type MercuryCostSubtypeEdge = {
|
|
|
126704
127429
|
cursor: Scalars['String']['output'];
|
|
126705
127430
|
node?: Maybe<MercuryCostSubtype>;
|
|
126706
127431
|
};
|
|
127432
|
+
export declare type MercuryCostSubtypeReferences = {
|
|
127433
|
+
__typename?: 'MercuryCostSubtypeReferences';
|
|
127434
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
127435
|
+
};
|
|
126707
127436
|
export declare type MercuryCostSubtypeSort = {
|
|
126708
127437
|
field: MercuryCostSubtypeSortField;
|
|
126709
127438
|
order: SortOrder;
|
|
126710
127439
|
};
|
|
126711
127440
|
export declare enum MercuryCostSubtypeSortField {
|
|
126712
|
-
Key = "KEY",
|
|
126713
127441
|
Name = "NAME"
|
|
126714
127442
|
}
|
|
126715
|
-
export declare
|
|
126716
|
-
|
|
126717
|
-
|
|
126718
|
-
|
|
127443
|
+
export declare type MercuryCostType = {
|
|
127444
|
+
__typename?: 'MercuryCostType';
|
|
127445
|
+
displayName: Scalars['String']['output'];
|
|
127446
|
+
id: Scalars['ID']['output'];
|
|
127447
|
+
key: Scalars['String']['output'];
|
|
127448
|
+
order: Scalars['Int']['output'];
|
|
127449
|
+
};
|
|
126719
127450
|
export declare type MercuryCreateBaseCustomFieldDefinitionInput = {
|
|
126720
127451
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
126721
127452
|
name: Scalars['String']['input'];
|
|
@@ -126783,9 +127514,7 @@ export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
|
126783
127514
|
};
|
|
126784
127515
|
export declare type MercuryCreateCostSubtypeInput = {
|
|
126785
127516
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
126786
|
-
|
|
126787
|
-
description: Scalars['String']['input'];
|
|
126788
|
-
key: Scalars['String']['input'];
|
|
127517
|
+
costTypeId: Scalars['ID']['input'];
|
|
126789
127518
|
name: Scalars['String']['input'];
|
|
126790
127519
|
};
|
|
126791
127520
|
export declare type MercuryCreateCostSubtypePayload = Payload & {
|
|
@@ -126823,6 +127552,7 @@ export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node
|
|
|
126823
127552
|
focusAreaOwner?: Maybe<User>;
|
|
126824
127553
|
focusAreaType?: Maybe<Scalars['ID']['output']>;
|
|
126825
127554
|
id: Scalars['ID']['output'];
|
|
127555
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
126826
127556
|
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
126827
127557
|
updatedBy?: Maybe<User>;
|
|
126828
127558
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -126875,9 +127605,7 @@ export declare type MercuryCreateFocusAreaStatusUpdatePayload = Payload & {
|
|
|
126875
127605
|
success: Scalars['Boolean']['output'];
|
|
126876
127606
|
};
|
|
126877
127607
|
export declare type MercuryCreateInvestmentCategoryInput = {
|
|
126878
|
-
|
|
126879
|
-
investmentCategorySetId: Scalars['ID']['input'];
|
|
126880
|
-
key: Scalars['String']['input'];
|
|
127608
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
126881
127609
|
name: Scalars['String']['input'];
|
|
126882
127610
|
};
|
|
126883
127611
|
export declare type MercuryCreateInvestmentCategoryPayload = Payload & {
|
|
@@ -126886,16 +127614,6 @@ export declare type MercuryCreateInvestmentCategoryPayload = Payload & {
|
|
|
126886
127614
|
errors?: Maybe<Array<MutationError>>;
|
|
126887
127615
|
success: Scalars['Boolean']['output'];
|
|
126888
127616
|
};
|
|
126889
|
-
export declare type MercuryCreateInvestmentCategorySetInput = {
|
|
126890
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
126891
|
-
name: Scalars['String']['input'];
|
|
126892
|
-
};
|
|
126893
|
-
export declare type MercuryCreateInvestmentCategorySetPayload = Payload & {
|
|
126894
|
-
__typename?: 'MercuryCreateInvestmentCategorySetPayload';
|
|
126895
|
-
createdInvestmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
|
|
126896
|
-
errors?: Maybe<Array<MutationError>>;
|
|
126897
|
-
success: Scalars['Boolean']['output'];
|
|
126898
|
-
};
|
|
126899
127617
|
export declare type MercuryCreateMultiSelectCustomFieldDefinitionInput = {
|
|
126900
127618
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
126901
127619
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
@@ -127208,14 +127926,6 @@ export declare type MercuryDeleteInvestmentCategoryPayload = Payload & {
|
|
|
127208
127926
|
errors?: Maybe<Array<MutationError>>;
|
|
127209
127927
|
success: Scalars['Boolean']['output'];
|
|
127210
127928
|
};
|
|
127211
|
-
export declare type MercuryDeleteInvestmentCategorySetInput = {
|
|
127212
|
-
id: Scalars['ID']['input'];
|
|
127213
|
-
};
|
|
127214
|
-
export declare type MercuryDeleteInvestmentCategorySetPayload = Payload & {
|
|
127215
|
-
__typename?: 'MercuryDeleteInvestmentCategorySetPayload';
|
|
127216
|
-
errors?: Maybe<Array<MutationError>>;
|
|
127217
|
-
success: Scalars['Boolean']['output'];
|
|
127218
|
-
};
|
|
127219
127929
|
export declare type MercuryDeletePortfolioFocusAreaLinkInput = {
|
|
127220
127930
|
cloudId: Scalars['ID']['input'];
|
|
127221
127931
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -127500,6 +128210,7 @@ export declare enum MercuryFocusAreaHealthColor {
|
|
|
127500
128210
|
}
|
|
127501
128211
|
export declare type MercuryFocusAreaHierarchy = Node & {
|
|
127502
128212
|
__typename?: 'MercuryFocusAreaHierarchy';
|
|
128213
|
+
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
127503
128214
|
hierarchyTypeKey?: Maybe<MercuryFocusAreaHierarchyTypeKey>;
|
|
127504
128215
|
id: Scalars['ID']['output'];
|
|
127505
128216
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -127587,7 +128298,10 @@ export declare type MercuryFocusAreaLinks = {
|
|
|
127587
128298
|
};
|
|
127588
128299
|
export declare type MercuryFocusAreaNode = {
|
|
127589
128300
|
__typename?: 'MercuryFocusAreaNode';
|
|
128301
|
+
childCount?: Maybe<Scalars['Int']['output']>;
|
|
128302
|
+
depth?: Maybe<Scalars['Int']['output']>;
|
|
127590
128303
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
128304
|
+
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
127591
128305
|
id: Scalars['ID']['output'];
|
|
127592
128306
|
};
|
|
127593
128307
|
export declare enum MercuryFocusAreaPermission {
|
|
@@ -127717,8 +128431,14 @@ export declare type MercuryFocusAreaStatusUpdateEdge = {
|
|
|
127717
128431
|
export declare type MercuryFocusAreaSummary = {
|
|
127718
128432
|
__typename?: 'MercuryFocusAreaSummary';
|
|
127719
128433
|
id: Scalars['ID']['output'];
|
|
128434
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
127720
128435
|
summary?: Maybe<Scalars['String']['output']>;
|
|
127721
128436
|
};
|
|
128437
|
+
export declare enum MercuryFocusAreaSummaryType {
|
|
128438
|
+
FocusArea = "FOCUS_AREA",
|
|
128439
|
+
Goals = "GOALS",
|
|
128440
|
+
Work = "WORK"
|
|
128441
|
+
}
|
|
127722
128442
|
export declare type MercuryFocusAreaTargetDateInput = {
|
|
127723
128443
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
127724
128444
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
@@ -127726,6 +128446,7 @@ export declare type MercuryFocusAreaTargetDateInput = {
|
|
|
127726
128446
|
export declare type MercuryFocusAreaType = {
|
|
127727
128447
|
__typename?: 'MercuryFocusAreaType';
|
|
127728
128448
|
ari: Scalars['String']['output'];
|
|
128449
|
+
focusAreaHierarchy?: Maybe<MercuryFocusAreaHierarchy>;
|
|
127729
128450
|
hierarchyLevel: Scalars['Int']['output'];
|
|
127730
128451
|
id: Scalars['ID']['output'];
|
|
127731
128452
|
name: Scalars['String']['output'];
|
|
@@ -127762,7 +128483,12 @@ export declare type MercuryFocusAreaWorkContext = {
|
|
|
127762
128483
|
__typename?: 'MercuryFocusAreaWorkContext';
|
|
127763
128484
|
focusAreaLinkedWorkContext?: Maybe<Array<Maybe<MercuryFocusAreaLinkedWorkContextData>>>;
|
|
127764
128485
|
};
|
|
128486
|
+
export declare enum MercuryForYouInsightType {
|
|
128487
|
+
Own = "OWN",
|
|
128488
|
+
Watch = "WATCH"
|
|
128489
|
+
}
|
|
127765
128490
|
export declare type MercuryForYouInsightsFilter = {
|
|
128491
|
+
forYouInsightType?: InputMaybe<MercuryForYouInsightType>;
|
|
127766
128492
|
insightType?: InputMaybe<MercuryInsightTypeEnum>;
|
|
127767
128493
|
};
|
|
127768
128494
|
export declare type MercuryFundChangeSummary = {
|
|
@@ -127811,7 +128537,6 @@ export declare type MercuryFundsMonthlySummary = {
|
|
|
127811
128537
|
fiscalYear?: Maybe<Scalars['Int']['output']>;
|
|
127812
128538
|
forecastAmountSummary?: Maybe<MercuryFundsAmountSummary>;
|
|
127813
128539
|
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
127814
|
-
investmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
|
|
127815
128540
|
monthStartDate?: Maybe<Scalars['String']['output']>;
|
|
127816
128541
|
};
|
|
127817
128542
|
export declare type MercuryFundsMutationApi = {
|
|
@@ -127819,17 +128544,10 @@ export declare type MercuryFundsMutationApi = {
|
|
|
127819
128544
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
127820
128545
|
createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
|
|
127821
128546
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
127822
|
-
createInvestmentCategorySet?: Maybe<MercuryCreateInvestmentCategorySetPayload>;
|
|
127823
128547
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
127824
128548
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
127825
|
-
deleteInvestmentCategorySet?: Maybe<MercuryDeleteInvestmentCategorySetPayload>;
|
|
127826
|
-
updateCostSubtypeDescription?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
127827
|
-
updateCostSubtypeKey?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
127828
128549
|
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
127829
|
-
updateInvestmentCategoryDescription?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
127830
|
-
updateInvestmentCategoryKey?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
127831
128550
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
127832
|
-
updateInvestmentCategorySetName?: Maybe<MercuryUpdateInvestmentCategorySetPayload>;
|
|
127833
128551
|
};
|
|
127834
128552
|
export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
127835
128553
|
input: MercuryCreateCostSubtypeInput;
|
|
@@ -127840,39 +128558,18 @@ export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs
|
|
|
127840
128558
|
export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
|
|
127841
128559
|
input: MercuryCreateInvestmentCategoryInput;
|
|
127842
128560
|
};
|
|
127843
|
-
export declare type MercuryFundsMutationApiCreateInvestmentCategorySetArgs = {
|
|
127844
|
-
input: MercuryCreateInvestmentCategorySetInput;
|
|
127845
|
-
};
|
|
127846
128561
|
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
127847
128562
|
input: MercuryDeleteCostSubtypeInput;
|
|
127848
128563
|
};
|
|
127849
128564
|
export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
127850
128565
|
input: MercuryDeleteInvestmentCategoryInput;
|
|
127851
128566
|
};
|
|
127852
|
-
export declare type MercuryFundsMutationApiDeleteInvestmentCategorySetArgs = {
|
|
127853
|
-
input: MercuryDeleteInvestmentCategorySetInput;
|
|
127854
|
-
};
|
|
127855
|
-
export declare type MercuryFundsMutationApiUpdateCostSubtypeDescriptionArgs = {
|
|
127856
|
-
input: MercuryUpdateCostSubtypeDescriptionInput;
|
|
127857
|
-
};
|
|
127858
|
-
export declare type MercuryFundsMutationApiUpdateCostSubtypeKeyArgs = {
|
|
127859
|
-
input: MercuryUpdateCostSubtypeKeyInput;
|
|
127860
|
-
};
|
|
127861
128567
|
export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
|
|
127862
128568
|
input: MercuryUpdateCostSubtypeNameInput;
|
|
127863
128569
|
};
|
|
127864
|
-
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryDescriptionArgs = {
|
|
127865
|
-
input: MercuryUpdateInvestmentCategoryDescriptionInput;
|
|
127866
|
-
};
|
|
127867
|
-
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryKeyArgs = {
|
|
127868
|
-
input: MercuryUpdateInvestmentCategoryKeyInput;
|
|
127869
|
-
};
|
|
127870
128570
|
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
127871
128571
|
input: MercuryUpdateInvestmentCategoryNameInput;
|
|
127872
128572
|
};
|
|
127873
|
-
export declare type MercuryFundsMutationApiUpdateInvestmentCategorySetNameArgs = {
|
|
127874
|
-
input: MercuryUpdateInvestmentCategorySetNameInput;
|
|
127875
|
-
};
|
|
127876
128573
|
export declare type MercuryFundsQueryApi = {
|
|
127877
128574
|
__typename?: 'MercuryFundsQueryApi';
|
|
127878
128575
|
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
@@ -127884,8 +128581,6 @@ export declare type MercuryFundsQueryApi = {
|
|
|
127884
128581
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
127885
128582
|
focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
|
|
127886
128583
|
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
127887
|
-
investmentCategorySets?: Maybe<Array<Maybe<MercuryInvestmentCategorySet>>>;
|
|
127888
|
-
investmentCategorySetsSearch?: Maybe<MercuryInvestmentCategorySetConnection>;
|
|
127889
128584
|
};
|
|
127890
128585
|
export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
|
|
127891
128586
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -127916,7 +128611,7 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs =
|
|
|
127916
128611
|
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
127917
128612
|
};
|
|
127918
128613
|
export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
127919
|
-
|
|
128614
|
+
costTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
127920
128615
|
endDateExclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
127921
128616
|
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
127922
128617
|
startDateInclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -127924,15 +128619,6 @@ export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
|
127924
128619
|
export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
|
|
127925
128620
|
ids: Array<Scalars['ID']['input']>;
|
|
127926
128621
|
};
|
|
127927
|
-
export declare type MercuryFundsQueryApiInvestmentCategorySetsArgs = {
|
|
127928
|
-
ids: Array<Scalars['ID']['input']>;
|
|
127929
|
-
};
|
|
127930
|
-
export declare type MercuryFundsQueryApiInvestmentCategorySetsSearchArgs = {
|
|
127931
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
127932
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
127933
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127934
|
-
sort?: InputMaybe<Array<InputMaybe<MercuryInvestmentCategorySetSort>>>;
|
|
127935
|
-
};
|
|
127936
128622
|
export declare enum MercuryFundsType {
|
|
127937
128623
|
Actual = "ACTUAL",
|
|
127938
128624
|
Budget = "BUDGET",
|
|
@@ -128041,43 +128727,16 @@ export declare type MercuryInvestmentCategory = Node & {
|
|
|
128041
128727
|
__typename?: 'MercuryInvestmentCategory';
|
|
128042
128728
|
createdBy?: Maybe<User>;
|
|
128043
128729
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
128044
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
128045
128730
|
id: Scalars['ID']['output'];
|
|
128046
|
-
investmentCategorySetId: Scalars['ID']['output'];
|
|
128047
|
-
isDeletable?: Maybe<Scalars['Boolean']['output']>;
|
|
128048
|
-
key: Scalars['String']['output'];
|
|
128049
128731
|
name: Scalars['String']['output'];
|
|
128732
|
+
references?: Maybe<MercuryInvestmentCategoryReferences>;
|
|
128050
128733
|
updatedBy?: Maybe<User>;
|
|
128051
128734
|
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
128052
128735
|
};
|
|
128053
|
-
export declare type
|
|
128054
|
-
__typename?: '
|
|
128055
|
-
|
|
128056
|
-
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
128057
|
-
id: Scalars['ID']['output'];
|
|
128058
|
-
investmentCategories?: Maybe<Array<MercuryInvestmentCategory>>;
|
|
128059
|
-
name: Scalars['String']['output'];
|
|
128060
|
-
updatedBy?: Maybe<User>;
|
|
128061
|
-
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
128062
|
-
};
|
|
128063
|
-
export declare type MercuryInvestmentCategorySetConnection = {
|
|
128064
|
-
__typename?: 'MercuryInvestmentCategorySetConnection';
|
|
128065
|
-
edges?: Maybe<Array<MercuryInvestmentCategorySetEdge>>;
|
|
128066
|
-
pageInfo: PageInfo;
|
|
128067
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
128068
|
-
};
|
|
128069
|
-
export declare type MercuryInvestmentCategorySetEdge = {
|
|
128070
|
-
__typename?: 'MercuryInvestmentCategorySetEdge';
|
|
128071
|
-
cursor: Scalars['String']['output'];
|
|
128072
|
-
node?: Maybe<MercuryInvestmentCategorySet>;
|
|
128073
|
-
};
|
|
128074
|
-
export declare type MercuryInvestmentCategorySetSort = {
|
|
128075
|
-
field: MercuryInvestmentCategorySetSortField;
|
|
128076
|
-
order: SortOrder;
|
|
128736
|
+
export declare type MercuryInvestmentCategoryReferences = {
|
|
128737
|
+
__typename?: 'MercuryInvestmentCategoryReferences';
|
|
128738
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
128077
128739
|
};
|
|
128078
|
-
export declare enum MercuryInvestmentCategorySetSortField {
|
|
128079
|
-
Name = "NAME"
|
|
128080
|
-
}
|
|
128081
128740
|
export declare type MercuryInviteInput = {
|
|
128082
128741
|
cloudId: Scalars['ID']['input'];
|
|
128083
128742
|
userId: Scalars['ID']['input'];
|
|
@@ -128235,6 +128894,13 @@ export declare type MercuryLinkWorkToFocusAreaPayload = Payload & {
|
|
|
128235
128894
|
errors?: Maybe<Array<MutationError>>;
|
|
128236
128895
|
success: Scalars['Boolean']['output'];
|
|
128237
128896
|
};
|
|
128897
|
+
export declare type MercuryLinkedGoalOrWorkSummary = {
|
|
128898
|
+
__typename?: 'MercuryLinkedGoalOrWorkSummary';
|
|
128899
|
+
focusAreaId: Scalars['ID']['output'];
|
|
128900
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
128901
|
+
linkId: Scalars['ID']['output'];
|
|
128902
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
128903
|
+
};
|
|
128238
128904
|
export declare type MercuryLinkedGoalStatus = {
|
|
128239
128905
|
__typename?: 'MercuryLinkedGoalStatus';
|
|
128240
128906
|
score?: Maybe<Scalars['Float']['output']>;
|
|
@@ -128272,6 +128938,7 @@ export declare type MercuryMoveFundsChange = MercuryChangeInterface & Node & {
|
|
|
128272
128938
|
createdBy?: Maybe<User>;
|
|
128273
128939
|
createdDate: Scalars['DateTime']['output'];
|
|
128274
128940
|
id: Scalars['ID']['output'];
|
|
128941
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
128275
128942
|
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
128276
128943
|
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
128277
128944
|
updatedBy?: Maybe<User>;
|
|
@@ -128290,6 +128957,7 @@ export declare type MercuryMovePositionsChange = MercuryChangeInterface & Node &
|
|
|
128290
128957
|
createdBy?: Maybe<User>;
|
|
128291
128958
|
createdDate: Scalars['DateTime']['output'];
|
|
128292
128959
|
id: Scalars['ID']['output'];
|
|
128960
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
128293
128961
|
positionsAmount: Scalars['Int']['output'];
|
|
128294
128962
|
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
128295
128963
|
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
@@ -128554,6 +129222,7 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
128554
129222
|
export declare type MercuryNormalizedWork = {
|
|
128555
129223
|
__typename?: 'MercuryNormalizedWork';
|
|
128556
129224
|
connectedFocusArea: Scalars['ID']['output'];
|
|
129225
|
+
depth?: Maybe<Scalars['Int']['output']>;
|
|
128557
129226
|
externalOwner?: Maybe<MercuryExternalOwner>;
|
|
128558
129227
|
id: Scalars['ID']['output'];
|
|
128559
129228
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -128725,6 +129394,7 @@ export declare type MercuryPositionAllocationChange = MercuryChangeInterface & N
|
|
|
128725
129394
|
createdBy?: Maybe<User>;
|
|
128726
129395
|
createdDate: Scalars['DateTime']['output'];
|
|
128727
129396
|
id: Scalars['ID']['output'];
|
|
129397
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
128728
129398
|
position?: Maybe<RadarPosition>;
|
|
128729
129399
|
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
128730
129400
|
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
@@ -128881,14 +129551,22 @@ export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaAr
|
|
|
128881
129551
|
};
|
|
128882
129552
|
export declare type MercuryProviderOrchestrationQueryApi = {
|
|
128883
129553
|
__typename?: 'MercuryProviderOrchestrationQueryApi';
|
|
129554
|
+
connectedProviders?: Maybe<MercuryProviderConnection>;
|
|
128884
129555
|
isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
|
|
129556
|
+
providers?: Maybe<MercuryProviderConnection>;
|
|
128885
129557
|
searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
128886
129558
|
workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
|
|
128887
129559
|
};
|
|
129560
|
+
export declare type MercuryProviderOrchestrationQueryApiConnectedProvidersArgs = {
|
|
129561
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129562
|
+
};
|
|
128888
129563
|
export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
|
|
128889
129564
|
cloudId: Scalars['ID']['input'];
|
|
128890
129565
|
workspaceAris: Array<Scalars['String']['input']>;
|
|
128891
129566
|
};
|
|
129567
|
+
export declare type MercuryProviderOrchestrationQueryApiProvidersArgs = {
|
|
129568
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129569
|
+
};
|
|
128892
129570
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
|
|
128893
129571
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
128894
129572
|
cloudId: Scalars['ID']['input'];
|
|
@@ -129022,6 +129700,7 @@ export declare type MercuryQueryApi = {
|
|
|
129022
129700
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
129023
129701
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
129024
129702
|
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
129703
|
+
linkedGoalOrWorkSummary?: Maybe<MercuryLinkedGoalOrWorkSummary>;
|
|
129025
129704
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
129026
129705
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
129027
129706
|
myPreference?: Maybe<MercuryPreference>;
|
|
@@ -129036,8 +129715,12 @@ export declare type MercuryQueryApiAiFocusAreaGoalContextDataArgs = {
|
|
|
129036
129715
|
maxDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
129037
129716
|
};
|
|
129038
129717
|
export declare type MercuryQueryApiAiFocusAreaSummaryArgs = {
|
|
129039
|
-
cloudId
|
|
129718
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129719
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129040
129720
|
id: Scalars['ID']['input'];
|
|
129721
|
+
includeGoalsFromSubFocusAreas?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129722
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
129723
|
+
summaryType?: InputMaybe<MercuryFocusAreaSummaryType>;
|
|
129041
129724
|
};
|
|
129042
129725
|
export declare type MercuryQueryApiAiFocusAreaWorkContextDataArgs = {
|
|
129043
129726
|
cloudId: Scalars['ID']['input'];
|
|
@@ -129117,6 +129800,12 @@ export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
|
|
|
129117
129800
|
hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
129118
129801
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
129119
129802
|
};
|
|
129803
|
+
export declare type MercuryQueryApiLinkedGoalOrWorkSummaryArgs = {
|
|
129804
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129805
|
+
focusAreaId: Scalars['ID']['input'];
|
|
129806
|
+
linkId: Scalars['ID']['input'];
|
|
129807
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
129808
|
+
};
|
|
129120
129809
|
export declare type MercuryQueryApiMediaReadTokenArgs = {
|
|
129121
129810
|
cloudId: Scalars['ID']['input'];
|
|
129122
129811
|
entityId: Scalars['ID']['input'];
|
|
@@ -129196,6 +129885,7 @@ export declare type MercuryRenameFocusAreaChange = MercuryChangeInterface & Node
|
|
|
129196
129885
|
createdDate: Scalars['DateTime']['output'];
|
|
129197
129886
|
id: Scalars['ID']['output'];
|
|
129198
129887
|
newFocusAreaName: Scalars['String']['output'];
|
|
129888
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
129199
129889
|
oldFocusAreaName: Scalars['String']['output'];
|
|
129200
129890
|
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
129201
129891
|
updatedBy?: Maybe<User>;
|
|
@@ -129223,6 +129913,7 @@ export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node &
|
|
|
129223
129913
|
createdBy?: Maybe<User>;
|
|
129224
129914
|
createdDate: Scalars['DateTime']['output'];
|
|
129225
129915
|
id: Scalars['ID']['output'];
|
|
129916
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
129226
129917
|
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
129227
129918
|
updatedBy?: Maybe<User>;
|
|
129228
129919
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -129239,14 +129930,15 @@ export declare type MercuryRequestPositionsChange = MercuryChangeInterface & Nod
|
|
|
129239
129930
|
createdBy?: Maybe<User>;
|
|
129240
129931
|
createdDate: Scalars['DateTime']['output'];
|
|
129241
129932
|
id: Scalars['ID']['output'];
|
|
129242
|
-
|
|
129933
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
129934
|
+
positionsAmount?: Maybe<Scalars['Int']['output']>;
|
|
129243
129935
|
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
129244
129936
|
updatedBy?: Maybe<User>;
|
|
129245
129937
|
updatedDate: Scalars['DateTime']['output'];
|
|
129246
129938
|
};
|
|
129247
129939
|
export declare type MercuryRequestPositionsChangeInput = {
|
|
129248
129940
|
cost?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
129249
|
-
positionsAmount
|
|
129941
|
+
positionsAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
129250
129942
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
129251
129943
|
};
|
|
129252
129944
|
export declare type MercuryRestrictedChangeProposal = {
|
|
@@ -129288,11 +129980,25 @@ export declare type MercuryRisk = Node & {
|
|
|
129288
129980
|
id: Scalars['ID']['output'];
|
|
129289
129981
|
name: Scalars['String']['output'];
|
|
129290
129982
|
owner?: Maybe<Scalars['ID']['output']>;
|
|
129983
|
+
status?: Maybe<MercuryRiskStatus>;
|
|
129984
|
+
};
|
|
129985
|
+
export declare type MercuryRiskStatus = {
|
|
129986
|
+
__typename?: 'MercuryRiskStatus';
|
|
129987
|
+
color: MercuryRiskStatusColor;
|
|
129988
|
+
displayName: Scalars['String']['output'];
|
|
129989
|
+
id: Scalars['ID']['output'];
|
|
129990
|
+
key: Scalars['String']['output'];
|
|
129991
|
+
order: Scalars['Int']['output'];
|
|
129291
129992
|
};
|
|
129993
|
+
export declare enum MercuryRiskStatusColor {
|
|
129994
|
+
Gray = "GRAY",
|
|
129995
|
+
Red = "RED"
|
|
129996
|
+
}
|
|
129292
129997
|
export declare type MercuryRisksMutationApi = {
|
|
129293
129998
|
__typename?: 'MercuryRisksMutationApi';
|
|
129294
129999
|
createRisk?: Maybe<MercuryCreateRiskPayload>;
|
|
129295
130000
|
deleteRisk?: Maybe<MercuryDeleteRiskPayload>;
|
|
130001
|
+
transitionRiskStatus?: Maybe<MercuryTransitionRiskPayload>;
|
|
129296
130002
|
updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
|
|
129297
130003
|
updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
|
|
129298
130004
|
updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
|
|
@@ -129303,6 +130009,9 @@ export declare type MercuryRisksMutationApiCreateRiskArgs = {
|
|
|
129303
130009
|
export declare type MercuryRisksMutationApiDeleteRiskArgs = {
|
|
129304
130010
|
input: MercuryDeleteRiskInput;
|
|
129305
130011
|
};
|
|
130012
|
+
export declare type MercuryRisksMutationApiTransitionRiskStatusArgs = {
|
|
130013
|
+
input: MercuryTransitionRiskStatusInput;
|
|
130014
|
+
};
|
|
129306
130015
|
export declare type MercuryRisksMutationApiUpdateRiskDescriptionArgs = {
|
|
129307
130016
|
input: MercuryUpdateRiskDescriptionInput;
|
|
129308
130017
|
};
|
|
@@ -129883,6 +130592,17 @@ export declare type MercuryTransitionFocusAreaStatusInput = {
|
|
|
129883
130592
|
id: Scalars['ID']['input'];
|
|
129884
130593
|
statusTransitionId: Scalars['ID']['input'];
|
|
129885
130594
|
};
|
|
130595
|
+
export declare type MercuryTransitionRiskPayload = Payload & {
|
|
130596
|
+
__typename?: 'MercuryTransitionRiskPayload';
|
|
130597
|
+
errors?: Maybe<Array<MutationError>>;
|
|
130598
|
+
success: Scalars['Boolean']['output'];
|
|
130599
|
+
updatedRisk?: Maybe<MercuryRisk>;
|
|
130600
|
+
};
|
|
130601
|
+
export declare type MercuryTransitionRiskStatusInput = {
|
|
130602
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
130603
|
+
id: Scalars['ID']['input'];
|
|
130604
|
+
statusTransitionId: Scalars['ID']['input'];
|
|
130605
|
+
};
|
|
129886
130606
|
export declare type MercuryTransitionStrategicEventPayload = Payload & {
|
|
129887
130607
|
__typename?: 'MercuryTransitionStrategicEventPayload';
|
|
129888
130608
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -129929,6 +130649,9 @@ export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
|
129929
130649
|
export declare type MercuryUpdateChangeMonetaryAmountInput = {
|
|
129930
130650
|
monetaryAmount?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
129931
130651
|
};
|
|
130652
|
+
export declare type MercuryUpdateChangeNoteInput = {
|
|
130653
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
130654
|
+
};
|
|
129932
130655
|
export declare type MercuryUpdateChangePayload = Payload & {
|
|
129933
130656
|
__typename?: 'MercuryUpdateChangePayload';
|
|
129934
130657
|
change?: Maybe<MercuryChange>;
|
|
@@ -130020,14 +130743,6 @@ export declare type MercuryUpdateCommentPayload = Payload & {
|
|
|
130020
130743
|
success: Scalars['Boolean']['output'];
|
|
130021
130744
|
updatedComment?: Maybe<MercuryComment>;
|
|
130022
130745
|
};
|
|
130023
|
-
export declare type MercuryUpdateCostSubtypeDescriptionInput = {
|
|
130024
|
-
description: Scalars['String']['input'];
|
|
130025
|
-
id: Scalars['ID']['input'];
|
|
130026
|
-
};
|
|
130027
|
-
export declare type MercuryUpdateCostSubtypeKeyInput = {
|
|
130028
|
-
id: Scalars['ID']['input'];
|
|
130029
|
-
key: Scalars['String']['input'];
|
|
130030
|
-
};
|
|
130031
130746
|
export declare type MercuryUpdateCostSubtypeNameInput = {
|
|
130032
130747
|
id: Scalars['ID']['input'];
|
|
130033
130748
|
name: Scalars['String']['input'];
|
|
@@ -130120,14 +130835,6 @@ export declare type MercuryUpdateFocusAreaTargetDateInput = {
|
|
|
130120
130835
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
130121
130836
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
130122
130837
|
};
|
|
130123
|
-
export declare type MercuryUpdateInvestmentCategoryDescriptionInput = {
|
|
130124
|
-
description: Scalars['String']['input'];
|
|
130125
|
-
id: Scalars['ID']['input'];
|
|
130126
|
-
};
|
|
130127
|
-
export declare type MercuryUpdateInvestmentCategoryKeyInput = {
|
|
130128
|
-
id: Scalars['ID']['input'];
|
|
130129
|
-
key: Scalars['String']['input'];
|
|
130130
|
-
};
|
|
130131
130838
|
export declare type MercuryUpdateInvestmentCategoryNameInput = {
|
|
130132
130839
|
id: Scalars['ID']['input'];
|
|
130133
130840
|
name: Scalars['String']['input'];
|
|
@@ -130138,25 +130845,17 @@ export declare type MercuryUpdateInvestmentCategoryPayload = Payload & {
|
|
|
130138
130845
|
success: Scalars['Boolean']['output'];
|
|
130139
130846
|
updatedInvestmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
130140
130847
|
};
|
|
130141
|
-
export declare type MercuryUpdateInvestmentCategorySetNameInput = {
|
|
130142
|
-
id: Scalars['ID']['input'];
|
|
130143
|
-
name: Scalars['String']['input'];
|
|
130144
|
-
};
|
|
130145
|
-
export declare type MercuryUpdateInvestmentCategorySetPayload = Payload & {
|
|
130146
|
-
__typename?: 'MercuryUpdateInvestmentCategorySetPayload';
|
|
130147
|
-
errors?: Maybe<Array<MutationError>>;
|
|
130148
|
-
success: Scalars['Boolean']['output'];
|
|
130149
|
-
updatedInvestmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
|
|
130150
|
-
};
|
|
130151
130848
|
export declare type MercuryUpdateMoveFundsChangeInput = {
|
|
130152
130849
|
amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
|
|
130153
130850
|
changeId: Scalars['ID']['input'];
|
|
130851
|
+
note?: InputMaybe<MercuryUpdateChangeNoteInput>;
|
|
130154
130852
|
sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
130155
130853
|
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
130156
130854
|
};
|
|
130157
130855
|
export declare type MercuryUpdateMovePositionsChangeInput = {
|
|
130158
130856
|
changeId: Scalars['ID']['input'];
|
|
130159
130857
|
cost?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
|
|
130858
|
+
note?: InputMaybe<MercuryUpdateChangeNoteInput>;
|
|
130160
130859
|
positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
|
|
130161
130860
|
sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
130162
130861
|
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
@@ -130175,11 +130874,13 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
|
|
|
130175
130874
|
export declare type MercuryUpdateRequestFundsChangeInput = {
|
|
130176
130875
|
amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
|
|
130177
130876
|
changeId: Scalars['ID']['input'];
|
|
130877
|
+
note?: InputMaybe<MercuryUpdateChangeNoteInput>;
|
|
130178
130878
|
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
130179
130879
|
};
|
|
130180
130880
|
export declare type MercuryUpdateRequestPositionsChangeInput = {
|
|
130181
130881
|
changeId: Scalars['ID']['input'];
|
|
130182
130882
|
cost?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
|
|
130883
|
+
note?: InputMaybe<MercuryUpdateChangeNoteInput>;
|
|
130183
130884
|
positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
|
|
130184
130885
|
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
130185
130886
|
};
|
|
@@ -130720,6 +131421,7 @@ export declare type Mutation = {
|
|
|
130720
131421
|
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
130721
131422
|
avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
|
|
130722
131423
|
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
131424
|
+
avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelResponse>;
|
|
130723
131425
|
blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
|
|
130724
131426
|
blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
|
|
130725
131427
|
blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
|
|
@@ -130845,7 +131547,6 @@ export declare type Mutation = {
|
|
|
130845
131547
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
130846
131548
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
130847
131549
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
130848
|
-
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
130849
131550
|
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
130850
131551
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
130851
131552
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
@@ -130858,6 +131559,7 @@ export declare type Mutation = {
|
|
|
130858
131559
|
confluence_updateTopic?: Maybe<ConfluenceUpdateTopicPayload>;
|
|
130859
131560
|
confluence_updateVote?: Maybe<ConfluenceUpdateVotePayload>;
|
|
130860
131561
|
confluence_updateWatermarkConfig?: Maybe<ConfluenceUpdateWatermarkConfigPayload>;
|
|
131562
|
+
confluence_updateWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
130861
131563
|
confluence_watchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
130862
131564
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
130863
131565
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -131211,6 +131913,7 @@ export declare type Mutation = {
|
|
|
131211
131913
|
jira_setLogo?: Maybe<JiraSetLogoPayload>;
|
|
131212
131914
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
131213
131915
|
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
131916
|
+
jira_setTimelineViewHideWarnings?: Maybe<JiraSetTimelineViewHideWarningsPayload>;
|
|
131214
131917
|
jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
|
|
131215
131918
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
131216
131919
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
@@ -131836,12 +132539,14 @@ export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
|
131836
132539
|
};
|
|
131837
132540
|
export declare type MutationAgentWorkspace_EndBreakArgs = {
|
|
131838
132541
|
agentId: Scalars['ID']['input'];
|
|
132542
|
+
cloudId: Scalars['ID']['input'];
|
|
131839
132543
|
};
|
|
131840
132544
|
export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
|
|
131841
132545
|
input: AgentWorkspaceSetDefaultCapacityInput;
|
|
131842
132546
|
};
|
|
131843
132547
|
export declare type MutationAgentWorkspace_StartBreakArgs = {
|
|
131844
132548
|
agentId: Scalars['ID']['input'];
|
|
132549
|
+
cloudId: Scalars['ID']['input'];
|
|
131845
132550
|
};
|
|
131846
132551
|
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
131847
132552
|
input: AgentWorkspaceUpdateScheduleInput;
|
|
@@ -132230,6 +132935,9 @@ export declare type MutationAvp_UpdateFilterExpressionArgs = {
|
|
|
132230
132935
|
export declare type MutationAvp_UpdateVariableArgs = {
|
|
132231
132936
|
input: AvpUpdateVariableInput;
|
|
132232
132937
|
};
|
|
132938
|
+
export declare type MutationAvpanalytics_CreateModelArgs = {
|
|
132939
|
+
input?: InputMaybe<AvpAnalyticsCreateModelRequest>;
|
|
132940
|
+
};
|
|
132233
132941
|
export declare type MutationBlockService_CreateBlockArgs = {
|
|
132234
132942
|
input: BlockServiceCreateBlockInput;
|
|
132235
132943
|
};
|
|
@@ -132681,10 +133389,6 @@ export declare type MutationConfluence_UpdateInstanceArgs = {
|
|
|
132681
133389
|
input: ConfluenceUpdateInstanceInput;
|
|
132682
133390
|
pageAri: Scalars['ID']['input'];
|
|
132683
133391
|
};
|
|
132684
|
-
export declare type MutationConfluence_UpdateNav4OptInArgs = {
|
|
132685
|
-
cloudId: Scalars['ID']['input'];
|
|
132686
|
-
input: ConfluenceUpdateNav4OptInInput;
|
|
132687
|
-
};
|
|
132688
133392
|
export declare type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
|
|
132689
133393
|
cloudId: Scalars['ID']['input'];
|
|
132690
133394
|
input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
|
|
@@ -132734,6 +133438,10 @@ export declare type MutationConfluence_UpdateWatermarkConfigArgs = {
|
|
|
132734
133438
|
input: ConfluenceUpdateWatermarkConfigInput;
|
|
132735
133439
|
resourceAri: Scalars['ID']['input'];
|
|
132736
133440
|
};
|
|
133441
|
+
export declare type MutationConfluence_UpdateWorkflowApplicationArgs = {
|
|
133442
|
+
cloudId: Scalars['ID']['input'];
|
|
133443
|
+
updateWorkflowApplicationRequestInput: ConfluenceUpdateWorkflowApplicationRequestInput;
|
|
133444
|
+
};
|
|
132737
133445
|
export declare type MutationConfluence_WatchLabelArgs = {
|
|
132738
133446
|
cloudId: Scalars['ID']['input'];
|
|
132739
133447
|
input: ConfluenceLabelWatchInput;
|
|
@@ -133888,6 +134596,9 @@ export declare type MutationJira_SetTimelineHighlightedReleasesArgs = {
|
|
|
133888
134596
|
cloudId: Scalars['ID']['input'];
|
|
133889
134597
|
input: JiraSetTimelineHighlightedReleasesInput;
|
|
133890
134598
|
};
|
|
134599
|
+
export declare type MutationJira_SetTimelineViewHideWarningsArgs = {
|
|
134600
|
+
input: JiraSetTimelineViewHideWarningsInput;
|
|
134601
|
+
};
|
|
133891
134602
|
export declare type MutationJira_SetTimelineViewRangeModeArgs = {
|
|
133892
134603
|
input: JiraSetTimelineViewRangeModeInput;
|
|
133893
134604
|
};
|
|
@@ -134037,10 +134748,10 @@ export declare type MutationKitsune_UpdateSpaceArgs = {
|
|
|
134037
134748
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
134038
134749
|
};
|
|
134039
134750
|
export declare type MutationKitsune_UpdateViewArgs = {
|
|
134751
|
+
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
134040
134752
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
134041
134753
|
id: Scalars['ID']['input'];
|
|
134042
134754
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
134043
|
-
type?: InputMaybe<KitsuneViewType>;
|
|
134044
134755
|
};
|
|
134045
134756
|
export declare type MutationKnowledgeBaseArgs = {
|
|
134046
134757
|
cloudId: Scalars['ID']['input'];
|
|
@@ -137599,6 +138310,46 @@ export declare type PopularSpaceFeedPage = {
|
|
|
137599
138310
|
__typename?: 'PopularSpaceFeedPage';
|
|
137600
138311
|
page: Array<PopularFeedItem>;
|
|
137601
138312
|
};
|
|
138313
|
+
export declare type PostOfficeActiveScopesInput = {
|
|
138314
|
+
current?: InputMaybe<Array<PostOfficeScopeEntryInput>>;
|
|
138315
|
+
previous?: InputMaybe<Array<PostOfficeScopeEntryInput>>;
|
|
138316
|
+
};
|
|
138317
|
+
export declare type PostOfficeContextInput = {
|
|
138318
|
+
isSiteAdmin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138319
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
138320
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
138321
|
+
productEdition?: InputMaybe<Scalars['String']['input']>;
|
|
138322
|
+
scopes?: InputMaybe<PostOfficeActiveScopesInput>;
|
|
138323
|
+
subproduct?: InputMaybe<Scalars['String']['input']>;
|
|
138324
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
138325
|
+
};
|
|
138326
|
+
export declare type PostOfficeMessage = {
|
|
138327
|
+
__typename?: 'PostOfficeMessage';
|
|
138328
|
+
createdAt: Scalars['String']['output'];
|
|
138329
|
+
eventTime: Scalars['String']['output'];
|
|
138330
|
+
messageCategory: Scalars['String']['output'];
|
|
138331
|
+
messageCreationType?: Maybe<PostOfficeMessageCreationType>;
|
|
138332
|
+
messageInstanceId: Scalars['String']['output'];
|
|
138333
|
+
messageTemplateId: Scalars['String']['output'];
|
|
138334
|
+
recommendationSession?: Maybe<PostOfficeRecommendationSession>;
|
|
138335
|
+
triggerId: Scalars['String']['output'];
|
|
138336
|
+
};
|
|
138337
|
+
export declare enum PostOfficeMessageCreationType {
|
|
138338
|
+
Explicit = "explicit",
|
|
138339
|
+
Implicit = "implicit"
|
|
138340
|
+
}
|
|
138341
|
+
export declare type PostOfficeMessagePayload = {
|
|
138342
|
+
__typename?: 'PostOfficeMessagePayload';
|
|
138343
|
+
messages: Array<PostOfficeMessage>;
|
|
138344
|
+
};
|
|
138345
|
+
export declare type PostOfficeRecommendationSession = {
|
|
138346
|
+
__typename?: 'PostOfficeRecommendationSession';
|
|
138347
|
+
entityId: Scalars['String']['output'];
|
|
138348
|
+
sessionId: Scalars['String']['output'];
|
|
138349
|
+
};
|
|
138350
|
+
export declare type PostOfficeScopeEntryInput = {
|
|
138351
|
+
name: Scalars['String']['input'];
|
|
138352
|
+
};
|
|
137602
138353
|
export declare type PremiumExtensionsFeature = {
|
|
137603
138354
|
__typename?: 'PremiumExtensionsFeature';
|
|
137604
138355
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -138178,6 +138929,7 @@ export declare type Query = {
|
|
|
138178
138929
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
138179
138930
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
138180
138931
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
138932
|
+
avpanalytics_getModels?: Maybe<AvpAnalyticsGetModelsResponse>;
|
|
138181
138933
|
avpanalytics_getmodeldata?: Maybe<AvpAnalyticsGetModelDataResponse>;
|
|
138182
138934
|
avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
|
|
138183
138935
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
@@ -138299,6 +139051,7 @@ export declare type Query = {
|
|
|
138299
139051
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
138300
139052
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
138301
139053
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
139054
|
+
confluence_getActiveWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
138302
139055
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
138303
139056
|
confluence_getAudioPreference?: Maybe<ConfluenceAudioPreference>;
|
|
138304
139057
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
@@ -138361,6 +139114,7 @@ export declare type Query = {
|
|
|
138361
139114
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
138362
139115
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
138363
139116
|
confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
|
|
139117
|
+
confluence_teamAdminControlsSettings?: Maybe<ConfluenceTeamAdminControlsSettings>;
|
|
138364
139118
|
confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
|
|
138365
139119
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
138366
139120
|
confluence_template?: Maybe<ContentTemplate>;
|
|
@@ -138829,6 +139583,7 @@ export declare type Query = {
|
|
|
138829
139583
|
polarisView?: Maybe<PolarisView>;
|
|
138830
139584
|
polarisViewArrangementInfo?: Maybe<Scalars['JSON']['output']>;
|
|
138831
139585
|
popularFeed?: Maybe<PaginatedPopularFeed>;
|
|
139586
|
+
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
138832
139587
|
pricing?: Maybe<ContentPlatformPricing>;
|
|
138833
139588
|
pricings: ContentPlatformPricingSearchConnection;
|
|
138834
139589
|
productListing?: Maybe<ProductListingResult>;
|
|
@@ -138840,6 +139595,7 @@ export declare type Query = {
|
|
|
138840
139595
|
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
138841
139596
|
projects_byKey?: Maybe<TownsquareProject>;
|
|
138842
139597
|
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
139598
|
+
projects_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
138843
139599
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
138844
139600
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
138845
139601
|
projects_searchJiraWorkItemsToLink?: Maybe<TownsquareJiraWorkItemConnection>;
|
|
@@ -140130,6 +140886,9 @@ export declare type QueryAvp_GetDashboardsByArisArgs = {
|
|
|
140130
140886
|
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
140131
140887
|
dashboardAri: Scalars['ID']['input'];
|
|
140132
140888
|
};
|
|
140889
|
+
export declare type QueryAvpanalytics_GetModelsArgs = {
|
|
140890
|
+
input?: InputMaybe<AvpAnalyticsGetModelsRequest>;
|
|
140891
|
+
};
|
|
140133
140892
|
export declare type QueryAvpanalytics_GetmodeldataArgs = {
|
|
140134
140893
|
input?: InputMaybe<AvpAnalyticsGetModelDataRequest>;
|
|
140135
140894
|
};
|
|
@@ -140618,6 +141377,14 @@ export declare type QueryConfluence_GenerateSpaceKeyArgs = {
|
|
|
140618
141377
|
cloudId: Scalars['ID']['input'];
|
|
140619
141378
|
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
140620
141379
|
};
|
|
141380
|
+
export declare type QueryConfluence_GetActiveWorkflowApplicationArgs = {
|
|
141381
|
+
cloudId: Scalars['ID']['input'];
|
|
141382
|
+
contentId: Scalars['Long']['input'];
|
|
141383
|
+
contentStatus: Scalars['String']['input'];
|
|
141384
|
+
contentVersion: Scalars['Int']['input'];
|
|
141385
|
+
fetchWorkflowReview?: InputMaybe<Scalars['Boolean']['input']>;
|
|
141386
|
+
workflowId: Scalars['Long']['input'];
|
|
141387
|
+
};
|
|
140621
141388
|
export declare type QueryConfluence_GetAllAppsArgs = {
|
|
140622
141389
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
140623
141390
|
cloudId: Scalars['ID']['input'];
|
|
@@ -140929,6 +141696,9 @@ export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
|
|
|
140929
141696
|
cloudId: Scalars['ID']['input'];
|
|
140930
141697
|
subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
140931
141698
|
};
|
|
141699
|
+
export declare type QueryConfluence_TeamAdminControlsSettingsArgs = {
|
|
141700
|
+
cloudId: Scalars['ID']['input'];
|
|
141701
|
+
};
|
|
140932
141702
|
export declare type QueryConfluence_TeamPresenceContentSettingArgs = {
|
|
140933
141703
|
cloudId: Scalars['ID']['input'];
|
|
140934
141704
|
spaceKey: Scalars['String']['input'];
|
|
@@ -142266,7 +143036,7 @@ export declare type QueryJpdViewsService_GlobalViewArgs = {
|
|
|
142266
143036
|
};
|
|
142267
143037
|
export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
|
|
142268
143038
|
cloudId: Scalars['ID']['input'];
|
|
142269
|
-
filter
|
|
143039
|
+
filter: JpdViewsServiceGlobalViewsByCriteriaInput;
|
|
142270
143040
|
pagination: JpdViewsServicePaginationInput;
|
|
142271
143041
|
sortBy?: InputMaybe<JpdViewsServiceSortByInput>;
|
|
142272
143042
|
};
|
|
@@ -142773,6 +143543,14 @@ export declare type QueryProjects_ByKeyArgs = {
|
|
|
142773
143543
|
export declare type QueryProjects_CanCreateProjectFusionArgs = {
|
|
142774
143544
|
input: TownsquareProjectsCanCreateProjectFusionInput;
|
|
142775
143545
|
};
|
|
143546
|
+
export declare type QueryProjects_CustomFieldDefinitionSearchArgs = {
|
|
143547
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143548
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
143549
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143550
|
+
q: Scalars['String']['input'];
|
|
143551
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareCustomFieldSortEnum>>>;
|
|
143552
|
+
workspaceUuid?: InputMaybe<Scalars['UUID']['input']>;
|
|
143553
|
+
};
|
|
142776
143554
|
export declare type QueryProjects_LinksByIdsArgs = {
|
|
142777
143555
|
linkIds: Array<Scalars['ID']['input']>;
|
|
142778
143556
|
};
|
|
@@ -146253,6 +147031,7 @@ export declare type SearchConfigurationSiteMetadata = {
|
|
|
146253
147031
|
isJiraIssueIndexed: Scalars['Boolean']['output'];
|
|
146254
147032
|
isRovoEnabled: Scalars['Boolean']['output'];
|
|
146255
147033
|
orgId: Scalars['String']['output'];
|
|
147034
|
+
productEdition?: Maybe<Scalars['String']['output']>;
|
|
146256
147035
|
productInfo: Array<SearchProductInfo>;
|
|
146257
147036
|
siteName: Scalars['String']['output'];
|
|
146258
147037
|
};
|
|
@@ -147286,8 +148065,10 @@ export declare type SearchThirdPartyFilter = {
|
|
|
147286
148065
|
};
|
|
147287
148066
|
export declare type SearchThirdPartyMetadata = {
|
|
147288
148067
|
__typename?: 'SearchThirdPartyMetadata';
|
|
148068
|
+
connectionId?: Maybe<Scalars['String']['output']>;
|
|
147289
148069
|
datasourceId?: Maybe<Scalars['String']['output']>;
|
|
147290
148070
|
integrationARI: Scalars['String']['output'];
|
|
148071
|
+
isImpersonationAuthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
147291
148072
|
isUserOAuthed: Scalars['Boolean']['output'];
|
|
147292
148073
|
name: Scalars['String']['output'];
|
|
147293
148074
|
outboundAuthUrl: Scalars['String']['output'];
|
|
@@ -169883,6 +170664,7 @@ export declare type Subscription = {
|
|
|
169883
170664
|
mercury?: Maybe<MercurySubscriptionApi>;
|
|
169884
170665
|
migration: MigrationSubscription;
|
|
169885
170666
|
migrationPlanningService: MigrationPlanningServiceSubscription;
|
|
170667
|
+
postOffice_onMessageReceived?: Maybe<PostOfficeMessagePayload>;
|
|
169886
170668
|
sandbox: SandboxSubscription;
|
|
169887
170669
|
signup: SignupSubscriptionApi;
|
|
169888
170670
|
stakeholderComms_opsgenieRiskAssesmentOnUpdate?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
@@ -169967,6 +170749,12 @@ export declare type SubscriptionKitsune_OnFeedbackCreatedArgs = {
|
|
|
169967
170749
|
export declare type SubscriptionLiveChat_UpdatesArgs = {
|
|
169968
170750
|
chatAri: Scalars['ID']['input'];
|
|
169969
170751
|
};
|
|
170752
|
+
export declare type SubscriptionPostOffice_OnMessageReceivedArgs = {
|
|
170753
|
+
context?: InputMaybe<PostOfficeContextInput>;
|
|
170754
|
+
placementId: Scalars['String']['input'];
|
|
170755
|
+
product: Scalars['String']['input'];
|
|
170756
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
170757
|
+
};
|
|
169970
170758
|
export declare type SubscriptionStakeholderComms_OpsgenieRiskAssesmentOnUpdateArgs = {
|
|
169971
170759
|
changeRequestId: Scalars['ID']['input'];
|
|
169972
170760
|
};
|
|
@@ -171920,6 +172708,16 @@ export declare type TownsquareCustomFieldConnection = {
|
|
|
171920
172708
|
pageInfo: PageInfo;
|
|
171921
172709
|
};
|
|
171922
172710
|
export declare type TownsquareCustomFieldDefinition = TownsquareNumberCustomFieldDefinition | TownsquareTextCustomFieldDefinition | TownsquareTextSelectCustomFieldDefinition | TownsquareUserCustomFieldDefinition;
|
|
172711
|
+
export declare type TownsquareCustomFieldDefinitionConnection = {
|
|
172712
|
+
__typename?: 'TownsquareCustomFieldDefinitionConnection';
|
|
172713
|
+
edges?: Maybe<Array<Maybe<TownsquareCustomFieldDefinitionEdge>>>;
|
|
172714
|
+
pageInfo: PageInfo;
|
|
172715
|
+
};
|
|
172716
|
+
export declare type TownsquareCustomFieldDefinitionEdge = {
|
|
172717
|
+
__typename?: 'TownsquareCustomFieldDefinitionEdge';
|
|
172718
|
+
cursor: Scalars['String']['output'];
|
|
172719
|
+
node?: Maybe<TownsquareCustomFieldDefinition>;
|
|
172720
|
+
};
|
|
171923
172721
|
export declare type TownsquareCustomFieldDefinitionNode = {
|
|
171924
172722
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
171925
172723
|
creator?: Maybe<User>;
|
|
@@ -171965,6 +172763,14 @@ export declare type TownsquareCustomFieldNumberSavedValueNode = Node & Townsquar
|
|
|
171965
172763
|
export declare type TownsquareCustomFieldSavedValueNode = {
|
|
171966
172764
|
id: Scalars['ID']['output'];
|
|
171967
172765
|
};
|
|
172766
|
+
export declare enum TownsquareCustomFieldSortEnum {
|
|
172767
|
+
CreationDateAsc = "CREATION_DATE_ASC",
|
|
172768
|
+
CreationDateDesc = "CREATION_DATE_DESC",
|
|
172769
|
+
IdAsc = "ID_ASC",
|
|
172770
|
+
IdDesc = "ID_DESC",
|
|
172771
|
+
NameAsc = "NAME_ASC",
|
|
172772
|
+
NameDesc = "NAME_DESC"
|
|
172773
|
+
}
|
|
171968
172774
|
export declare type TownsquareCustomFieldTextAllowedValueConnection = {
|
|
171969
172775
|
__typename?: 'TownsquareCustomFieldTextAllowedValueConnection';
|
|
171970
172776
|
edges?: Maybe<Array<Maybe<TownsquareCustomFieldTextAllowedValueEdge>>>;
|
|
@@ -172144,6 +172950,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
172144
172950
|
projects?: Maybe<TownsquareProjectConnection>;
|
|
172145
172951
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
172146
172952
|
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
172953
|
+
slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
|
|
172147
172954
|
startDate?: Maybe<Scalars['Date']['output']>;
|
|
172148
172955
|
state?: Maybe<TownsquareGoalState>;
|
|
172149
172956
|
status?: Maybe<TownsquareStatus>;
|
|
@@ -172216,6 +173023,10 @@ export declare type TownsquareGoalRisksArgs = {
|
|
|
172216
173023
|
noUpdateAttached?: InputMaybe<Scalars['Boolean']['input']>;
|
|
172217
173024
|
sort?: InputMaybe<Array<InputMaybe<TownsquareRiskSortEnum>>>;
|
|
172218
173025
|
};
|
|
173026
|
+
export declare type TownsquareGoalSlackChannelsArgs = {
|
|
173027
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
173028
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
173029
|
+
};
|
|
172219
173030
|
export declare type TownsquareGoalSubGoalSuggestionsArgs = {
|
|
172220
173031
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
172221
173032
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -173430,6 +174241,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
173430
174241
|
name: Scalars['String']['output'];
|
|
173431
174242
|
owner?: Maybe<User>;
|
|
173432
174243
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
174244
|
+
slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
|
|
173433
174245
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
173434
174246
|
state?: Maybe<TownsquareProjectState>;
|
|
173435
174247
|
tags?: Maybe<TownsquareTagConnection>;
|
|
@@ -173511,6 +174323,10 @@ export declare type TownsquareProjectRisksArgs = {
|
|
|
173511
174323
|
noUpdateAttached?: InputMaybe<Scalars['Boolean']['input']>;
|
|
173512
174324
|
sort?: InputMaybe<Array<InputMaybe<TownsquareRiskSortEnum>>>;
|
|
173513
174325
|
};
|
|
174326
|
+
export declare type TownsquareProjectSlackChannelsArgs = {
|
|
174327
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
174328
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
174329
|
+
};
|
|
173514
174330
|
export declare type TownsquareProjectTagsArgs = {
|
|
173515
174331
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
173516
174332
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -174494,6 +175310,37 @@ export declare type TownsquareShareProjectUserInput = {
|
|
|
174494
175310
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
174495
175311
|
addAsWatcher?: InputMaybe<Scalars['Boolean']['input']>;
|
|
174496
175312
|
};
|
|
175313
|
+
export declare type TownsquareSlackChannel = {
|
|
175314
|
+
__typename?: 'TownsquareSlackChannel';
|
|
175315
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
175316
|
+
numMembers?: Maybe<Scalars['Int']['output']>;
|
|
175317
|
+
private?: Maybe<Scalars['Boolean']['output']>;
|
|
175318
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
175319
|
+
slackTeamName?: Maybe<Scalars['String']['output']>;
|
|
175320
|
+
};
|
|
175321
|
+
export declare type TownsquareSlackConnection = {
|
|
175322
|
+
__typename?: 'TownsquareSlackConnection';
|
|
175323
|
+
channel?: Maybe<TownsquareSlackChannel>;
|
|
175324
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
175325
|
+
metadata?: Maybe<TownsquareSlackConnectionMetadata>;
|
|
175326
|
+
subscriber?: Maybe<User>;
|
|
175327
|
+
types?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
175328
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
175329
|
+
};
|
|
175330
|
+
export declare type TownsquareSlackConnectionConnection = {
|
|
175331
|
+
__typename?: 'TownsquareSlackConnectionConnection';
|
|
175332
|
+
edges?: Maybe<Array<Maybe<TownsquareSlackConnectionEdge>>>;
|
|
175333
|
+
pageInfo: PageInfo;
|
|
175334
|
+
};
|
|
175335
|
+
export declare type TownsquareSlackConnectionEdge = {
|
|
175336
|
+
__typename?: 'TownsquareSlackConnectionEdge';
|
|
175337
|
+
cursor: Scalars['String']['output'];
|
|
175338
|
+
node?: Maybe<TownsquareSlackConnection>;
|
|
175339
|
+
};
|
|
175340
|
+
export declare type TownsquareSlackConnectionMetadata = {
|
|
175341
|
+
__typename?: 'TownsquareSlackConnectionMetadata';
|
|
175342
|
+
fieldTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
175343
|
+
};
|
|
174497
175344
|
export declare type TownsquareStatus = {
|
|
174498
175345
|
__typename?: 'TownsquareStatus';
|
|
174499
175346
|
atCompletionState?: Maybe<TownsquareCompletionGoalState>;
|
|
@@ -177014,6 +177861,16 @@ export declare type TrelloLabelUpdatedConnection = {
|
|
|
177014
177861
|
edges?: Maybe<Array<TrelloCardLabelEdgeUpdated>>;
|
|
177015
177862
|
nodes?: Maybe<Array<TrelloLabel>>;
|
|
177016
177863
|
};
|
|
177864
|
+
export declare enum TrelloLabsFeature {
|
|
177865
|
+
GenerateChecklist = "GENERATE_CHECKLIST",
|
|
177866
|
+
MergeCards = "MERGE_CARDS",
|
|
177867
|
+
SmartSchedule = "SMART_SCHEDULE"
|
|
177868
|
+
}
|
|
177869
|
+
export declare enum TrelloLabsFeatureStatus {
|
|
177870
|
+
NotSet = "NOT_SET",
|
|
177871
|
+
OptedIn = "OPTED_IN",
|
|
177872
|
+
OptedOut = "OPTED_OUT"
|
|
177873
|
+
}
|
|
177017
177874
|
export declare type TrelloLimitProps = {
|
|
177018
177875
|
__typename?: 'TrelloLimitProps';
|
|
177019
177876
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -177148,6 +178005,7 @@ export declare type TrelloMember = Node & {
|
|
|
177148
178005
|
inbox?: Maybe<TrelloInbox>;
|
|
177149
178006
|
initials?: Maybe<Scalars['String']['output']>;
|
|
177150
178007
|
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
178008
|
+
labsPreferences?: Maybe<Array<TrelloMemberLabsPreference>>;
|
|
177151
178009
|
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
177152
178010
|
notifications?: Maybe<TrelloNotificationConnection>;
|
|
177153
178011
|
objectId: Scalars['ID']['output'];
|
|
@@ -177218,6 +178076,14 @@ export declare type TrelloMemberEdge = {
|
|
|
177218
178076
|
cursor: Scalars['String']['output'];
|
|
177219
178077
|
node?: Maybe<TrelloMember>;
|
|
177220
178078
|
};
|
|
178079
|
+
export declare type TrelloMemberLabsPreference = {
|
|
178080
|
+
__typename?: 'TrelloMemberLabsPreference';
|
|
178081
|
+
dateModified?: Maybe<Scalars['DateTime']['output']>;
|
|
178082
|
+
description: Scalars['String']['output'];
|
|
178083
|
+
feature: TrelloLabsFeature;
|
|
178084
|
+
name: Scalars['String']['output'];
|
|
178085
|
+
status: TrelloLabsFeatureStatus;
|
|
178086
|
+
};
|
|
177221
178087
|
export declare type TrelloMemberNonPublicData = {
|
|
177222
178088
|
__typename?: 'TrelloMemberNonPublicData';
|
|
177223
178089
|
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -177347,11 +178213,6 @@ export declare type TrelloMoveCardBoardEntities = {
|
|
|
177347
178213
|
card?: Maybe<TrelloActionCardEntity>;
|
|
177348
178214
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
177349
178215
|
};
|
|
177350
|
-
export declare type TrelloMoveCardFailure = {
|
|
177351
|
-
__typename?: 'TrelloMoveCardFailure';
|
|
177352
|
-
card: TrelloCard;
|
|
177353
|
-
message: Scalars['String']['output'];
|
|
177354
|
-
};
|
|
177355
178216
|
export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
177356
178217
|
__typename?: 'TrelloMoveCardToBoardAction';
|
|
177357
178218
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -177367,19 +178228,6 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
|
|
|
177367
178228
|
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
177368
178229
|
type?: Maybe<Scalars['String']['output']>;
|
|
177369
178230
|
};
|
|
177370
|
-
export declare type TrelloMoveCardsInput = {
|
|
177371
|
-
boardId: Scalars['ID']['input'];
|
|
177372
|
-
cardIds: Array<Scalars['ID']['input']>;
|
|
177373
|
-
listId: Scalars['ID']['input'];
|
|
177374
|
-
position: Scalars['Float']['input'];
|
|
177375
|
-
};
|
|
177376
|
-
export declare type TrelloMoveCardsPayload = {
|
|
177377
|
-
__typename?: 'TrelloMoveCardsPayload';
|
|
177378
|
-
errors?: Maybe<Array<MutationError>>;
|
|
177379
|
-
moveFailures?: Maybe<Array<TrelloMoveCardFailure>>;
|
|
177380
|
-
movedCards?: Maybe<Array<TrelloCard>>;
|
|
177381
|
-
success: Scalars['Boolean']['output'];
|
|
177382
|
-
};
|
|
177383
178231
|
export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
177384
178232
|
__typename?: 'TrelloMoveInboxCardToBoardAction';
|
|
177385
178233
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -177448,7 +178296,6 @@ export declare type TrelloMutationApi = {
|
|
|
177448
178296
|
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
177449
178297
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
177450
178298
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
177451
|
-
moveCards?: Maybe<TrelloMoveCardsPayload>;
|
|
177452
178299
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
177453
178300
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
177454
178301
|
proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
|
|
@@ -177575,9 +178422,6 @@ export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
|
|
|
177575
178422
|
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
177576
178423
|
input: TrelloMergeCardsInput;
|
|
177577
178424
|
};
|
|
177578
|
-
export declare type TrelloMutationApiMoveCardsArgs = {
|
|
177579
|
-
input: TrelloMoveCardsInput;
|
|
177580
|
-
};
|
|
177581
178425
|
export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
177582
178426
|
input: TrelloMovePlannerCalendarEventInput;
|
|
177583
178427
|
};
|
|
@@ -177954,6 +178798,7 @@ export declare type TrelloPlannerCalendarEventCard = Node & {
|
|
|
177954
178798
|
card?: Maybe<TrelloCard>;
|
|
177955
178799
|
cardId?: Maybe<Scalars['ID']['output']>;
|
|
177956
178800
|
cardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
178801
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
177957
178802
|
id: Scalars['ID']['output'];
|
|
177958
178803
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
177959
178804
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -179381,6 +180226,7 @@ export declare enum TrelloWorkspaceTier {
|
|
|
179381
180226
|
export declare type TrelloWorkspaceUpdated = {
|
|
179382
180227
|
__typename?: 'TrelloWorkspaceUpdated';
|
|
179383
180228
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
180229
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
179384
180230
|
enterprise?: Maybe<TrelloWorkspaceEnterpriseUpdated>;
|
|
179385
180231
|
id: Scalars['ID']['output'];
|
|
179386
180232
|
offering?: Maybe<Scalars['String']['output']>;
|