@forge/cli-shared 8.15.1 → 8.15.2-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -170,6 +170,21 @@ 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 enum AvpAnalyticsColumnType {
180
+ DateTime = "DATE_TIME",
181
+ Integer = "INTEGER",
182
+ Text = "TEXT"
183
+ }
184
+ export declare type AvpAnalyticsDataSourceMetadata = {
185
+ __typename?: 'AVPAnalyticsDataSourceMetadata';
186
+ icon: Scalars['String']['output'];
187
+ };
173
188
  export declare type AvpAnalyticsDimension = {
174
189
  dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
175
190
  name?: InputMaybe<Scalars['String']['input']>;
@@ -184,6 +199,26 @@ export declare type AvpAnalyticsDimensionValueDataRow = {
184
199
  __typename?: 'AVPAnalyticsDimensionValueDataRow';
185
200
  dimensionValueDataList: Array<AvpAnalyticsDimensionValueData>;
186
201
  };
202
+ export declare type AvpAnalyticsFilter = {
203
+ type: AvpAnalyticsFilterType;
204
+ values: Array<Scalars['String']['input']>;
205
+ };
206
+ export declare type AvpAnalyticsFilterRequest = {
207
+ filters?: InputMaybe<Array<AvpAnalyticsFilter>>;
208
+ };
209
+ export declare enum AvpAnalyticsFilterType {
210
+ ModelCreatedBy = "MODEL_CREATED_BY",
211
+ ModelLabel = "MODEL_LABEL",
212
+ ModelStatus = "MODEL_STATUS"
213
+ }
214
+ export declare type AvpAnalyticsFormulaColumn = AvpAnalyticsColumn & {
215
+ __typename?: 'AVPAnalyticsFormulaColumn';
216
+ expression: Scalars['String']['output'];
217
+ id: Scalars['ID']['output'];
218
+ isHidden: Scalars['Boolean']['output'];
219
+ name: Scalars['String']['output'];
220
+ type: AvpAnalyticsColumnType;
221
+ };
187
222
  export declare type AvpAnalyticsGetModelDataRequest = {
188
223
  cloudId: Scalars['ID']['input'];
189
224
  dimensions?: InputMaybe<Array<InputMaybe<AvpAnalyticsDimension>>>;
@@ -198,6 +233,47 @@ export declare type AvpAnalyticsGetModelDataResponse = {
198
233
  dimensionValueDataRows: Array<AvpAnalyticsDimensionValueDataRow>;
199
234
  paginationResponse: AvpAnalyticsPaginationResponse;
200
235
  };
236
+ export declare type AvpAnalyticsGetModelsRequest = {
237
+ cloudId: Scalars['ID']['input'];
238
+ filterRequest?: InputMaybe<AvpAnalyticsFilterRequest>;
239
+ modelType: AvpAnalyticsModelType;
240
+ paginationRequest: AvpAnalyticsPaginationRequest;
241
+ searchRequest?: InputMaybe<AvpAnalyticsSearchRequest>;
242
+ sortRequest?: InputMaybe<AvpAnalyticsSortRequest>;
243
+ workspaceId: Scalars['ID']['input'];
244
+ };
245
+ export declare type AvpAnalyticsGetModelsResponse = {
246
+ __typename?: 'AVPAnalyticsGetModelsResponse';
247
+ models: Array<AvpAnalyticsModel>;
248
+ paginationResponse: AvpAnalyticsPaginationResponse;
249
+ };
250
+ export declare type AvpAnalyticsJoinColumnPairs = {
251
+ __typename?: 'AVPAnalyticsJoinColumnPairs';
252
+ joinOnOperator: AvpAnalyticsJoinOnOperator;
253
+ leftColumnId: Scalars['ID']['output'];
254
+ rightColumnId: Scalars['ID']['output'];
255
+ };
256
+ export declare enum AvpAnalyticsJoinOnOperator {
257
+ Equals = "EQUALS",
258
+ GreaterOrEqualThan = "GREATER_OR_EQUAL_THAN",
259
+ GreaterThan = "GREATER_THAN",
260
+ LessOrEqualThan = "LESS_OR_EQUAL_THAN",
261
+ LessThan = "LESS_THAN",
262
+ NotEquals = "NOT_EQUALS"
263
+ }
264
+ export declare type AvpAnalyticsJoinPaths = {
265
+ __typename?: 'AVPAnalyticsJoinPaths';
266
+ columnPairs: Array<AvpAnalyticsJoinColumnPairs>;
267
+ joinType: AvpAnalyticsJoinType;
268
+ leftModelId: Scalars['ID']['output'];
269
+ rightModelId: Scalars['ID']['output'];
270
+ };
271
+ export declare enum AvpAnalyticsJoinType {
272
+ Full = "FULL",
273
+ Inner = "INNER",
274
+ Left = "LEFT",
275
+ Right = "RIGHT"
276
+ }
201
277
  export declare type AvpAnalyticsListModelsRequest = {
202
278
  cloudId: Scalars['ID']['input'];
203
279
  paginationRequest: AvpAnalyticsPaginationRequest;
@@ -210,6 +286,65 @@ export declare type AvpAnalyticsListModelsResponse = {
210
286
  models: Array<AvpAnalyticsModelSummary>;
211
287
  paginationResponse: AvpAnalyticsPaginationResponse;
212
288
  };
289
+ export declare type AvpAnalyticsMetric = {
290
+ __typename?: 'AVPAnalyticsMetric';
291
+ id?: Maybe<Scalars['ID']['output']>;
292
+ name?: Maybe<Scalars['String']['output']>;
293
+ };
294
+ export declare type AvpAnalyticsModel = {
295
+ __typename?: 'AVPAnalyticsModel';
296
+ definition?: Maybe<AvpAnalyticsModelDefinition>;
297
+ description?: Maybe<Scalars['String']['output']>;
298
+ id: Scalars['ID']['output'];
299
+ metadata?: Maybe<AvpAnalyticsModelMetadata>;
300
+ name?: Maybe<Scalars['String']['output']>;
301
+ status: AvpAnalyticsModelStatus;
302
+ type: AvpAnalyticsModelType;
303
+ version: Scalars['Int']['output'];
304
+ };
305
+ export declare type AvpAnalyticsModelDataSort = {
306
+ columnName: Scalars['String']['input'];
307
+ sortType: AvpAnalyticsSortType;
308
+ };
309
+ export declare type AvpAnalyticsModelDataSource = {
310
+ __typename?: 'AVPAnalyticsModelDataSource';
311
+ id: Scalars['ID']['output'];
312
+ metadata: AvpAnalyticsDataSourceMetadata;
313
+ models?: Maybe<Array<AvpAnalyticsModel>>;
314
+ name?: Maybe<Scalars['String']['output']>;
315
+ subDataSources?: Maybe<Array<AvpAnalyticsModelDataSource>>;
316
+ };
317
+ export declare type AvpAnalyticsModelDefinition = {
318
+ __typename?: 'AVPAnalyticsModelDefinition';
319
+ columns?: Maybe<Array<AvpAnalyticsColumn>>;
320
+ dataSources?: Maybe<Array<AvpAnalyticsModelDataSource>>;
321
+ filters?: Maybe<Array<AvpAnalyticsModelFilter>>;
322
+ joinPaths?: Maybe<Array<AvpAnalyticsJoinPaths>>;
323
+ };
324
+ export declare type AvpAnalyticsModelFilter = {
325
+ __typename?: 'AVPAnalyticsModelFilter';
326
+ columnName: Scalars['String']['output'];
327
+ };
328
+ export declare type AvpAnalyticsModelMetadata = {
329
+ __typename?: 'AVPAnalyticsModelMetadata';
330
+ createdAt: Scalars['DateTime']['output'];
331
+ createdBy: Scalars['String']['output'];
332
+ currentUserPermissions: Array<AvpAnalyticsModelPermission>;
333
+ everPublished?: Maybe<Scalars['Boolean']['output']>;
334
+ hasUnpublishedChanges?: Maybe<Scalars['Boolean']['output']>;
335
+ isStarredByCurrentUser?: Maybe<Scalars['Boolean']['output']>;
336
+ labels?: Maybe<Array<Scalars['String']['output']>>;
337
+ lastPublishedVersion?: Maybe<Scalars['Int']['output']>;
338
+ linkedMetrics?: Maybe<Array<AvpAnalyticsMetric>>;
339
+ linkedModels?: Maybe<Array<AvpAnalyticsModel>>;
340
+ templateId?: Maybe<Scalars['String']['output']>;
341
+ updatedAt: Scalars['DateTime']['output'];
342
+ updatedBy: Scalars['String']['output'];
343
+ };
344
+ export declare enum AvpAnalyticsModelPermission {
345
+ Edit = "EDIT",
346
+ ReadOnly = "READ_ONLY"
347
+ }
213
348
  export declare enum AvpAnalyticsModelStatus {
214
349
  Active = "ACTIVE",
215
350
  Draft = "DRAFT"
@@ -233,20 +368,52 @@ export declare enum AvpAnalyticsModelType {
233
368
  UserDefined = "USER_DEFINED"
234
369
  }
235
370
  export declare type AvpAnalyticsPaginationRequest = {
236
- page?: InputMaybe<Scalars['String']['input']>;
237
- pageSize: Scalars['Int']['input'];
371
+ after?: InputMaybe<Scalars['String']['input']>;
372
+ before?: InputMaybe<Scalars['String']['input']>;
373
+ first?: InputMaybe<Scalars['Int']['input']>;
374
+ last?: InputMaybe<Scalars['Int']['input']>;
375
+ pageNumber?: InputMaybe<Scalars['Int']['input']>;
376
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
238
377
  };
239
378
  export declare type AvpAnalyticsPaginationResponse = {
240
379
  __typename?: 'AVPAnalyticsPaginationResponse';
241
- currentPageSize: Scalars['Int']['output'];
242
- isLastPage: Scalars['Boolean']['output'];
243
- nextPage?: Maybe<Scalars['String']['output']>;
244
- totalPages?: Maybe<Scalars['Int']['output']>;
380
+ endCursor?: Maybe<Scalars['String']['output']>;
381
+ hasNextPage: Scalars['Boolean']['output'];
382
+ hasPreviousPage: Scalars['Boolean']['output'];
383
+ startCursor?: Maybe<Scalars['String']['output']>;
245
384
  };
246
385
  export declare enum AvpAnalyticsProductType {
247
386
  Assets = "ASSETS",
248
387
  Jira = "JIRA"
249
388
  }
389
+ export declare type AvpAnalyticsSearchRequest = {
390
+ searchQuery: Scalars['String']['input'];
391
+ };
392
+ export declare type AvpAnalyticsSimpleColumn = AvpAnalyticsColumn & {
393
+ __typename?: 'AVPAnalyticsSimpleColumn';
394
+ id: Scalars['ID']['output'];
395
+ isHidden: Scalars['Boolean']['output'];
396
+ name: Scalars['String']['output'];
397
+ sourceColumnId?: Maybe<Scalars['ID']['output']>;
398
+ sourceModelId?: Maybe<Scalars['ID']['output']>;
399
+ type: AvpAnalyticsColumnType;
400
+ };
401
+ export declare enum AvpAnalyticsSortKey {
402
+ ModelCreatedAt = "MODEL_CREATED_AT",
403
+ ModelCreatedBy = "MODEL_CREATED_BY",
404
+ ModelName = "MODEL_NAME",
405
+ ModelStarred = "MODEL_STARRED",
406
+ ModelStatus = "MODEL_STATUS",
407
+ ModelUpdatedAt = "MODEL_UPDATED_AT"
408
+ }
409
+ export declare type AvpAnalyticsSortRequest = {
410
+ sortKey: AvpAnalyticsSortKey;
411
+ sortType: AvpAnalyticsSortType;
412
+ };
413
+ export declare enum AvpAnalyticsSortType {
414
+ Asc = "ASC",
415
+ Desc = "DESC"
416
+ }
250
417
  export declare enum AvpCanvasRowHeight {
251
418
  Large = "large",
252
419
  Medium = "medium",
@@ -278,12 +445,16 @@ export declare type AvpChartConfig = {
278
445
  clientSettings?: Maybe<AvpChartClientSettings>;
279
446
  createdAt?: Maybe<Scalars['String']['output']>;
280
447
  creator?: Maybe<Scalars['String']['output']>;
448
+ dataFetchStrategy?: Maybe<AvpDataFetchStrategy>;
281
449
  settings?: Maybe<Array<AvpChartSetting>>;
282
450
  updatedAt?: Maybe<Scalars['String']['output']>;
451
+ vizConfig?: Maybe<AvpVizConfig>;
283
452
  };
284
453
  export declare type AvpChartConfigInput = {
285
454
  clientSettings?: InputMaybe<AvpChartClientSettingsInput>;
455
+ dataFetchStrategy?: InputMaybe<AvpDataFetchStrategy>;
286
456
  settings?: InputMaybe<Array<AvpChartSettingInput>>;
457
+ vizConfig?: InputMaybe<AvpVizConfigInput>;
287
458
  };
288
459
  export declare type AvpChartInput = {
289
460
  chartConfig?: InputMaybe<AvpChartConfigInput>;
@@ -699,6 +870,10 @@ export declare type AvpDashboardTemplateInput = {
699
870
  templatePlaceholderReplacements?: InputMaybe<Array<AvpTemplatePlaceholderReplacement>>;
700
871
  templateVersion?: InputMaybe<Scalars['Int']['input']>;
701
872
  };
873
+ export declare enum AvpDataFetchStrategy {
874
+ Dynamic = "DYNAMIC",
875
+ Static = "STATIC"
876
+ }
702
877
  export declare type AvpDatasourceLocator = {
703
878
  __typename?: 'AVPDatasourceLocator';
704
879
  cloudId?: Maybe<Scalars['String']['output']>;
@@ -1248,6 +1423,15 @@ export declare type AvpVariableInput = {
1248
1423
  metadata?: InputMaybe<Scalars['String']['input']>;
1249
1424
  name: Scalars['String']['input'];
1250
1425
  };
1426
+ export declare type AvpVizConfig = {
1427
+ __typename?: 'AVPVizConfig';
1428
+ accessors?: Maybe<Scalars['JSON']['output']>;
1429
+ data: Array<Array<Maybe<Scalars['JSON']['output']>>>;
1430
+ };
1431
+ export declare type AvpVizConfigInput = {
1432
+ accessors?: InputMaybe<Scalars['JSON']['input']>;
1433
+ data: Array<Array<InputMaybe<Scalars['JSON']['input']>>>;
1434
+ };
1251
1435
  export declare enum AcceptableResponse {
1252
1436
  False = "FALSE",
1253
1437
  NotApplicable = "NOT_APPLICABLE",
@@ -4264,6 +4448,7 @@ export declare type AgentStudioUpdateAgentPermissionInput = {
4264
4448
  export declare type AgentStudioUpdateAgentPermissionPayload = Payload & {
4265
4449
  __typename?: 'AgentStudioUpdateAgentPermissionPayload';
4266
4450
  errors?: Maybe<Array<MutationError>>;
4451
+ etag?: Maybe<Scalars['String']['output']>;
4267
4452
  success: Scalars['Boolean']['output'];
4268
4453
  users?: Maybe<Array<Maybe<User>>>;
4269
4454
  };
@@ -4333,6 +4518,7 @@ export declare type AgentStudioUpdateScenarioPayload = Payload & {
4333
4518
  export declare type AgentStudioUpdateUseAgentPermissionModePayload = Payload & {
4334
4519
  __typename?: 'AgentStudioUpdateUseAgentPermissionModePayload';
4335
4520
  errors?: Maybe<Array<MutationError>>;
4521
+ etag?: Maybe<Scalars['String']['output']>;
4336
4522
  success: Scalars['Boolean']['output'];
4337
4523
  };
4338
4524
  export declare type AgentStudioUploadBatchEvaluationDatasetInput = {
@@ -4793,6 +4979,7 @@ export declare enum AnalyticsEventName {
4793
4979
  PageUpdated = "page_updated",
4794
4980
  PageViewed = "page_viewed",
4795
4981
  PubliclinkPageViewed = "publiclink_page_viewed",
4982
+ ReactionCreated = "reaction_created",
4796
4983
  SpaceAnalyticsViewed = "spaceAnalytics_viewed",
4797
4984
  TeamCalendarsViewed = "teamCalendars_viewed",
4798
4985
  WhiteboardCreated = "whiteboard_created",
@@ -5435,7 +5622,6 @@ export declare type AppInstallationInput = {
5435
5622
  licenseOverride?: InputMaybe<LicenseOverrideState>;
5436
5623
  overrides?: InputMaybe<EcosystemAppInstallationOverridesInput>;
5437
5624
  provisionRequestId?: InputMaybe<Scalars['ID']['input']>;
5438
- recoveryMode?: InputMaybe<EcosystemInstallationRecoveryMode>;
5439
5625
  versionId?: InputMaybe<Scalars['ID']['input']>;
5440
5626
  };
5441
5627
  export declare type AppInstallationLicense = {
@@ -6452,14 +6638,19 @@ export declare type ArjHierarchyConfigurationLevel = {
6452
6638
  issueTypes?: Maybe<Array<Scalars['String']['output']>>;
6453
6639
  title: Scalars['String']['output'];
6454
6640
  };
6455
- export declare type AssetsAriAttributeOnObject = {
6641
+ export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
6456
6642
  __typename?: 'AssetsARIAttributeOnObject';
6457
6643
  attribute?: Maybe<AssetsObjectTypeAttribute>;
6458
6644
  id: Scalars['ID']['output'];
6459
- values?: Maybe<Array<AssetsAriAttributeValue>>;
6645
+ name: Scalars['String']['output'];
6646
+ value?: Maybe<Array<AssetsAriAttributeValue>>;
6460
6647
  };
6461
6648
  export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CustomerUser | IdentityGroup | TeamV2;
6462
- export declare type AssetsAttributeOnObject = AssetsAriAttributeOnObject | AssetsBooleanAttributeOnObject | AssetsDateAttributeOnObject | AssetsDatetimeAttributeOnObject | AssetsEmailAttributeOnObject | AssetsFloatAttributeOnObject | AssetsGroupAttributeOnObject | AssetsIpAddressAttributeOnObject | AssetsIntegerAttributeOnObject | AssetsObjectReferenceAttributeOnObject | AssetsSelectAttributeOnObject | AssetsSpaceAttributeOnObject | AssetsStatusAttributeOnObject | AssetsTagAttributeOnObject | AssetsTextAttributeOnObject | AssetsTextareaAttributeOnObject | AssetsUrlAttributeOnObject | AssetsUserAttributeOnObject;
6649
+ export declare type AssetsAttributeOnObject = {
6650
+ attribute?: Maybe<AssetsObjectTypeAttribute>;
6651
+ id: Scalars['ID']['output'];
6652
+ name: Scalars['String']['output'];
6653
+ };
6463
6654
  export declare type AssetsAvatar = {
6464
6655
  __typename?: 'AssetsAvatar';
6465
6656
  url16?: Maybe<Scalars['String']['output']>;
@@ -6468,10 +6659,17 @@ export declare type AssetsAvatar = {
6468
6659
  url144?: Maybe<Scalars['String']['output']>;
6469
6660
  url288?: Maybe<Scalars['String']['output']>;
6470
6661
  };
6471
- export declare type AssetsBooleanAttributeOnObject = {
6662
+ export declare type AssetsBooleanAttributeOnObject = AssetsAttributeOnObject & {
6472
6663
  __typename?: 'AssetsBooleanAttributeOnObject';
6473
6664
  attribute?: Maybe<AssetsObjectTypeAttribute>;
6474
6665
  id: Scalars['ID']['output'];
6666
+ name: Scalars['String']['output'];
6667
+ value?: Maybe<Scalars['Boolean']['output']>;
6668
+ values: Array<AssetsBooleanAttributeValue>;
6669
+ };
6670
+ export declare type AssetsBooleanAttributeValue = {
6671
+ __typename?: 'AssetsBooleanAttributeValue';
6672
+ displayValue: Scalars['String']['output'];
6475
6673
  value?: Maybe<Scalars['Boolean']['output']>;
6476
6674
  };
6477
6675
  export declare type AssetsDmAdapter = {
@@ -8559,45 +8757,88 @@ export declare type AssetsDmUpdateDefaultCleansingRuleResponse = {
8559
8757
  isSuccessful: Scalars['Boolean']['output'];
8560
8758
  message?: Maybe<Scalars['String']['output']>;
8561
8759
  };
8562
- export declare type AssetsDateAttributeOnObject = {
8760
+ export declare type AssetsDateAttributeOnObject = AssetsAttributeOnObject & {
8563
8761
  __typename?: 'AssetsDateAttributeOnObject';
8564
8762
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8565
8763
  id: Scalars['ID']['output'];
8764
+ name: Scalars['String']['output'];
8566
8765
  value?: Maybe<Scalars['String']['output']>;
8766
+ values: Array<AssetsDateAttributeValue>;
8767
+ };
8768
+ export declare type AssetsDateAttributeValue = {
8769
+ __typename?: 'AssetsDateAttributeValue';
8770
+ displayValue: Scalars['String']['output'];
8567
8771
  };
8568
- export declare type AssetsDatetimeAttributeOnObject = {
8772
+ export declare type AssetsDatetimeAttributeOnObject = AssetsAttributeOnObject & {
8569
8773
  __typename?: 'AssetsDatetimeAttributeOnObject';
8570
8774
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8571
8775
  id: Scalars['ID']['output'];
8776
+ name: Scalars['String']['output'];
8777
+ value?: Maybe<Scalars['DateTime']['output']>;
8778
+ values: Array<AssetsDatetimeAttributeValue>;
8779
+ };
8780
+ export declare type AssetsDatetimeAttributeValue = {
8781
+ __typename?: 'AssetsDatetimeAttributeValue';
8782
+ displayValue: Scalars['String']['output'];
8572
8783
  value?: Maybe<Scalars['DateTime']['output']>;
8573
8784
  };
8574
- export declare type AssetsEmailAttributeOnObject = {
8785
+ export declare type AssetsEmailAttributeOnObject = AssetsAttributeOnObject & {
8575
8786
  __typename?: 'AssetsEmailAttributeOnObject';
8576
8787
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8577
8788
  id: Scalars['ID']['output'];
8789
+ name: Scalars['String']['output'];
8578
8790
  value?: Maybe<Array<Scalars['String']['output']>>;
8791
+ values: Array<AssetsEmailAttributeValue>;
8579
8792
  };
8580
- export declare type AssetsFloatAttributeOnObject = {
8793
+ export declare type AssetsEmailAttributeValue = {
8794
+ __typename?: 'AssetsEmailAttributeValue';
8795
+ displayValue: Scalars['String']['output'];
8796
+ value?: Maybe<Scalars['String']['output']>;
8797
+ };
8798
+ export declare type AssetsFloatAttributeOnObject = AssetsAttributeOnObject & {
8581
8799
  __typename?: 'AssetsFloatAttributeOnObject';
8582
8800
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8583
8801
  id: Scalars['ID']['output'];
8802
+ name: Scalars['String']['output'];
8584
8803
  value?: Maybe<Scalars['Float']['output']>;
8804
+ values: Array<AssetsFloatAttributeValue>;
8585
8805
  };
8586
- export declare type AssetsGroupAttributeOnObject = {
8806
+ export declare type AssetsFloatAttributeValue = {
8807
+ __typename?: 'AssetsFloatAttributeValue';
8808
+ displayValue: Scalars['String']['output'];
8809
+ value?: Maybe<Scalars['Float']['output']>;
8810
+ };
8811
+ export declare type AssetsGroupAttributeOnObject = AssetsAttributeOnObject & {
8587
8812
  __typename?: 'AssetsGroupAttributeOnObject';
8588
8813
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8589
8814
  id: Scalars['ID']['output'];
8815
+ name: Scalars['String']['output'];
8590
8816
  value?: Maybe<Array<AssetsGroupAttributeValue>>;
8817
+ values: Array<AssetsGroupAttributeValue>;
8591
8818
  };
8592
8819
  export declare type AssetsGroupAttributeValue = {
8593
8820
  __typename?: 'AssetsGroupAttributeValue';
8594
8821
  avatarUrl?: Maybe<Scalars['String']['output']>;
8822
+ displayValue: Scalars['String']['output'];
8823
+ name?: Maybe<Scalars['String']['output']>;
8824
+ value?: Maybe<AssetsGroupValueData>;
8825
+ };
8826
+ export declare type AssetsGroupValueData = {
8827
+ __typename?: 'AssetsGroupValueData';
8828
+ avatarUrl?: Maybe<Scalars['String']['output']>;
8595
8829
  name?: Maybe<Scalars['String']['output']>;
8596
8830
  };
8597
- export declare type AssetsIpAddressAttributeOnObject = {
8831
+ export declare type AssetsIpAddressAttributeOnObject = AssetsAttributeOnObject & {
8598
8832
  __typename?: 'AssetsIPAddressAttributeOnObject';
8599
8833
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8600
8834
  id: Scalars['ID']['output'];
8835
+ name: Scalars['String']['output'];
8836
+ value?: Maybe<Scalars['String']['output']>;
8837
+ values: Array<AssetsIpAddressAttributeValue>;
8838
+ };
8839
+ export declare type AssetsIpAddressAttributeValue = {
8840
+ __typename?: 'AssetsIPAddressAttributeValue';
8841
+ displayValue: Scalars['String']['output'];
8601
8842
  value?: Maybe<Scalars['String']['output']>;
8602
8843
  };
8603
8844
  export declare type AssetsIcon = {
@@ -8606,10 +8847,17 @@ export declare type AssetsIcon = {
8606
8847
  url16?: Maybe<Scalars['String']['output']>;
8607
8848
  url48?: Maybe<Scalars['String']['output']>;
8608
8849
  };
8609
- export declare type AssetsIntegerAttributeOnObject = {
8850
+ export declare type AssetsIntegerAttributeOnObject = AssetsAttributeOnObject & {
8610
8851
  __typename?: 'AssetsIntegerAttributeOnObject';
8611
8852
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8612
8853
  id: Scalars['ID']['output'];
8854
+ name: Scalars['String']['output'];
8855
+ value?: Maybe<Scalars['Int']['output']>;
8856
+ values: Array<AssetsIntegerAttributeValue>;
8857
+ };
8858
+ export declare type AssetsIntegerAttributeValue = {
8859
+ __typename?: 'AssetsIntegerAttributeValue';
8860
+ displayValue: Scalars['String']['output'];
8613
8861
  value?: Maybe<Scalars['Int']['output']>;
8614
8862
  };
8615
8863
  export declare type AssetsLinks = {
@@ -8661,11 +8909,18 @@ export declare type AssetsObjectNode = {
8661
8909
  export declare type AssetsObjectNodeAttributesArgs = {
8662
8910
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
8663
8911
  };
8664
- export declare type AssetsObjectReferenceAttributeOnObject = {
8912
+ export declare type AssetsObjectReferenceAttributeOnObject = AssetsAttributeOnObject & {
8665
8913
  __typename?: 'AssetsObjectReferenceAttributeOnObject';
8666
8914
  attribute?: Maybe<AssetsObjectAttribute>;
8667
8915
  id: Scalars['ID']['output'];
8916
+ name: Scalars['String']['output'];
8668
8917
  value?: Maybe<Array<AssetsObjectNode>>;
8918
+ values: Array<AssetsObjectReferenceAttributeValue>;
8919
+ };
8920
+ export declare type AssetsObjectReferenceAttributeValue = {
8921
+ __typename?: 'AssetsObjectReferenceAttributeValue';
8922
+ displayValue: Scalars['String']['output'];
8923
+ value?: Maybe<AssetsObjectNode>;
8669
8924
  };
8670
8925
  export declare type AssetsObjectType = Node & {
8671
8926
  __typename?: 'AssetsObjectType';
@@ -8700,11 +8955,18 @@ export declare type AssetsSelectAttribute = AssetsObjectTypeAttribute & {
8700
8955
  name?: Maybe<Scalars['String']['output']>;
8701
8956
  options?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
8702
8957
  };
8703
- export declare type AssetsSelectAttributeOnObject = {
8958
+ export declare type AssetsSelectAttributeOnObject = AssetsAttributeOnObject & {
8704
8959
  __typename?: 'AssetsSelectAttributeOnObject';
8705
8960
  attribute?: Maybe<AssetsSelectAttribute>;
8706
8961
  id: Scalars['ID']['output'];
8962
+ name: Scalars['String']['output'];
8707
8963
  value?: Maybe<Array<Scalars['String']['output']>>;
8964
+ values: Array<AssetsSelectAttributeValue>;
8965
+ };
8966
+ export declare type AssetsSelectAttributeValue = {
8967
+ __typename?: 'AssetsSelectAttributeValue';
8968
+ displayValue: Scalars['String']['output'];
8969
+ value?: Maybe<Scalars['String']['output']>;
8708
8970
  };
8709
8971
  export declare type AssetsServiceObject = AssetsObjectNode & Node & {
8710
8972
  __typename?: 'AssetsServiceObject';
@@ -8727,15 +8989,26 @@ export declare type AssetsServiceObject = AssetsObjectNode & Node & {
8727
8989
  export declare type AssetsServiceObjectAttributesArgs = {
8728
8990
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
8729
8991
  };
8730
- export declare type AssetsSpaceAttributeOnObject = {
8992
+ export declare type AssetsSpaceAttributeOnObject = AssetsAttributeOnObject & {
8731
8993
  __typename?: 'AssetsSpaceAttributeOnObject';
8732
8994
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8733
8995
  id: Scalars['ID']['output'];
8996
+ name: Scalars['String']['output'];
8734
8997
  value?: Maybe<Array<AssetsSpaceAttributeValue>>;
8998
+ values: Array<AssetsSpaceAttributeValue>;
8735
8999
  };
8736
9000
  export declare type AssetsSpaceAttributeValue = {
8737
9001
  __typename?: 'AssetsSpaceAttributeValue';
8738
9002
  avatarUrl?: Maybe<Scalars['String']['output']>;
9003
+ displayValue: Scalars['String']['output'];
9004
+ id: Scalars['ID']['output'];
9005
+ key?: Maybe<Scalars['String']['output']>;
9006
+ name?: Maybe<Scalars['String']['output']>;
9007
+ value?: Maybe<AssetsSpaceValueData>;
9008
+ };
9009
+ export declare type AssetsSpaceValueData = {
9010
+ __typename?: 'AssetsSpaceValueData';
9011
+ avatarUrl?: Maybe<Scalars['String']['output']>;
8739
9012
  id: Scalars['ID']['output'];
8740
9013
  key?: Maybe<Scalars['String']['output']>;
8741
9014
  name?: Maybe<Scalars['String']['output']>;
@@ -8746,11 +9019,18 @@ export declare type AssetsStatusAttribute = AssetsObjectTypeAttribute & {
8746
9019
  id: Scalars['ID']['output'];
8747
9020
  name?: Maybe<Scalars['String']['output']>;
8748
9021
  };
8749
- export declare type AssetsStatusAttributeOnObject = {
9022
+ export declare type AssetsStatusAttributeOnObject = AssetsAttributeOnObject & {
8750
9023
  __typename?: 'AssetsStatusAttributeOnObject';
8751
9024
  attribute?: Maybe<AssetsStatusAttribute>;
8752
9025
  id: Scalars['ID']['output'];
9026
+ name: Scalars['String']['output'];
8753
9027
  value?: Maybe<Array<AssetsStatusType>>;
9028
+ values: Array<AssetsStatusAttributeValue>;
9029
+ };
9030
+ export declare type AssetsStatusAttributeValue = {
9031
+ __typename?: 'AssetsStatusAttributeValue';
9032
+ displayValue: Scalars['String']['output'];
9033
+ value?: Maybe<AssetsStatusType>;
8754
9034
  };
8755
9035
  export declare enum AssetsStatusCategory {
8756
9036
  Active = "ACTIVE",
@@ -8764,29 +9044,50 @@ export declare type AssetsStatusType = {
8764
9044
  id: Scalars['ID']['output'];
8765
9045
  name?: Maybe<Scalars['String']['output']>;
8766
9046
  };
8767
- export declare type AssetsTagAttributeOnObject = {
9047
+ export declare type AssetsTagAttributeOnObject = AssetsAttributeOnObject & {
8768
9048
  __typename?: 'AssetsTagAttributeOnObject';
8769
9049
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8770
9050
  id: Scalars['ID']['output'];
9051
+ name: Scalars['String']['output'];
8771
9052
  value?: Maybe<Array<Scalars['String']['output']>>;
8772
9053
  };
8773
- export declare type AssetsTextAttributeOnObject = {
9054
+ export declare type AssetsTextAttributeOnObject = AssetsAttributeOnObject & {
8774
9055
  __typename?: 'AssetsTextAttributeOnObject';
8775
9056
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8776
9057
  id: Scalars['ID']['output'];
9058
+ name: Scalars['String']['output'];
8777
9059
  value?: Maybe<Scalars['String']['output']>;
9060
+ values: Array<AssetsTextAttributeValue>;
8778
9061
  };
8779
- export declare type AssetsTextareaAttributeOnObject = {
9062
+ export declare type AssetsTextAttributeValue = {
9063
+ __typename?: 'AssetsTextAttributeValue';
9064
+ displayValue: Scalars['String']['output'];
9065
+ value?: Maybe<Scalars['String']['output']>;
9066
+ };
9067
+ export declare type AssetsTextareaAttributeOnObject = AssetsAttributeOnObject & {
8780
9068
  __typename?: 'AssetsTextareaAttributeOnObject';
8781
9069
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8782
9070
  id: Scalars['ID']['output'];
9071
+ name: Scalars['String']['output'];
9072
+ value?: Maybe<Scalars['String']['output']>;
9073
+ values: Array<AssetsTextareaAttributeValue>;
9074
+ };
9075
+ export declare type AssetsTextareaAttributeValue = {
9076
+ __typename?: 'AssetsTextareaAttributeValue';
9077
+ displayValue: Scalars['String']['output'];
8783
9078
  value?: Maybe<Scalars['String']['output']>;
8784
9079
  };
8785
- export declare type AssetsUrlAttributeOnObject = {
9080
+ export declare type AssetsUrlAttributeOnObject = AssetsAttributeOnObject & {
8786
9081
  __typename?: 'AssetsURLAttributeOnObject';
8787
9082
  attribute?: Maybe<AssetsObjectTypeAttribute>;
8788
9083
  id: Scalars['ID']['output'];
8789
- value?: Maybe<Scalars['String']['output']>;
9084
+ name: Scalars['String']['output'];
9085
+ value?: Maybe<Array<Scalars['String']['output']>>;
9086
+ values: Array<AssetsUrlAttributeValue>;
9087
+ };
9088
+ export declare type AssetsUrlAttributeValue = {
9089
+ __typename?: 'AssetsURLAttributeValue';
9090
+ displayValue: Scalars['String']['output'];
8790
9091
  };
8791
9092
  export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
8792
9093
  __typename?: 'AssetsUserAttribute';
@@ -8794,17 +9095,30 @@ export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
8794
9095
  name?: Maybe<Scalars['String']['output']>;
8795
9096
  userGroups?: Maybe<Array<AssetsGroupAttributeValue>>;
8796
9097
  };
8797
- export declare type AssetsUserAttributeOnObject = {
9098
+ export declare type AssetsUserAttributeOnObject = AssetsAttributeOnObject & {
8798
9099
  __typename?: 'AssetsUserAttributeOnObject';
8799
9100
  attribute?: Maybe<AssetsUserAttribute>;
8800
9101
  id: Scalars['ID']['output'];
9102
+ name: Scalars['String']['output'];
8801
9103
  value?: Maybe<Array<AssetsUserAttributeValue>>;
9104
+ values: Array<AssetsUserAttributeValue>;
8802
9105
  };
8803
9106
  export declare type AssetsUserAttributeValue = {
8804
9107
  __typename?: 'AssetsUserAttributeValue';
8805
9108
  avatarUrl?: Maybe<Scalars['String']['output']>;
8806
- id: Scalars['ID']['output'];
8807
- name: Scalars['String']['output'];
9109
+ displayValue: Scalars['String']['output'];
9110
+ id?: Maybe<Scalars['String']['output']>;
9111
+ name?: Maybe<Scalars['String']['output']>;
9112
+ value?: Maybe<AssetsUserValueData>;
9113
+ };
9114
+ export declare type AssetsUserValueData = {
9115
+ __typename?: 'AssetsUserValueData';
9116
+ avatarUrl?: Maybe<Scalars['String']['output']>;
9117
+ displayName?: Maybe<Scalars['String']['output']>;
9118
+ emailAddress?: Maybe<Scalars['String']['output']>;
9119
+ isDeleted?: Maybe<Scalars['Boolean']['output']>;
9120
+ key?: Maybe<Scalars['String']['output']>;
9121
+ name?: Maybe<Scalars['String']['output']>;
8808
9122
  };
8809
9123
  export declare type AssignIssueParentInput = {
8810
9124
  boardId: Scalars['ID']['input'];
@@ -9257,6 +9571,7 @@ export declare type BlockServiceReferenceError = {
9257
9571
  export declare type BlockServiceUpdateBlockInput = {
9258
9572
  blockAri: Scalars['String']['input'];
9259
9573
  content: Scalars['String']['input'];
9574
+ status?: InputMaybe<Scalars['String']['input']>;
9260
9575
  stepVersion?: InputMaybe<Scalars['Float']['input']>;
9261
9576
  };
9262
9577
  export declare type BlockServiceUpdateDocumentReferencesInput = {
@@ -29898,6 +30213,7 @@ export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
29898
30213
  ConfluenceInlineTasksRule = "CONFLUENCE_INLINE_TASKS_RULE",
29899
30214
  ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
29900
30215
  ConfluenceTaggedPageRule = "CONFLUENCE_TAGGED_PAGE_RULE",
30216
+ ConfluenceUpdatedPageRule = "CONFLUENCE_UPDATED_PAGE_RULE",
29901
30217
  JiraIssueRule = "JIRA_ISSUE_RULE",
29902
30218
  Llm = "LLM",
29903
30219
  LoomVideoRule = "LOOM_VIDEO_RULE",
@@ -30153,10 +30469,14 @@ export declare type CplsAddContributorWorkAssociationInput = {
30153
30469
  export declare type CplsAddContributorWorkAssociationPayload = Payload & {
30154
30470
  __typename?: 'CplsAddContributorWorkAssociationPayload';
30155
30471
  contributorWorkAssociations?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
30472
+ contributorWorkAssociationsByScope?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
30156
30473
  errors?: Maybe<Array<MutationError>>;
30157
30474
  success: Scalars['Boolean']['output'];
30158
30475
  workContributorAssociations?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
30159
30476
  };
30477
+ export declare type CplsAddContributorWorkAssociationPayloadContributorWorkAssociationsByScopeArgs = {
30478
+ scopeId: Scalars['ID']['input'];
30479
+ };
30160
30480
  export declare type CplsAddWorkScopeAssociationsInput = {
30161
30481
  cloudId: Scalars['ID']['input'];
30162
30482
  scopeId: Scalars['ID']['input'];
@@ -36849,10 +37169,6 @@ export declare type EcosystemInstallationOverrides = {
36849
37169
  key: EcosystemInstallationOverrideKeys;
36850
37170
  value: Scalars['Boolean']['input'];
36851
37171
  };
36852
- export declare enum EcosystemInstallationRecoveryMode {
36853
- FreshInstall = "FRESH_INSTALL",
36854
- RecoverPreviousInstall = "RECOVER_PREVIOUS_INSTALL"
36855
- }
36856
37172
  export declare enum EcosystemLicenseMode {
36857
37173
  UserAccess = "USER_ACCESS"
36858
37174
  }
@@ -41976,6 +42292,7 @@ export declare enum GraphIntegrationSkillColor {
41976
42292
  Green = "GREEN",
41977
42293
  Lime = "LIME",
41978
42294
  Magenta = "MAGENTA",
42295
+ Orange = "ORANGE",
41979
42296
  Purple = "PURPLE",
41980
42297
  Red = "RED",
41981
42298
  Teal = "TEAL",
@@ -44778,6 +45095,8 @@ export declare type GraphStore = {
44778
45095
  atlasProjectIsTrackedOnJiraEpicInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection>;
44779
45096
  atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
44780
45097
  atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
45098
+ atlasProjectLinksJiraSpace?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceConnection>;
45099
+ atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
44781
45100
  atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
44782
45101
  atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
44783
45102
  atlassianUserCreatedAtlassianGoalUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection>;
@@ -46118,6 +46437,22 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs =
46118
46437
  id: Scalars['ID']['input'];
46119
46438
  queryContext?: InputMaybe<Scalars['String']['input']>;
46120
46439
  };
46440
+ export declare type GraphStoreAtlasProjectLinksJiraSpaceArgs = {
46441
+ after?: InputMaybe<Scalars['String']['input']>;
46442
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
46443
+ first?: InputMaybe<Scalars['Int']['input']>;
46444
+ id: Scalars['ID']['input'];
46445
+ queryContext?: InputMaybe<Scalars['String']['input']>;
46446
+ sort?: InputMaybe<GraphStoreAtlasProjectLinksJiraSpaceSortInput>;
46447
+ };
46448
+ export declare type GraphStoreAtlasProjectLinksJiraSpaceInverseArgs = {
46449
+ after?: InputMaybe<Scalars['String']['input']>;
46450
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
46451
+ first?: InputMaybe<Scalars['Int']['input']>;
46452
+ id: Scalars['ID']['input'];
46453
+ queryContext?: InputMaybe<Scalars['String']['input']>;
46454
+ sort?: InputMaybe<GraphStoreAtlasProjectLinksJiraSpaceSortInput>;
46455
+ };
46121
46456
  export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemArgs = {
46122
46457
  after?: InputMaybe<Scalars['String']['input']>;
46123
46458
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -53492,6 +53827,9 @@ export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
53492
53827
  export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
53493
53828
  lastModified?: InputMaybe<GraphStoreSortInput>;
53494
53829
  };
53830
+ export declare type GraphStoreAtlasProjectLinksJiraSpaceSortInput = {
53831
+ lastModified?: InputMaybe<GraphStoreSortInput>;
53832
+ };
53495
53833
  export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
53496
53834
  lastModified?: InputMaybe<GraphStoreSortInput>;
53497
53835
  };
@@ -61796,6 +62134,34 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
61796
62134
  };
61797
62135
  export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion = TownsquareProject;
61798
62136
  export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion = JiraIssue;
62137
+ export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceConnection = HasPageInfo & {
62138
+ __typename?: 'GraphStoreSimplifiedAtlasProjectLinksJiraSpaceConnection';
62139
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceEdge>>>;
62140
+ pageInfo: PageInfo;
62141
+ };
62142
+ export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceEdge = {
62143
+ __typename?: 'GraphStoreSimplifiedAtlasProjectLinksJiraSpaceEdge';
62144
+ createdAt: Scalars['DateTime']['output'];
62145
+ cursor?: Maybe<Scalars['String']['output']>;
62146
+ id: Scalars['ID']['output'];
62147
+ lastUpdated: Scalars['DateTime']['output'];
62148
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceUnion>;
62149
+ };
62150
+ export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection = HasPageInfo & {
62151
+ __typename?: 'GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection';
62152
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseEdge>>>;
62153
+ pageInfo: PageInfo;
62154
+ };
62155
+ export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseEdge = {
62156
+ __typename?: 'GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseEdge';
62157
+ createdAt: Scalars['DateTime']['output'];
62158
+ cursor?: Maybe<Scalars['String']['output']>;
62159
+ id: Scalars['ID']['output'];
62160
+ lastUpdated: Scalars['DateTime']['output'];
62161
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseUnion>;
62162
+ };
62163
+ export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseUnion = TownsquareProject;
62164
+ export declare type GraphStoreSimplifiedAtlasProjectLinksJiraSpaceUnion = JiraProject;
61799
62165
  export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection = HasPageInfo & {
61800
62166
  __typename?: 'GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection';
61801
62167
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemEdge>>>;
@@ -72462,6 +72828,8 @@ export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput =
72462
72828
  createdAt?: InputMaybe<GraphStoreDateFilterInput>;
72463
72829
  fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
72464
72830
  lastModified?: InputMaybe<GraphStoreDateFilterInput>;
72831
+ relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
72832
+ relationship_rsvpStatus?: InputMaybe<GraphStoreUserAttendedCalendarEventRsvpStatusFilterInput>;
72465
72833
  toAti?: InputMaybe<GraphStoreAtiFilterInput>;
72466
72834
  to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
72467
72835
  to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
@@ -72470,10 +72838,24 @@ export declare type GraphStoreUserAttendedCalendarEventFilterInput = {
72470
72838
  and?: InputMaybe<Array<InputMaybe<GraphStoreUserAttendedCalendarEventConditionalFilterInput>>>;
72471
72839
  or?: InputMaybe<Array<InputMaybe<GraphStoreUserAttendedCalendarEventConditionalFilterInput>>>;
72472
72840
  };
72841
+ export declare enum GraphStoreUserAttendedCalendarEventRsvpStatus {
72842
+ Accepted = "ACCEPTED",
72843
+ Declined = "DECLINED",
72844
+ NotResponded = "NOT_RESPONDED",
72845
+ NotSet = "NOT_SET",
72846
+ Other = "OTHER",
72847
+ TentativelyAccepted = "TENTATIVELY_ACCEPTED"
72848
+ }
72849
+ export declare type GraphStoreUserAttendedCalendarEventRsvpStatusFilterInput = {
72850
+ is?: InputMaybe<Array<GraphStoreUserAttendedCalendarEventRsvpStatus>>;
72851
+ isNot?: InputMaybe<Array<GraphStoreUserAttendedCalendarEventRsvpStatus>>;
72852
+ };
72473
72853
  export declare type GraphStoreUserAttendedCalendarEventSortInput = {
72474
72854
  createdAt?: InputMaybe<GraphStoreSortInput>;
72475
72855
  fromAti?: InputMaybe<GraphStoreSortInput>;
72476
72856
  lastModified?: InputMaybe<GraphStoreSortInput>;
72857
+ relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
72858
+ relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
72477
72859
  toAti?: InputMaybe<GraphStoreSortInput>;
72478
72860
  to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
72479
72861
  to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
@@ -73446,6 +73828,8 @@ export declare type GraphStoreV2 = {
73446
73828
  jiraSpaceLinksAtlassianAutodevJobInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianAutodevJobInverseConnection>;
73447
73829
  jiraSpaceLinksAtlassianGoal?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianGoalConnection>;
73448
73830
  jiraSpaceLinksAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianGoalInverseConnection>;
73831
+ jiraSpaceLinksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectConnection>;
73832
+ jiraSpaceLinksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseConnection>;
73449
73833
  jiraSpaceLinksCompassComponent?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksCompassComponentConnection>;
73450
73834
  jiraSpaceLinksCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksCompassComponentInverseConnection>;
73451
73835
  jiraSpaceLinksDocumentEntity?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityConnection>;
@@ -77296,6 +77680,20 @@ export declare type GraphStoreV2JiraSpaceLinksAtlassianGoalInverseArgs = {
77296
77680
  id: Scalars['ID']['input'];
77297
77681
  sort?: InputMaybe<GraphStoreV2JiraSpaceLinksAtlassianGoalSortInput>;
77298
77682
  };
77683
+ export declare type GraphStoreV2JiraSpaceLinksAtlassianProjectArgs = {
77684
+ after?: InputMaybe<Scalars['String']['input']>;
77685
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
77686
+ first?: InputMaybe<Scalars['Int']['input']>;
77687
+ id: Scalars['ID']['input'];
77688
+ sort?: InputMaybe<GraphStoreV2JiraSpaceLinksAtlassianProjectSortInput>;
77689
+ };
77690
+ export declare type GraphStoreV2JiraSpaceLinksAtlassianProjectInverseArgs = {
77691
+ after?: InputMaybe<Scalars['String']['input']>;
77692
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
77693
+ first?: InputMaybe<Scalars['Int']['input']>;
77694
+ id: Scalars['ID']['input'];
77695
+ sort?: InputMaybe<GraphStoreV2JiraSpaceLinksAtlassianProjectSortInput>;
77696
+ };
77299
77697
  export declare type GraphStoreV2JiraSpaceLinksCompassComponentArgs = {
77300
77698
  after?: InputMaybe<Scalars['String']['input']>;
77301
77699
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -80050,6 +80448,8 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventConditi
80050
80448
  createdAt?: InputMaybe<GraphStoreDateFilterInput>;
80051
80449
  fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
80052
80450
  lastModified?: InputMaybe<GraphStoreDateFilterInput>;
80451
+ relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
80452
+ relationship_rsvpStatus?: InputMaybe<GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatusFilterInput>;
80053
80453
  toAti?: InputMaybe<GraphStoreAtiFilterInput>;
80054
80454
  to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
80055
80455
  to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
@@ -80058,10 +80458,24 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventFilterI
80058
80458
  and?: InputMaybe<Array<InputMaybe<GraphStoreV2ExternalUserAttendedExternalCalendarEventConditionalFilterInput>>>;
80059
80459
  or?: InputMaybe<Array<InputMaybe<GraphStoreV2ExternalUserAttendedExternalCalendarEventConditionalFilterInput>>>;
80060
80460
  };
80461
+ export declare enum GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatus {
80462
+ Accepted = "ACCEPTED",
80463
+ Declined = "DECLINED",
80464
+ NotResponded = "NOT_RESPONDED",
80465
+ NotSet = "NOT_SET",
80466
+ Other = "OTHER",
80467
+ TentativelyAccepted = "TENTATIVELY_ACCEPTED"
80468
+ }
80469
+ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatusFilterInput = {
80470
+ is?: InputMaybe<Array<GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatus>>;
80471
+ isNot?: InputMaybe<Array<GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatus>>;
80472
+ };
80061
80473
  export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventSortInput = {
80062
80474
  createdAt?: InputMaybe<GraphStoreSortInput>;
80063
80475
  fromAti?: InputMaybe<GraphStoreSortInput>;
80064
80476
  lastModified?: InputMaybe<GraphStoreSortInput>;
80477
+ relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
80478
+ relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
80065
80479
  toAti?: InputMaybe<GraphStoreSortInput>;
80066
80480
  to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
80067
80481
  to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
@@ -80408,6 +80822,9 @@ export declare type GraphStoreV2JiraSpaceLinksAtlassianGoalSortInput = {
80408
80822
  lastModified?: InputMaybe<GraphStoreSortInput>;
80409
80823
  toAti?: InputMaybe<GraphStoreSortInput>;
80410
80824
  };
80825
+ export declare type GraphStoreV2JiraSpaceLinksAtlassianProjectSortInput = {
80826
+ lastModified?: InputMaybe<GraphStoreSortInput>;
80827
+ };
80411
80828
  export declare type GraphStoreV2JiraSpaceLinksCompassComponentSortInput = {
80412
80829
  createdAt?: InputMaybe<GraphStoreSortInput>;
80413
80830
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -89230,6 +89647,34 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianGoalInverseEdge
89230
89647
  };
89231
89648
  export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianGoalInverseUnion = JiraProject;
89232
89649
  export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianGoalUnion = TownsquareGoal;
89650
+ export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectConnection = HasPageInfo & {
89651
+ __typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectConnection';
89652
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectEdge>>>;
89653
+ pageInfo: PageInfo;
89654
+ };
89655
+ export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectEdge = {
89656
+ __typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectEdge';
89657
+ createdAt: Scalars['DateTime']['output'];
89658
+ cursor?: Maybe<Scalars['String']['output']>;
89659
+ id: Scalars['ID']['output'];
89660
+ lastUpdated: Scalars['DateTime']['output'];
89661
+ node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectUnion>;
89662
+ };
89663
+ export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseConnection = HasPageInfo & {
89664
+ __typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseConnection';
89665
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseEdge>>>;
89666
+ pageInfo: PageInfo;
89667
+ };
89668
+ export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseEdge = {
89669
+ __typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseEdge';
89670
+ createdAt: Scalars['DateTime']['output'];
89671
+ cursor?: Maybe<Scalars['String']['output']>;
89672
+ id: Scalars['ID']['output'];
89673
+ lastUpdated: Scalars['DateTime']['output'];
89674
+ node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseUnion>;
89675
+ };
89676
+ export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectInverseUnion = JiraProject;
89677
+ export declare type GraphStoreV2SimplifiedJiraSpaceLinksAtlassianProjectUnion = TownsquareProject;
89233
89678
  export declare type GraphStoreV2SimplifiedJiraSpaceLinksCompassComponentConnection = HasPageInfo & HasTotal & {
89234
89679
  __typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksCompassComponentConnection';
89235
89680
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksCompassComponentEdge>>>;
@@ -92340,10 +92785,12 @@ export declare type GrowthUnifiedProfilePaidFeatureUsageResult = {
92340
92785
  export declare enum GrowthUnifiedProfileProduct {
92341
92786
  Compass = "compass",
92342
92787
  Confluence = "confluence",
92788
+ Csm = "csm",
92343
92789
  Jira = "jira",
92344
92790
  Jpd = "jpd",
92345
92791
  Jsm = "jsm",
92346
92792
  Jwm = "jwm",
92793
+ Servco = "servco",
92347
92794
  Trello = "trello"
92348
92795
  }
92349
92796
  export declare type GrowthUnifiedProfileProductDetails = {
@@ -96217,6 +96664,7 @@ export declare type JiraAiAgentSession = {
96217
96664
  agent?: Maybe<User>;
96218
96665
  conversationId: Scalars['ID']['output'];
96219
96666
  convoAiSession?: Maybe<ConvoAiAgentSession>;
96667
+ sortKey?: Maybe<Scalars['String']['output']>;
96220
96668
  };
96221
96669
  export declare type JiraAiAgentSessionConnection = {
96222
96670
  __typename?: 'JiraAiAgentSessionConnection';
@@ -96233,6 +96681,7 @@ export declare type JiraAiAgentSessionEnrichmentInput = {
96233
96681
  agentIdentityAccountId: Scalars['String']['input'];
96234
96682
  cloudId: Scalars['ID']['input'];
96235
96683
  conversationId: Scalars['String']['input'];
96684
+ sortKey?: InputMaybe<Scalars['String']['input']>;
96236
96685
  };
96237
96686
  export declare type JiraAiEnablementIssueInput = {
96238
96687
  issueId?: InputMaybe<Scalars['ID']['input']>;
@@ -97604,16 +98053,18 @@ export declare type JiraBacklogVersionData = {
97604
98053
  canCreateVersion?: Maybe<Scalars['Boolean']['output']>;
97605
98054
  versionsPerProject?: Maybe<Array<Maybe<JiraBacklogProjectVersions>>>;
97606
98055
  };
97607
- export declare type JiraBacklogView = {
98056
+ export declare type JiraBacklogView = JiraView & Node & {
97608
98057
  __typename?: 'JiraBacklogView';
97609
98058
  assigneeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
97610
98059
  cardDensity?: Maybe<JiraBacklogCardDensity>;
97611
98060
  cardFields?: Maybe<JiraBacklogViewCardFieldConnection>;
97612
98061
  cardGroupExpanded?: Maybe<Array<Scalars['String']['output']>>;
97613
98062
  cardListCollapsed?: Maybe<Array<Scalars['String']['output']>>;
98063
+ cardLists?: Maybe<JiraBacklogViewCardListConnection>;
97614
98064
  emptySprintsToggle?: Maybe<Scalars['Boolean']['output']>;
97615
98065
  epicFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
97616
98066
  epicPanelToggle?: Maybe<Scalars['Boolean']['output']>;
98067
+ error?: Maybe<QueryError>;
97617
98068
  id: Scalars['ID']['output'];
97618
98069
  issueTypeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
97619
98070
  labelFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
@@ -97621,6 +98072,7 @@ export declare type JiraBacklogView = {
97621
98072
  quickFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
97622
98073
  searchText?: Maybe<Scalars['String']['output']>;
97623
98074
  sprintCommitmentToggle?: Maybe<Scalars['Boolean']['output']>;
98075
+ strategy?: Maybe<JiraBacklogViewStrategy>;
97624
98076
  versionFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
97625
98077
  versionPanelToggle?: Maybe<Scalars['Boolean']['output']>;
97626
98078
  };
@@ -97632,6 +98084,10 @@ export declare type JiraBacklogViewCardFieldsArgs = {
97632
98084
  after?: InputMaybe<Scalars['String']['input']>;
97633
98085
  first?: InputMaybe<Scalars['Int']['input']>;
97634
98086
  };
98087
+ export declare type JiraBacklogViewCardListsArgs = {
98088
+ after?: InputMaybe<Scalars['String']['input']>;
98089
+ first?: InputMaybe<Scalars['Int']['input']>;
98090
+ };
97635
98091
  export declare type JiraBacklogViewEpicFiltersArgs = {
97636
98092
  after?: InputMaybe<Scalars['String']['input']>;
97637
98093
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -97672,12 +98128,48 @@ export declare type JiraBacklogViewCardFieldInput = {
97672
98128
  enabled: Scalars['Boolean']['input'];
97673
98129
  id: Scalars['ID']['input'];
97674
98130
  };
98131
+ export declare type JiraBacklogViewCardList = {
98132
+ id: Scalars['ID']['output'];
98133
+ issues?: Maybe<JiraIssueConnection>;
98134
+ };
98135
+ export declare type JiraBacklogViewCardListIssuesArgs = {
98136
+ after?: InputMaybe<Scalars['String']['input']>;
98137
+ first?: InputMaybe<Scalars['Int']['input']>;
98138
+ };
98139
+ export declare type JiraBacklogViewCardListConnection = {
98140
+ __typename?: 'JiraBacklogViewCardListConnection';
98141
+ edges?: Maybe<Array<Maybe<JiraBacklogViewCardListEdge>>>;
98142
+ errors?: Maybe<Array<QueryError>>;
98143
+ pageInfo?: Maybe<PageInfo>;
98144
+ totalCount?: Maybe<Scalars['Int']['output']>;
98145
+ };
98146
+ export declare type JiraBacklogViewCardListEdge = {
98147
+ __typename?: 'JiraBacklogViewCardListEdge';
98148
+ cursor?: Maybe<Scalars['String']['output']>;
98149
+ node?: Maybe<JiraBacklogViewCardList>;
98150
+ };
97675
98151
  export declare type JiraBacklogViewInput = {
97676
98152
  jiraBacklogViewQueryInput: JiraBacklogViewQueryInput;
97677
98153
  };
97678
98154
  export declare type JiraBacklogViewQueryInput = {
97679
98155
  viewId?: InputMaybe<Scalars['ID']['input']>;
97680
98156
  };
98157
+ export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & {
98158
+ __typename?: 'JiraBacklogViewSprintCardList';
98159
+ id: Scalars['ID']['output'];
98160
+ issues?: Maybe<JiraIssueConnection>;
98161
+ sprint?: Maybe<JiraSprint>;
98162
+ };
98163
+ export declare type JiraBacklogViewSprintCardListIssuesArgs = {
98164
+ after?: InputMaybe<Scalars['String']['input']>;
98165
+ first?: InputMaybe<Scalars['Int']['input']>;
98166
+ };
98167
+ export declare enum JiraBacklogViewStrategy {
98168
+ IssueList = "ISSUE_LIST",
98169
+ KanbanBacklog = "KANBAN_BACKLOG",
98170
+ None = "NONE",
98171
+ Sprint = "SPRINT"
98172
+ }
97681
98173
  export declare type JiraBacklogViewStringFilter = {
97682
98174
  __typename?: 'JiraBacklogViewStringFilter';
97683
98175
  id: Scalars['ID']['output'];
@@ -99351,7 +99843,8 @@ export declare enum JiraCollapsibleSection {
99351
99843
  Attachments = "ATTACHMENTS",
99352
99844
  ChildWorkItem = "CHILD_WORK_ITEM",
99353
99845
  Description = "DESCRIPTION",
99354
- LinkedWorkItem = "LINKED_WORK_ITEM"
99846
+ LinkedWorkItem = "LINKED_WORK_ITEM",
99847
+ UnifiedWorkSection = "UNIFIED_WORK_SECTION"
99355
99848
  }
99356
99849
  export declare type JiraColor = {
99357
99850
  __typename?: 'JiraColor';
@@ -105986,6 +106479,16 @@ export declare type JiraJourneyItemConfigurationInput = {
105986
106479
  statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
105987
106480
  workItemConfiguration?: InputMaybe<JiraJourneyWorkItemConfigurationInput>;
105988
106481
  };
106482
+ export declare type JiraJourneyItemCustomizationSettingsInput = {
106483
+ workItemCustomizationSettings?: InputMaybe<JiraJourneyWorkItemCustomizationSettingsInput>;
106484
+ };
106485
+ export declare type JiraJourneyItemUpdateCustomizationSettingsInput = {
106486
+ customizationSettings?: InputMaybe<JiraJourneyItemCustomizationSettingsInput>;
106487
+ etag: Scalars['String']['input'];
106488
+ journeyId: Scalars['ID']['input'];
106489
+ journeyItemId: Scalars['ID']['input'];
106490
+ journeyVersion: Scalars['Long']['input'];
106491
+ };
105989
106492
  export declare enum JiraJourneyItemUpdatedChannel {
105990
106493
  JourneyFrontend = "JOURNEY_FRONTEND",
105991
106494
  Rovo = "ROVO"
@@ -106112,6 +106615,7 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
106112
106615
  __typename?: 'JiraJourneyWorkItem';
106113
106616
  associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
106114
106617
  conditions?: Maybe<JiraJourneyItemConditions>;
106618
+ customizationSettings?: Maybe<JiraJourneyWorkItemCustomizationSettings>;
106115
106619
  fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
106116
106620
  id: Scalars['ID']['output'];
106117
106621
  issueType?: Maybe<JiraIssueType>;
@@ -106131,6 +106635,13 @@ export declare type JiraJourneyWorkItemConfigurationInput = {
106131
106635
  projectId?: InputMaybe<Scalars['ID']['input']>;
106132
106636
  requestTypeId?: InputMaybe<Scalars['ID']['input']>;
106133
106637
  };
106638
+ export declare type JiraJourneyWorkItemCustomizationSettings = {
106639
+ __typename?: 'JiraJourneyWorkItemCustomizationSettings';
106640
+ isImmutable?: Maybe<Scalars['Boolean']['output']>;
106641
+ };
106642
+ export declare type JiraJourneyWorkItemCustomizationSettingsInput = {
106643
+ isImmutable?: InputMaybe<Scalars['Boolean']['input']>;
106644
+ };
106134
106645
  export declare type JiraJourneyWorkItemFieldValueKeyValuePair = {
106135
106646
  __typename?: 'JiraJourneyWorkItemFieldValueKeyValuePair';
106136
106647
  key?: Maybe<Scalars['String']['output']>;
@@ -107664,6 +108175,7 @@ export declare type JiraMutation = {
107664
108175
  updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
107665
108176
  updateJiraJourneyCustomizationSettings?: Maybe<JiraUpdateJourneyConfigurationPayload>;
107666
108177
  updateJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
108178
+ updateJiraJourneyItemCustomizationSettings?: Maybe<JiraUpdateJourneyConfigurationPayload>;
107667
108179
  updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
107668
108180
  updateJiraJourneyParentIssueConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
107669
108181
  updateJiraJourneyParentTriggerConditions?: Maybe<JiraUpdateJourneyConfigurationPayload>;
@@ -108301,6 +108813,10 @@ export declare type JiraMutationUpdateJiraJourneyItemArgs = {
108301
108813
  cloudId: Scalars['ID']['input'];
108302
108814
  input: JiraUpdateJourneyItemInput;
108303
108815
  };
108816
+ export declare type JiraMutationUpdateJiraJourneyItemCustomizationSettingsArgs = {
108817
+ cloudId: Scalars['ID']['input'];
108818
+ input: JiraJourneyItemUpdateCustomizationSettingsInput;
108819
+ };
108304
108820
  export declare type JiraMutationUpdateJiraJourneyNameArgs = {
108305
108821
  cloudId: Scalars['ID']['input'];
108306
108822
  input: JiraUpdateJourneyNameInput;
@@ -115202,6 +115718,15 @@ export declare type JiraSetTimelineHighlightedReleasesPayload = Payload & {
115202
115718
  errors?: Maybe<Array<MutationError>>;
115203
115719
  success: Scalars['Boolean']['output'];
115204
115720
  };
115721
+ export declare type JiraSetTimelineViewHideWarningsInput = {
115722
+ hideWarnings: Scalars['Boolean']['input'];
115723
+ viewId: Scalars['ID']['input'];
115724
+ };
115725
+ export declare type JiraSetTimelineViewHideWarningsPayload = Payload & {
115726
+ __typename?: 'JiraSetTimelineViewHideWarningsPayload';
115727
+ errors?: Maybe<Array<MutationError>>;
115728
+ success: Scalars['Boolean']['output'];
115729
+ };
115205
115730
  export declare type JiraSetTimelineViewRangeModeInput = {
115206
115731
  rangeMode: JiraTimelineViewRangeMode;
115207
115732
  viewId: Scalars['ID']['input'];
@@ -116653,6 +117178,7 @@ export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSear
116653
117178
  hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
116654
117179
  id: Scalars['ID']['output'];
116655
117180
  isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
117181
+ isTimelineViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
116656
117182
  isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
116657
117183
  issues?: Maybe<JiraIssueConnection>;
116658
117184
  jql?: Maybe<Scalars['String']['output']>;
@@ -116679,6 +117205,9 @@ export declare type JiraTimelineViewFieldSetsArgs = {
116679
117205
  export declare type JiraTimelineViewHasDefaultFieldSetsArgs = {
116680
117206
  scope?: InputMaybe<JiraIssueSearchScope>;
116681
117207
  };
117208
+ export declare type JiraTimelineViewIsTimelineViewConfigModifiedArgs = {
117209
+ timelineViewSettings?: InputMaybe<JiraTimelineViewSettings>;
117210
+ };
116682
117211
  export declare type JiraTimelineViewIsViewConfigModifiedArgs = {
116683
117212
  settings?: InputMaybe<JiraIssueSearchSettings>;
116684
117213
  };
@@ -120658,10 +121187,30 @@ export declare type KitsuneChunkEdge = KitsuneEdge & {
120658
121187
  cursor: Scalars['String']['output'];
120659
121188
  node?: Maybe<KitsuneChunk>;
120660
121189
  };
121190
+ export declare enum KitsuneComparisonOperator {
121191
+ Contains = "CONTAINS",
121192
+ DoesNotContain = "DOES_NOT_CONTAIN",
121193
+ Is = "IS",
121194
+ IsBetween = "IS_BETWEEN",
121195
+ IsEmpty = "IS_EMPTY",
121196
+ IsFalse = "IS_FALSE",
121197
+ IsGreaterThan = "IS_GREATER_THAN",
121198
+ IsGreaterThanOrEqualTo = "IS_GREATER_THAN_OR_EQUAL_TO",
121199
+ IsLowerThan = "IS_LOWER_THAN",
121200
+ IsLowerThanOrEqualTo = "IS_LOWER_THAN_OR_EQUAL_TO",
121201
+ IsNot = "IS_NOT",
121202
+ IsNotEmpty = "IS_NOT_EMPTY",
121203
+ IsTrue = "IS_TRUE"
121204
+ }
120661
121205
  export declare type KitsuneConnection = {
120662
121206
  edges: Array<KitsuneEdge>;
120663
121207
  pageInfo: PageInfo;
120664
121208
  };
121209
+ export declare type KitsuneDateValue = {
121210
+ __typename?: 'KitsuneDateValue';
121211
+ _id: Scalars['ID']['output'];
121212
+ value: Scalars['Date']['output'];
121213
+ };
120665
121214
  export declare type KitsuneEdge = {
120666
121215
  cursor: Scalars['String']['output'];
120667
121216
  };
@@ -120731,9 +121280,43 @@ export declare enum KitsuneFieldType {
120731
121280
  Reporter = "REPORTER",
120732
121281
  SourceCategory = "SOURCE_CATEGORY"
120733
121282
  }
121283
+ export declare type KitsuneFieldValue = {
121284
+ __typename?: 'KitsuneFieldValue';
121285
+ _id: Scalars['ID']['output'];
121286
+ };
121287
+ export declare type KitsuneFilter = {
121288
+ __typename?: 'KitsuneFilter';
121289
+ comparisonOperator: KitsuneComparisonOperator;
121290
+ field: KitsuneField;
121291
+ logicalOperator: KitsuneLogicalOperator;
121292
+ values: Array<KitsuneFilterValue>;
121293
+ };
121294
+ export declare type KitsuneFilterInput = {
121295
+ comparisonOperator: KitsuneComparisonOperator;
121296
+ fieldId: Scalars['ID']['input'];
121297
+ logicalOperator: KitsuneLogicalOperator;
121298
+ values: KitsuneFilterValueInput;
121299
+ };
121300
+ export declare type KitsuneFilterValue = KitsuneDateValue | KitsuneFieldValue | KitsuneNumberValue | KitsuneSourceCategory | KitsuneTextValue;
121301
+ export declare type KitsuneFilterValueInput = {
121302
+ sourceCategoryId?: InputMaybe<Array<Scalars['ID']['input']>>;
121303
+ valueDate?: InputMaybe<Array<Scalars['Date']['input']>>;
121304
+ valueId?: InputMaybe<Array<Scalars['ID']['input']>>;
121305
+ valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
121306
+ valueText?: InputMaybe<Array<Scalars['String']['input']>>;
121307
+ };
121308
+ export declare enum KitsuneLogicalOperator {
121309
+ And = "AND",
121310
+ Or = "OR"
121311
+ }
120734
121312
  export declare type KitsuneNode = {
120735
121313
  _id: Scalars['ID']['output'];
120736
121314
  };
121315
+ export declare type KitsuneNumberValue = {
121316
+ __typename?: 'KitsuneNumberValue';
121317
+ _id: Scalars['ID']['output'];
121318
+ value: Scalars['Float']['output'];
121319
+ };
120737
121320
  export declare type KitsunePaginationInput = {
120738
121321
  after?: InputMaybe<Scalars['String']['input']>;
120739
121322
  before?: InputMaybe<Scalars['String']['input']>;
@@ -120748,6 +121331,15 @@ export declare type KitsuneSection = Node & {
120748
121331
  name: Scalars['String']['output'];
120749
121332
  updatedAt: Scalars['DateTime']['output'];
120750
121333
  };
121334
+ export declare type KitsuneSourceCategory = {
121335
+ __typename?: 'KitsuneSourceCategory';
121336
+ _id: Scalars['ID']['output'];
121337
+ type: KitsuneSourceCategoryType;
121338
+ };
121339
+ export declare enum KitsuneSourceCategoryType {
121340
+ FeedbackApp = "FEEDBACK_APP",
121341
+ Loom = "LOOM"
121342
+ }
120751
121343
  export declare type KitsuneSourceInput = {
120752
121344
  sourceWeb?: InputMaybe<KitsuneSourceInputWeb>;
120753
121345
  };
@@ -120777,17 +121369,29 @@ export declare type KitsuneSpaceEdge = KitsuneEdge & {
120777
121369
  cursor: Scalars['String']['output'];
120778
121370
  node?: Maybe<KitsuneSpace>;
120779
121371
  };
121372
+ export declare type KitsuneTextValue = {
121373
+ __typename?: 'KitsuneTextValue';
121374
+ _id: Scalars['ID']['output'];
121375
+ value: Scalars['String']['output'];
121376
+ };
120780
121377
  export declare type KitsuneView = Node & {
120781
121378
  __typename?: 'KitsuneView';
121379
+ config?: Maybe<KitsuneViewConfig>;
120782
121380
  description?: Maybe<Scalars['String']['output']>;
120783
121381
  id: Scalars['ID']['output'];
120784
121382
  name?: Maybe<Scalars['String']['output']>;
120785
121383
  };
120786
- export declare type KitsuneViewConfig = KitsuneNode & {
121384
+ export declare type KitsuneViewConfig = {
120787
121385
  __typename?: 'KitsuneViewConfig';
120788
- _id: Scalars['ID']['output'];
121386
+ filters: Array<KitsuneFilter>;
121387
+ logicalOperator: KitsuneLogicalOperator;
121388
+ query: Scalars['String']['output'];
120789
121389
  status: KitsuneViewConfigStatus;
120790
121390
  };
121391
+ export declare type KitsuneViewConfigInput = {
121392
+ filters: Array<KitsuneFilterInput>;
121393
+ logicalOperator: KitsuneLogicalOperator;
121394
+ };
120791
121395
  export declare enum KitsuneViewConfigStatus {
120792
121396
  Draft = "DRAFT",
120793
121397
  Published = "PUBLISHED",
@@ -123464,10 +124068,16 @@ export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
123464
124068
  };
123465
124069
  export declare type MarketplaceConsoleCreateAppSoftwareVersionError = MarketplaceConsoleError & {
123466
124070
  __typename?: 'MarketplaceConsoleCreateAppSoftwareVersionError';
124071
+ code?: Maybe<Scalars['String']['output']>;
124072
+ domain?: Maybe<Scalars['String']['output']>;
124073
+ genericMessage?: Maybe<Scalars['String']['output']>;
123467
124074
  id: Scalars['ID']['output'];
123468
124075
  message: Scalars['String']['output'];
123469
124076
  path?: Maybe<Scalars['String']['output']>;
124077
+ status?: Maybe<Scalars['String']['output']>;
123470
124078
  subCode?: Maybe<Scalars['String']['output']>;
124079
+ title?: Maybe<Scalars['String']['output']>;
124080
+ url?: Maybe<Scalars['String']['output']>;
123471
124081
  versionType?: Maybe<MarketplaceConsoleVersionType>;
123472
124082
  };
123473
124083
  export declare type MarketplaceConsoleCreateAppSoftwareVersionKnownError = {
@@ -123495,6 +124105,7 @@ export declare type MarketplaceConsoleCreatePrivateAppMutationOutput = Marketpla
123495
124105
  export declare type MarketplaceConsoleCreatePrivateAppMutationResponse = {
123496
124106
  __typename?: 'MarketplaceConsoleCreatePrivateAppMutationResponse';
123497
124107
  appId: Scalars['String']['output'];
124108
+ buildNumber: Scalars['Int']['output'];
123498
124109
  success: Scalars['Boolean']['output'];
123499
124110
  };
123500
124111
  export declare type MarketplaceConsoleCreatePrivateAppVersionError = MarketplaceConsoleError & {
@@ -124552,18 +125163,24 @@ export declare enum MarketplaceConsoleProductListingCurrentTaskStatus {
124552
125163
  Success = "SUCCESS"
124553
125164
  }
124554
125165
  export declare enum MarketplaceConsoleProductListingReleaseAppListingStatus {
125166
+ Archived = "ARCHIVED",
125167
+ Notassigned = "NOTASSIGNED",
124555
125168
  Private = "PRIVATE",
124556
125169
  Public = "PUBLIC",
125170
+ Readytolaunch = "READYTOLAUNCH",
124557
125171
  Rejected = "REJECTED",
124558
125172
  Submitted = "SUBMITTED"
124559
125173
  }
124560
125174
  export declare enum MarketplaceConsoleProductListingReleaseCurrentStatus {
124561
- Approved = "APPROVED",
124562
125175
  Failed = "FAILED",
124563
- Pending = "PENDING",
124564
125176
  Processing = "PROCESSING",
124565
- Rejected = "REJECTED"
125177
+ Success = "SUCCESS"
124566
125178
  }
125179
+ export declare type MarketplaceConsoleProductListingReleaseStatusDetail = {
125180
+ __typename?: 'MarketplaceConsoleProductListingReleaseStatusDetail';
125181
+ currentProductListingStatus: MarketplaceConsoleProductListingReleaseAppListingStatus;
125182
+ productListingStatusInProcess?: Maybe<MarketplaceConsoleProductListingReleaseAppListingStatus>;
125183
+ };
124567
125184
  export declare type MarketplaceConsoleProductListingReleaseStatusError = MarketplaceConsoleError & {
124568
125185
  __typename?: 'MarketplaceConsoleProductListingReleaseStatusError';
124569
125186
  code: Scalars['String']['output'];
@@ -124573,10 +125190,9 @@ export declare type MarketplaceConsoleProductListingReleaseStatusError = Marketp
124573
125190
  export declare type MarketplaceConsoleProductListingReleaseStatusResponse = MarketplaceConsoleProductListingReleaseStatusError | MarketplaceConsoleProductListingReleaseStatusSuccess;
124574
125191
  export declare type MarketplaceConsoleProductListingReleaseStatusSuccess = {
124575
125192
  __typename?: 'MarketplaceConsoleProductListingReleaseStatusSuccess';
124576
- appListingStatusInProcess?: Maybe<MarketplaceConsoleProductListingReleaseAppListingStatus>;
124577
- currentAppListingStatus: MarketplaceConsoleProductListingReleaseAppListingStatus;
124578
125193
  currentStatus: MarketplaceConsoleProductListingReleaseCurrentStatus;
124579
125194
  failureReason?: Maybe<Scalars['String']['output']>;
125195
+ productListing: MarketplaceConsoleProductListingReleaseStatusDetail;
124580
125196
  };
124581
125197
  export declare type MarketplaceConsoleProductListingTags = {
124582
125198
  __typename?: 'MarketplaceConsoleProductListingTags';
@@ -126330,6 +126946,7 @@ export declare type MercuryArchiveFocusAreaChange = MercuryChangeInterface & Nod
126330
126946
  createdBy?: Maybe<User>;
126331
126947
  createdDate: Scalars['DateTime']['output'];
126332
126948
  id: Scalars['ID']['output'];
126949
+ note?: Maybe<Scalars['String']['output']>;
126333
126950
  targetFocusArea?: Maybe<MercuryFocusArea>;
126334
126951
  updatedBy?: Maybe<User>;
126335
126952
  updatedDate: Scalars['DateTime']['output'];
@@ -126395,6 +127012,7 @@ export declare type MercuryChangeInterface = {
126395
127012
  createdBy?: Maybe<User>;
126396
127013
  createdDate: Scalars['DateTime']['output'];
126397
127014
  id: Scalars['ID']['output'];
127015
+ note?: Maybe<Scalars['String']['output']>;
126398
127016
  updatedBy?: Maybe<User>;
126399
127017
  updatedDate: Scalars['DateTime']['output'];
126400
127018
  };
@@ -126406,6 +127024,7 @@ export declare type MercuryChangeParentFocusAreaChange = MercuryChangeInterface
126406
127024
  createdDate: Scalars['DateTime']['output'];
126407
127025
  focusAreaId?: Maybe<MercuryFocusArea>;
126408
127026
  id: Scalars['ID']['output'];
127027
+ note?: Maybe<Scalars['String']['output']>;
126409
127028
  sourceFocusArea?: Maybe<MercuryFocusArea>;
126410
127029
  targetFocusArea?: Maybe<MercuryFocusArea>;
126411
127030
  updatedBy?: Maybe<User>;
@@ -126682,14 +127301,12 @@ export declare type MercuryCommentEdge = {
126682
127301
  };
126683
127302
  export declare type MercuryCostSubtype = Node & {
126684
127303
  __typename?: 'MercuryCostSubtype';
126685
- costType: MercuryCostType;
127304
+ costType?: Maybe<MercuryCostType>;
126686
127305
  createdBy?: Maybe<User>;
126687
127306
  createdDate?: Maybe<Scalars['String']['output']>;
126688
- description?: Maybe<Scalars['String']['output']>;
126689
127307
  id: Scalars['ID']['output'];
126690
- isDeletable?: Maybe<Scalars['Boolean']['output']>;
126691
- key: Scalars['String']['output'];
126692
127308
  name: Scalars['String']['output'];
127309
+ references?: Maybe<MercuryCostSubtypeReferences>;
126693
127310
  updatedBy?: Maybe<User>;
126694
127311
  updatedDate?: Maybe<Scalars['String']['output']>;
126695
127312
  };
@@ -126704,18 +127321,24 @@ export declare type MercuryCostSubtypeEdge = {
126704
127321
  cursor: Scalars['String']['output'];
126705
127322
  node?: Maybe<MercuryCostSubtype>;
126706
127323
  };
127324
+ export declare type MercuryCostSubtypeReferences = {
127325
+ __typename?: 'MercuryCostSubtypeReferences';
127326
+ count?: Maybe<Scalars['Int']['output']>;
127327
+ };
126707
127328
  export declare type MercuryCostSubtypeSort = {
126708
127329
  field: MercuryCostSubtypeSortField;
126709
127330
  order: SortOrder;
126710
127331
  };
126711
127332
  export declare enum MercuryCostSubtypeSortField {
126712
- Key = "KEY",
126713
127333
  Name = "NAME"
126714
127334
  }
126715
- export declare enum MercuryCostType {
126716
- Labor = "LABOR",
126717
- NonLabor = "NON_LABOR"
126718
- }
127335
+ export declare type MercuryCostType = {
127336
+ __typename?: 'MercuryCostType';
127337
+ displayName: Scalars['String']['output'];
127338
+ id: Scalars['ID']['output'];
127339
+ key: Scalars['String']['output'];
127340
+ order: Scalars['Int']['output'];
127341
+ };
126719
127342
  export declare type MercuryCreateBaseCustomFieldDefinitionInput = {
126720
127343
  description?: InputMaybe<Scalars['String']['input']>;
126721
127344
  name: Scalars['String']['input'];
@@ -126783,9 +127406,7 @@ export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
126783
127406
  };
126784
127407
  export declare type MercuryCreateCostSubtypeInput = {
126785
127408
  cloudId?: InputMaybe<Scalars['ID']['input']>;
126786
- costType: MercuryCostType;
126787
- description: Scalars['String']['input'];
126788
- key: Scalars['String']['input'];
127409
+ costTypeId: Scalars['ID']['input'];
126789
127410
  name: Scalars['String']['input'];
126790
127411
  };
126791
127412
  export declare type MercuryCreateCostSubtypePayload = Payload & {
@@ -126823,6 +127444,7 @@ export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node
126823
127444
  focusAreaOwner?: Maybe<User>;
126824
127445
  focusAreaType?: Maybe<Scalars['ID']['output']>;
126825
127446
  id: Scalars['ID']['output'];
127447
+ note?: Maybe<Scalars['String']['output']>;
126826
127448
  sourceFocusArea?: Maybe<MercuryFocusArea>;
126827
127449
  updatedBy?: Maybe<User>;
126828
127450
  updatedDate: Scalars['DateTime']['output'];
@@ -126875,9 +127497,7 @@ export declare type MercuryCreateFocusAreaStatusUpdatePayload = Payload & {
126875
127497
  success: Scalars['Boolean']['output'];
126876
127498
  };
126877
127499
  export declare type MercuryCreateInvestmentCategoryInput = {
126878
- description: Scalars['String']['input'];
126879
- investmentCategorySetId: Scalars['ID']['input'];
126880
- key: Scalars['String']['input'];
127500
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
126881
127501
  name: Scalars['String']['input'];
126882
127502
  };
126883
127503
  export declare type MercuryCreateInvestmentCategoryPayload = Payload & {
@@ -126886,16 +127506,6 @@ export declare type MercuryCreateInvestmentCategoryPayload = Payload & {
126886
127506
  errors?: Maybe<Array<MutationError>>;
126887
127507
  success: Scalars['Boolean']['output'];
126888
127508
  };
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
127509
  export declare type MercuryCreateMultiSelectCustomFieldDefinitionInput = {
126900
127510
  base: MercuryCreateBaseCustomFieldDefinitionInput;
126901
127511
  options: Array<MercuryCustomSelectFieldOptionInput>;
@@ -127208,14 +127818,6 @@ export declare type MercuryDeleteInvestmentCategoryPayload = Payload & {
127208
127818
  errors?: Maybe<Array<MutationError>>;
127209
127819
  success: Scalars['Boolean']['output'];
127210
127820
  };
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
127821
  export declare type MercuryDeletePortfolioFocusAreaLinkInput = {
127220
127822
  cloudId: Scalars['ID']['input'];
127221
127823
  focusAreaIds: Array<Scalars['ID']['input']>;
@@ -127500,6 +128102,7 @@ export declare enum MercuryFocusAreaHealthColor {
127500
128102
  }
127501
128103
  export declare type MercuryFocusAreaHierarchy = Node & {
127502
128104
  __typename?: 'MercuryFocusAreaHierarchy';
128105
+ focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
127503
128106
  hierarchyTypeKey?: Maybe<MercuryFocusAreaHierarchyTypeKey>;
127504
128107
  id: Scalars['ID']['output'];
127505
128108
  isDefault?: Maybe<Scalars['Boolean']['output']>;
@@ -127587,7 +128190,10 @@ export declare type MercuryFocusAreaLinks = {
127587
128190
  };
127588
128191
  export declare type MercuryFocusAreaNode = {
127589
128192
  __typename?: 'MercuryFocusAreaNode';
128193
+ childCount?: Maybe<Scalars['Int']['output']>;
128194
+ depth?: Maybe<Scalars['Int']['output']>;
127590
128195
  focusArea?: Maybe<MercuryFocusArea>;
128196
+ hasChildren?: Maybe<Scalars['Boolean']['output']>;
127591
128197
  id: Scalars['ID']['output'];
127592
128198
  };
127593
128199
  export declare enum MercuryFocusAreaPermission {
@@ -127726,6 +128332,7 @@ export declare type MercuryFocusAreaTargetDateInput = {
127726
128332
  export declare type MercuryFocusAreaType = {
127727
128333
  __typename?: 'MercuryFocusAreaType';
127728
128334
  ari: Scalars['String']['output'];
128335
+ focusAreaHierarchy?: Maybe<MercuryFocusAreaHierarchy>;
127729
128336
  hierarchyLevel: Scalars['Int']['output'];
127730
128337
  id: Scalars['ID']['output'];
127731
128338
  name: Scalars['String']['output'];
@@ -127762,7 +128369,12 @@ export declare type MercuryFocusAreaWorkContext = {
127762
128369
  __typename?: 'MercuryFocusAreaWorkContext';
127763
128370
  focusAreaLinkedWorkContext?: Maybe<Array<Maybe<MercuryFocusAreaLinkedWorkContextData>>>;
127764
128371
  };
128372
+ export declare enum MercuryForYouInsightType {
128373
+ Own = "OWN",
128374
+ Watch = "WATCH"
128375
+ }
127765
128376
  export declare type MercuryForYouInsightsFilter = {
128377
+ forYouInsightType?: InputMaybe<MercuryForYouInsightType>;
127766
128378
  insightType?: InputMaybe<MercuryInsightTypeEnum>;
127767
128379
  };
127768
128380
  export declare type MercuryFundChangeSummary = {
@@ -127811,7 +128423,6 @@ export declare type MercuryFundsMonthlySummary = {
127811
128423
  fiscalYear?: Maybe<Scalars['Int']['output']>;
127812
128424
  forecastAmountSummary?: Maybe<MercuryFundsAmountSummary>;
127813
128425
  investmentCategory?: Maybe<MercuryInvestmentCategory>;
127814
- investmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
127815
128426
  monthStartDate?: Maybe<Scalars['String']['output']>;
127816
128427
  };
127817
128428
  export declare type MercuryFundsMutationApi = {
@@ -127819,17 +128430,10 @@ export declare type MercuryFundsMutationApi = {
127819
128430
  createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
127820
128431
  createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
127821
128432
  createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
127822
- createInvestmentCategorySet?: Maybe<MercuryCreateInvestmentCategorySetPayload>;
127823
128433
  deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
127824
128434
  deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
127825
- deleteInvestmentCategorySet?: Maybe<MercuryDeleteInvestmentCategorySetPayload>;
127826
- updateCostSubtypeDescription?: Maybe<MercuryUpdateCostSubtypePayload>;
127827
- updateCostSubtypeKey?: Maybe<MercuryUpdateCostSubtypePayload>;
127828
128435
  updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
127829
- updateInvestmentCategoryDescription?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
127830
- updateInvestmentCategoryKey?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
127831
128436
  updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
127832
- updateInvestmentCategorySetName?: Maybe<MercuryUpdateInvestmentCategorySetPayload>;
127833
128437
  };
127834
128438
  export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
127835
128439
  input: MercuryCreateCostSubtypeInput;
@@ -127840,39 +128444,18 @@ export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs
127840
128444
  export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
127841
128445
  input: MercuryCreateInvestmentCategoryInput;
127842
128446
  };
127843
- export declare type MercuryFundsMutationApiCreateInvestmentCategorySetArgs = {
127844
- input: MercuryCreateInvestmentCategorySetInput;
127845
- };
127846
128447
  export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
127847
128448
  input: MercuryDeleteCostSubtypeInput;
127848
128449
  };
127849
128450
  export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
127850
128451
  input: MercuryDeleteInvestmentCategoryInput;
127851
128452
  };
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
128453
  export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
127862
128454
  input: MercuryUpdateCostSubtypeNameInput;
127863
128455
  };
127864
- export declare type MercuryFundsMutationApiUpdateInvestmentCategoryDescriptionArgs = {
127865
- input: MercuryUpdateInvestmentCategoryDescriptionInput;
127866
- };
127867
- export declare type MercuryFundsMutationApiUpdateInvestmentCategoryKeyArgs = {
127868
- input: MercuryUpdateInvestmentCategoryKeyInput;
127869
- };
127870
128456
  export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
127871
128457
  input: MercuryUpdateInvestmentCategoryNameInput;
127872
128458
  };
127873
- export declare type MercuryFundsMutationApiUpdateInvestmentCategorySetNameArgs = {
127874
- input: MercuryUpdateInvestmentCategorySetNameInput;
127875
- };
127876
128459
  export declare type MercuryFundsQueryApi = {
127877
128460
  __typename?: 'MercuryFundsQueryApi';
127878
128461
  activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
@@ -127884,8 +128467,6 @@ export declare type MercuryFundsQueryApi = {
127884
128467
  fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
127885
128468
  focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
127886
128469
  investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
127887
- investmentCategorySets?: Maybe<Array<Maybe<MercuryInvestmentCategorySet>>>;
127888
- investmentCategorySetsSearch?: Maybe<MercuryInvestmentCategorySetConnection>;
127889
128470
  };
127890
128471
  export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
127891
128472
  cloudId?: InputMaybe<Scalars['ID']['input']>;
@@ -127916,7 +128497,7 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs =
127916
128497
  sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
127917
128498
  };
127918
128499
  export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
127919
- costType?: InputMaybe<MercuryCostType>;
128500
+ costTypeId?: InputMaybe<Scalars['ID']['input']>;
127920
128501
  endDateExclusive?: InputMaybe<Scalars['Date']['input']>;
127921
128502
  focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
127922
128503
  startDateInclusive?: InputMaybe<Scalars['Date']['input']>;
@@ -127924,15 +128505,6 @@ export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
127924
128505
  export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
127925
128506
  ids: Array<Scalars['ID']['input']>;
127926
128507
  };
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
128508
  export declare enum MercuryFundsType {
127937
128509
  Actual = "ACTUAL",
127938
128510
  Budget = "BUDGET",
@@ -128041,43 +128613,16 @@ export declare type MercuryInvestmentCategory = Node & {
128041
128613
  __typename?: 'MercuryInvestmentCategory';
128042
128614
  createdBy?: Maybe<User>;
128043
128615
  createdDate?: Maybe<Scalars['DateTime']['output']>;
128044
- description?: Maybe<Scalars['String']['output']>;
128045
128616
  id: Scalars['ID']['output'];
128046
- investmentCategorySetId: Scalars['ID']['output'];
128047
- isDeletable?: Maybe<Scalars['Boolean']['output']>;
128048
- key: Scalars['String']['output'];
128049
128617
  name: Scalars['String']['output'];
128618
+ references?: Maybe<MercuryInvestmentCategoryReferences>;
128050
128619
  updatedBy?: Maybe<User>;
128051
128620
  updatedDate?: Maybe<Scalars['DateTime']['output']>;
128052
128621
  };
128053
- export declare type MercuryInvestmentCategorySet = Node & {
128054
- __typename?: 'MercuryInvestmentCategorySet';
128055
- createdBy?: Maybe<User>;
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;
128622
+ export declare type MercuryInvestmentCategoryReferences = {
128623
+ __typename?: 'MercuryInvestmentCategoryReferences';
128624
+ count?: Maybe<Scalars['Int']['output']>;
128077
128625
  };
128078
- export declare enum MercuryInvestmentCategorySetSortField {
128079
- Name = "NAME"
128080
- }
128081
128626
  export declare type MercuryInviteInput = {
128082
128627
  cloudId: Scalars['ID']['input'];
128083
128628
  userId: Scalars['ID']['input'];
@@ -128235,6 +128780,13 @@ export declare type MercuryLinkWorkToFocusAreaPayload = Payload & {
128235
128780
  errors?: Maybe<Array<MutationError>>;
128236
128781
  success: Scalars['Boolean']['output'];
128237
128782
  };
128783
+ export declare type MercuryLinkedGoalOrWorkSummary = {
128784
+ __typename?: 'MercuryLinkedGoalOrWorkSummary';
128785
+ focusAreaId: Scalars['ID']['output'];
128786
+ input?: Maybe<Scalars['String']['output']>;
128787
+ linkId: Scalars['ID']['output'];
128788
+ summary?: Maybe<Scalars['String']['output']>;
128789
+ };
128238
128790
  export declare type MercuryLinkedGoalStatus = {
128239
128791
  __typename?: 'MercuryLinkedGoalStatus';
128240
128792
  score?: Maybe<Scalars['Float']['output']>;
@@ -128272,6 +128824,7 @@ export declare type MercuryMoveFundsChange = MercuryChangeInterface & Node & {
128272
128824
  createdBy?: Maybe<User>;
128273
128825
  createdDate: Scalars['DateTime']['output'];
128274
128826
  id: Scalars['ID']['output'];
128827
+ note?: Maybe<Scalars['String']['output']>;
128275
128828
  sourceFocusArea?: Maybe<MercuryFocusArea>;
128276
128829
  targetFocusArea?: Maybe<MercuryFocusArea>;
128277
128830
  updatedBy?: Maybe<User>;
@@ -128290,6 +128843,7 @@ export declare type MercuryMovePositionsChange = MercuryChangeInterface & Node &
128290
128843
  createdBy?: Maybe<User>;
128291
128844
  createdDate: Scalars['DateTime']['output'];
128292
128845
  id: Scalars['ID']['output'];
128846
+ note?: Maybe<Scalars['String']['output']>;
128293
128847
  positionsAmount: Scalars['Int']['output'];
128294
128848
  sourceFocusArea?: Maybe<MercuryFocusArea>;
128295
128849
  targetFocusArea?: Maybe<MercuryFocusArea>;
@@ -128554,6 +129108,7 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
128554
129108
  export declare type MercuryNormalizedWork = {
128555
129109
  __typename?: 'MercuryNormalizedWork';
128556
129110
  connectedFocusArea: Scalars['ID']['output'];
129111
+ depth?: Maybe<Scalars['Int']['output']>;
128557
129112
  externalOwner?: Maybe<MercuryExternalOwner>;
128558
129113
  id: Scalars['ID']['output'];
128559
129114
  key?: Maybe<Scalars['String']['output']>;
@@ -128725,6 +129280,7 @@ export declare type MercuryPositionAllocationChange = MercuryChangeInterface & N
128725
129280
  createdBy?: Maybe<User>;
128726
129281
  createdDate: Scalars['DateTime']['output'];
128727
129282
  id: Scalars['ID']['output'];
129283
+ note?: Maybe<Scalars['String']['output']>;
128728
129284
  position?: Maybe<RadarPosition>;
128729
129285
  sourceFocusArea?: Maybe<MercuryFocusArea>;
128730
129286
  targetFocusArea?: Maybe<MercuryFocusArea>;
@@ -128881,14 +129437,22 @@ export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaAr
128881
129437
  };
128882
129438
  export declare type MercuryProviderOrchestrationQueryApi = {
128883
129439
  __typename?: 'MercuryProviderOrchestrationQueryApi';
129440
+ connectedProviders?: Maybe<MercuryProviderConnection>;
128884
129441
  isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
129442
+ providers?: Maybe<MercuryProviderConnection>;
128885
129443
  searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
128886
129444
  workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
128887
129445
  };
129446
+ export declare type MercuryProviderOrchestrationQueryApiConnectedProvidersArgs = {
129447
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
129448
+ };
128888
129449
  export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
128889
129450
  cloudId: Scalars['ID']['input'];
128890
129451
  workspaceAris: Array<Scalars['String']['input']>;
128891
129452
  };
129453
+ export declare type MercuryProviderOrchestrationQueryApiProvidersArgs = {
129454
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
129455
+ };
128892
129456
  export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
128893
129457
  after?: InputMaybe<Scalars['String']['input']>;
128894
129458
  cloudId: Scalars['ID']['input'];
@@ -129022,6 +129586,7 @@ export declare type MercuryQueryApi = {
129022
129586
  focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
129023
129587
  focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
129024
129588
  focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
129589
+ linkedGoalOrWorkSummary?: Maybe<MercuryLinkedGoalOrWorkSummary>;
129025
129590
  mediaReadToken?: Maybe<MercuryMediaToken>;
129026
129591
  mediaUploadToken?: Maybe<MercuryMediaToken>;
129027
129592
  myPreference?: Maybe<MercuryPreference>;
@@ -129117,6 +129682,12 @@ export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
129117
129682
  hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
129118
129683
  sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
129119
129684
  };
129685
+ export declare type MercuryQueryApiLinkedGoalOrWorkSummaryArgs = {
129686
+ dryRun?: InputMaybe<Scalars['Boolean']['input']>;
129687
+ focusAreaId: Scalars['ID']['input'];
129688
+ linkId: Scalars['ID']['input'];
129689
+ prompt?: InputMaybe<Scalars['String']['input']>;
129690
+ };
129120
129691
  export declare type MercuryQueryApiMediaReadTokenArgs = {
129121
129692
  cloudId: Scalars['ID']['input'];
129122
129693
  entityId: Scalars['ID']['input'];
@@ -129196,6 +129767,7 @@ export declare type MercuryRenameFocusAreaChange = MercuryChangeInterface & Node
129196
129767
  createdDate: Scalars['DateTime']['output'];
129197
129768
  id: Scalars['ID']['output'];
129198
129769
  newFocusAreaName: Scalars['String']['output'];
129770
+ note?: Maybe<Scalars['String']['output']>;
129199
129771
  oldFocusAreaName: Scalars['String']['output'];
129200
129772
  targetFocusArea?: Maybe<MercuryFocusArea>;
129201
129773
  updatedBy?: Maybe<User>;
@@ -129223,6 +129795,7 @@ export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node &
129223
129795
  createdBy?: Maybe<User>;
129224
129796
  createdDate: Scalars['DateTime']['output'];
129225
129797
  id: Scalars['ID']['output'];
129798
+ note?: Maybe<Scalars['String']['output']>;
129226
129799
  targetFocusArea?: Maybe<MercuryFocusArea>;
129227
129800
  updatedBy?: Maybe<User>;
129228
129801
  updatedDate: Scalars['DateTime']['output'];
@@ -129239,14 +129812,15 @@ export declare type MercuryRequestPositionsChange = MercuryChangeInterface & Nod
129239
129812
  createdBy?: Maybe<User>;
129240
129813
  createdDate: Scalars['DateTime']['output'];
129241
129814
  id: Scalars['ID']['output'];
129242
- positionsAmount: Scalars['Int']['output'];
129815
+ note?: Maybe<Scalars['String']['output']>;
129816
+ positionsAmount?: Maybe<Scalars['Int']['output']>;
129243
129817
  targetFocusArea?: Maybe<MercuryFocusArea>;
129244
129818
  updatedBy?: Maybe<User>;
129245
129819
  updatedDate: Scalars['DateTime']['output'];
129246
129820
  };
129247
129821
  export declare type MercuryRequestPositionsChangeInput = {
129248
129822
  cost?: InputMaybe<Scalars['BigDecimal']['input']>;
129249
- positionsAmount: Scalars['Int']['input'];
129823
+ positionsAmount?: InputMaybe<Scalars['Int']['input']>;
129250
129824
  targetFocusAreaId: Scalars['ID']['input'];
129251
129825
  };
129252
129826
  export declare type MercuryRestrictedChangeProposal = {
@@ -129288,11 +129862,25 @@ export declare type MercuryRisk = Node & {
129288
129862
  id: Scalars['ID']['output'];
129289
129863
  name: Scalars['String']['output'];
129290
129864
  owner?: Maybe<Scalars['ID']['output']>;
129865
+ status?: Maybe<MercuryRiskStatus>;
129866
+ };
129867
+ export declare type MercuryRiskStatus = {
129868
+ __typename?: 'MercuryRiskStatus';
129869
+ color: MercuryRiskStatusColor;
129870
+ displayName: Scalars['String']['output'];
129871
+ id: Scalars['ID']['output'];
129872
+ key: Scalars['String']['output'];
129873
+ order: Scalars['Int']['output'];
129291
129874
  };
129875
+ export declare enum MercuryRiskStatusColor {
129876
+ Gray = "GRAY",
129877
+ Red = "RED"
129878
+ }
129292
129879
  export declare type MercuryRisksMutationApi = {
129293
129880
  __typename?: 'MercuryRisksMutationApi';
129294
129881
  createRisk?: Maybe<MercuryCreateRiskPayload>;
129295
129882
  deleteRisk?: Maybe<MercuryDeleteRiskPayload>;
129883
+ transitionRiskStatus?: Maybe<MercuryTransitionRiskPayload>;
129296
129884
  updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
129297
129885
  updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
129298
129886
  updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
@@ -129303,6 +129891,9 @@ export declare type MercuryRisksMutationApiCreateRiskArgs = {
129303
129891
  export declare type MercuryRisksMutationApiDeleteRiskArgs = {
129304
129892
  input: MercuryDeleteRiskInput;
129305
129893
  };
129894
+ export declare type MercuryRisksMutationApiTransitionRiskStatusArgs = {
129895
+ input: MercuryTransitionRiskStatusInput;
129896
+ };
129306
129897
  export declare type MercuryRisksMutationApiUpdateRiskDescriptionArgs = {
129307
129898
  input: MercuryUpdateRiskDescriptionInput;
129308
129899
  };
@@ -129883,6 +130474,17 @@ export declare type MercuryTransitionFocusAreaStatusInput = {
129883
130474
  id: Scalars['ID']['input'];
129884
130475
  statusTransitionId: Scalars['ID']['input'];
129885
130476
  };
130477
+ export declare type MercuryTransitionRiskPayload = Payload & {
130478
+ __typename?: 'MercuryTransitionRiskPayload';
130479
+ errors?: Maybe<Array<MutationError>>;
130480
+ success: Scalars['Boolean']['output'];
130481
+ updatedRisk?: Maybe<MercuryRisk>;
130482
+ };
130483
+ export declare type MercuryTransitionRiskStatusInput = {
130484
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
130485
+ id: Scalars['ID']['input'];
130486
+ statusTransitionId: Scalars['ID']['input'];
130487
+ };
129886
130488
  export declare type MercuryTransitionStrategicEventPayload = Payload & {
129887
130489
  __typename?: 'MercuryTransitionStrategicEventPayload';
129888
130490
  errors?: Maybe<Array<MutationError>>;
@@ -129929,6 +130531,9 @@ export declare type MercuryUpdateChangeFocusAreaInput = {
129929
130531
  export declare type MercuryUpdateChangeMonetaryAmountInput = {
129930
130532
  monetaryAmount?: InputMaybe<Scalars['BigDecimal']['input']>;
129931
130533
  };
130534
+ export declare type MercuryUpdateChangeNoteInput = {
130535
+ note?: InputMaybe<Scalars['String']['input']>;
130536
+ };
129932
130537
  export declare type MercuryUpdateChangePayload = Payload & {
129933
130538
  __typename?: 'MercuryUpdateChangePayload';
129934
130539
  change?: Maybe<MercuryChange>;
@@ -130020,14 +130625,6 @@ export declare type MercuryUpdateCommentPayload = Payload & {
130020
130625
  success: Scalars['Boolean']['output'];
130021
130626
  updatedComment?: Maybe<MercuryComment>;
130022
130627
  };
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
130628
  export declare type MercuryUpdateCostSubtypeNameInput = {
130032
130629
  id: Scalars['ID']['input'];
130033
130630
  name: Scalars['String']['input'];
@@ -130120,14 +130717,6 @@ export declare type MercuryUpdateFocusAreaTargetDateInput = {
130120
130717
  targetDate?: InputMaybe<Scalars['String']['input']>;
130121
130718
  targetDateType?: InputMaybe<MercuryTargetDateType>;
130122
130719
  };
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
130720
  export declare type MercuryUpdateInvestmentCategoryNameInput = {
130132
130721
  id: Scalars['ID']['input'];
130133
130722
  name: Scalars['String']['input'];
@@ -130138,25 +130727,17 @@ export declare type MercuryUpdateInvestmentCategoryPayload = Payload & {
130138
130727
  success: Scalars['Boolean']['output'];
130139
130728
  updatedInvestmentCategory?: Maybe<MercuryInvestmentCategory>;
130140
130729
  };
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
130730
  export declare type MercuryUpdateMoveFundsChangeInput = {
130152
130731
  amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
130153
130732
  changeId: Scalars['ID']['input'];
130733
+ note?: InputMaybe<MercuryUpdateChangeNoteInput>;
130154
130734
  sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
130155
130735
  targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
130156
130736
  };
130157
130737
  export declare type MercuryUpdateMovePositionsChangeInput = {
130158
130738
  changeId: Scalars['ID']['input'];
130159
130739
  cost?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
130740
+ note?: InputMaybe<MercuryUpdateChangeNoteInput>;
130160
130741
  positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
130161
130742
  sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
130162
130743
  targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
@@ -130175,11 +130756,13 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
130175
130756
  export declare type MercuryUpdateRequestFundsChangeInput = {
130176
130757
  amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
130177
130758
  changeId: Scalars['ID']['input'];
130759
+ note?: InputMaybe<MercuryUpdateChangeNoteInput>;
130178
130760
  targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
130179
130761
  };
130180
130762
  export declare type MercuryUpdateRequestPositionsChangeInput = {
130181
130763
  changeId: Scalars['ID']['input'];
130182
130764
  cost?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
130765
+ note?: InputMaybe<MercuryUpdateChangeNoteInput>;
130183
130766
  positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
130184
130767
  targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
130185
130768
  };
@@ -131211,6 +131794,7 @@ export declare type Mutation = {
131211
131794
  jira_setLogo?: Maybe<JiraSetLogoPayload>;
131212
131795
  jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
131213
131796
  jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
131797
+ jira_setTimelineViewHideWarnings?: Maybe<JiraSetTimelineViewHideWarningsPayload>;
131214
131798
  jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
131215
131799
  jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
131216
131800
  jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
@@ -131836,12 +132420,14 @@ export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
131836
132420
  };
131837
132421
  export declare type MutationAgentWorkspace_EndBreakArgs = {
131838
132422
  agentId: Scalars['ID']['input'];
132423
+ cloudId: Scalars['ID']['input'];
131839
132424
  };
131840
132425
  export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
131841
132426
  input: AgentWorkspaceSetDefaultCapacityInput;
131842
132427
  };
131843
132428
  export declare type MutationAgentWorkspace_StartBreakArgs = {
131844
132429
  agentId: Scalars['ID']['input'];
132430
+ cloudId: Scalars['ID']['input'];
131845
132431
  };
131846
132432
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
131847
132433
  input: AgentWorkspaceUpdateScheduleInput;
@@ -133888,6 +134474,9 @@ export declare type MutationJira_SetTimelineHighlightedReleasesArgs = {
133888
134474
  cloudId: Scalars['ID']['input'];
133889
134475
  input: JiraSetTimelineHighlightedReleasesInput;
133890
134476
  };
134477
+ export declare type MutationJira_SetTimelineViewHideWarningsArgs = {
134478
+ input: JiraSetTimelineViewHideWarningsInput;
134479
+ };
133891
134480
  export declare type MutationJira_SetTimelineViewRangeModeArgs = {
133892
134481
  input: JiraSetTimelineViewRangeModeInput;
133893
134482
  };
@@ -134037,10 +134626,10 @@ export declare type MutationKitsune_UpdateSpaceArgs = {
134037
134626
  name?: InputMaybe<Scalars['String']['input']>;
134038
134627
  };
134039
134628
  export declare type MutationKitsune_UpdateViewArgs = {
134629
+ config?: InputMaybe<KitsuneViewConfigInput>;
134040
134630
  description?: InputMaybe<Scalars['String']['input']>;
134041
134631
  id: Scalars['ID']['input'];
134042
134632
  name?: InputMaybe<Scalars['String']['input']>;
134043
- type?: InputMaybe<KitsuneViewType>;
134044
134633
  };
134045
134634
  export declare type MutationKnowledgeBaseArgs = {
134046
134635
  cloudId: Scalars['ID']['input'];
@@ -137599,6 +138188,46 @@ export declare type PopularSpaceFeedPage = {
137599
138188
  __typename?: 'PopularSpaceFeedPage';
137600
138189
  page: Array<PopularFeedItem>;
137601
138190
  };
138191
+ export declare type PostOfficeActiveScopesInput = {
138192
+ current?: InputMaybe<Array<PostOfficeScopeEntryInput>>;
138193
+ previous?: InputMaybe<Array<PostOfficeScopeEntryInput>>;
138194
+ };
138195
+ export declare type PostOfficeContextInput = {
138196
+ isSiteAdmin?: InputMaybe<Scalars['Boolean']['input']>;
138197
+ locale?: InputMaybe<Scalars['String']['input']>;
138198
+ orgId?: InputMaybe<Scalars['String']['input']>;
138199
+ productEdition?: InputMaybe<Scalars['String']['input']>;
138200
+ scopes?: InputMaybe<PostOfficeActiveScopesInput>;
138201
+ subproduct?: InputMaybe<Scalars['String']['input']>;
138202
+ tenantId?: InputMaybe<Scalars['String']['input']>;
138203
+ };
138204
+ export declare type PostOfficeMessage = {
138205
+ __typename?: 'PostOfficeMessage';
138206
+ createdAt: Scalars['String']['output'];
138207
+ eventTime: Scalars['String']['output'];
138208
+ messageCategory: Scalars['String']['output'];
138209
+ messageCreationType?: Maybe<PostOfficeMessageCreationType>;
138210
+ messageInstanceId: Scalars['String']['output'];
138211
+ messageTemplateId: Scalars['String']['output'];
138212
+ recommendationSession?: Maybe<PostOfficeRecommendationSession>;
138213
+ triggerId: Scalars['String']['output'];
138214
+ };
138215
+ export declare enum PostOfficeMessageCreationType {
138216
+ Explicit = "explicit",
138217
+ Implicit = "implicit"
138218
+ }
138219
+ export declare type PostOfficeMessagePayload = {
138220
+ __typename?: 'PostOfficeMessagePayload';
138221
+ messages: Array<PostOfficeMessage>;
138222
+ };
138223
+ export declare type PostOfficeRecommendationSession = {
138224
+ __typename?: 'PostOfficeRecommendationSession';
138225
+ entityId: Scalars['String']['output'];
138226
+ sessionId: Scalars['String']['output'];
138227
+ };
138228
+ export declare type PostOfficeScopeEntryInput = {
138229
+ name: Scalars['String']['input'];
138230
+ };
137602
138231
  export declare type PremiumExtensionsFeature = {
137603
138232
  __typename?: 'PremiumExtensionsFeature';
137604
138233
  isEntitled: Scalars['Boolean']['output'];
@@ -138178,6 +138807,7 @@ export declare type Query = {
138178
138807
  avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
138179
138808
  avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
138180
138809
  avp_getFilterExpression?: Maybe<AvpFilterExpression>;
138810
+ avpanalytics_getModels?: Maybe<AvpAnalyticsGetModelsResponse>;
138181
138811
  avpanalytics_getmodeldata?: Maybe<AvpAnalyticsGetModelDataResponse>;
138182
138812
  avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
138183
138813
  bitbucket?: Maybe<BitbucketQuery>;
@@ -138829,6 +139459,7 @@ export declare type Query = {
138829
139459
  polarisView?: Maybe<PolarisView>;
138830
139460
  polarisViewArrangementInfo?: Maybe<Scalars['JSON']['output']>;
138831
139461
  popularFeed?: Maybe<PaginatedPopularFeed>;
139462
+ postOffice_placeholder?: Maybe<Scalars['String']['output']>;
138832
139463
  pricing?: Maybe<ContentPlatformPricing>;
138833
139464
  pricings: ContentPlatformPricingSearchConnection;
138834
139465
  productListing?: Maybe<ProductListingResult>;
@@ -138840,6 +139471,7 @@ export declare type Query = {
138840
139471
  projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
138841
139472
  projects_byKey?: Maybe<TownsquareProject>;
138842
139473
  projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
139474
+ projects_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
138843
139475
  projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
138844
139476
  projects_search?: Maybe<TownsquareProjectConnection>;
138845
139477
  projects_searchJiraWorkItemsToLink?: Maybe<TownsquareJiraWorkItemConnection>;
@@ -140130,6 +140762,9 @@ export declare type QueryAvp_GetDashboardsByArisArgs = {
140130
140762
  export declare type QueryAvp_GetFilterExpressionArgs = {
140131
140763
  dashboardAri: Scalars['ID']['input'];
140132
140764
  };
140765
+ export declare type QueryAvpanalytics_GetModelsArgs = {
140766
+ input?: InputMaybe<AvpAnalyticsGetModelsRequest>;
140767
+ };
140133
140768
  export declare type QueryAvpanalytics_GetmodeldataArgs = {
140134
140769
  input?: InputMaybe<AvpAnalyticsGetModelDataRequest>;
140135
140770
  };
@@ -142266,7 +142901,7 @@ export declare type QueryJpdViewsService_GlobalViewArgs = {
142266
142901
  };
142267
142902
  export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
142268
142903
  cloudId: Scalars['ID']['input'];
142269
- filter?: InputMaybe<JpdViewsServiceGlobalViewsByCriteriaInput>;
142904
+ filter: JpdViewsServiceGlobalViewsByCriteriaInput;
142270
142905
  pagination: JpdViewsServicePaginationInput;
142271
142906
  sortBy?: InputMaybe<JpdViewsServiceSortByInput>;
142272
142907
  };
@@ -142773,6 +143408,14 @@ export declare type QueryProjects_ByKeyArgs = {
142773
143408
  export declare type QueryProjects_CanCreateProjectFusionArgs = {
142774
143409
  input: TownsquareProjectsCanCreateProjectFusionInput;
142775
143410
  };
143411
+ export declare type QueryProjects_CustomFieldDefinitionSearchArgs = {
143412
+ after?: InputMaybe<Scalars['String']['input']>;
143413
+ containerId?: InputMaybe<Scalars['String']['input']>;
143414
+ first?: InputMaybe<Scalars['Int']['input']>;
143415
+ q: Scalars['String']['input'];
143416
+ sort?: InputMaybe<Array<InputMaybe<TownsquareCustomFieldSortEnum>>>;
143417
+ workspaceUuid?: InputMaybe<Scalars['UUID']['input']>;
143418
+ };
142776
143419
  export declare type QueryProjects_LinksByIdsArgs = {
142777
143420
  linkIds: Array<Scalars['ID']['input']>;
142778
143421
  };
@@ -146253,6 +146896,7 @@ export declare type SearchConfigurationSiteMetadata = {
146253
146896
  isJiraIssueIndexed: Scalars['Boolean']['output'];
146254
146897
  isRovoEnabled: Scalars['Boolean']['output'];
146255
146898
  orgId: Scalars['String']['output'];
146899
+ productEdition?: Maybe<Scalars['String']['output']>;
146256
146900
  productInfo: Array<SearchProductInfo>;
146257
146901
  siteName: Scalars['String']['output'];
146258
146902
  };
@@ -147286,8 +147930,10 @@ export declare type SearchThirdPartyFilter = {
147286
147930
  };
147287
147931
  export declare type SearchThirdPartyMetadata = {
147288
147932
  __typename?: 'SearchThirdPartyMetadata';
147933
+ connectionId?: Maybe<Scalars['String']['output']>;
147289
147934
  datasourceId?: Maybe<Scalars['String']['output']>;
147290
147935
  integrationARI: Scalars['String']['output'];
147936
+ isImpersonationAuthEnabled?: Maybe<Scalars['Boolean']['output']>;
147291
147937
  isUserOAuthed: Scalars['Boolean']['output'];
147292
147938
  name: Scalars['String']['output'];
147293
147939
  outboundAuthUrl: Scalars['String']['output'];
@@ -169883,6 +170529,7 @@ export declare type Subscription = {
169883
170529
  mercury?: Maybe<MercurySubscriptionApi>;
169884
170530
  migration: MigrationSubscription;
169885
170531
  migrationPlanningService: MigrationPlanningServiceSubscription;
170532
+ postOffice_onMessageReceived?: Maybe<PostOfficeMessagePayload>;
169886
170533
  sandbox: SandboxSubscription;
169887
170534
  signup: SignupSubscriptionApi;
169888
170535
  stakeholderComms_opsgenieRiskAssesmentOnUpdate?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
@@ -169967,6 +170614,12 @@ export declare type SubscriptionKitsune_OnFeedbackCreatedArgs = {
169967
170614
  export declare type SubscriptionLiveChat_UpdatesArgs = {
169968
170615
  chatAri: Scalars['ID']['input'];
169969
170616
  };
170617
+ export declare type SubscriptionPostOffice_OnMessageReceivedArgs = {
170618
+ context?: InputMaybe<PostOfficeContextInput>;
170619
+ placementId: Scalars['String']['input'];
170620
+ product: Scalars['String']['input'];
170621
+ workspaceAri?: InputMaybe<Scalars['String']['input']>;
170622
+ };
169970
170623
  export declare type SubscriptionStakeholderComms_OpsgenieRiskAssesmentOnUpdateArgs = {
169971
170624
  changeRequestId: Scalars['ID']['input'];
169972
170625
  };
@@ -171920,6 +172573,16 @@ export declare type TownsquareCustomFieldConnection = {
171920
172573
  pageInfo: PageInfo;
171921
172574
  };
171922
172575
  export declare type TownsquareCustomFieldDefinition = TownsquareNumberCustomFieldDefinition | TownsquareTextCustomFieldDefinition | TownsquareTextSelectCustomFieldDefinition | TownsquareUserCustomFieldDefinition;
172576
+ export declare type TownsquareCustomFieldDefinitionConnection = {
172577
+ __typename?: 'TownsquareCustomFieldDefinitionConnection';
172578
+ edges?: Maybe<Array<Maybe<TownsquareCustomFieldDefinitionEdge>>>;
172579
+ pageInfo: PageInfo;
172580
+ };
172581
+ export declare type TownsquareCustomFieldDefinitionEdge = {
172582
+ __typename?: 'TownsquareCustomFieldDefinitionEdge';
172583
+ cursor: Scalars['String']['output'];
172584
+ node?: Maybe<TownsquareCustomFieldDefinition>;
172585
+ };
171923
172586
  export declare type TownsquareCustomFieldDefinitionNode = {
171924
172587
  creationDate?: Maybe<Scalars['DateTime']['output']>;
171925
172588
  creator?: Maybe<User>;
@@ -171965,6 +172628,14 @@ export declare type TownsquareCustomFieldNumberSavedValueNode = Node & Townsquar
171965
172628
  export declare type TownsquareCustomFieldSavedValueNode = {
171966
172629
  id: Scalars['ID']['output'];
171967
172630
  };
172631
+ export declare enum TownsquareCustomFieldSortEnum {
172632
+ CreationDateAsc = "CREATION_DATE_ASC",
172633
+ CreationDateDesc = "CREATION_DATE_DESC",
172634
+ IdAsc = "ID_ASC",
172635
+ IdDesc = "ID_DESC",
172636
+ NameAsc = "NAME_ASC",
172637
+ NameDesc = "NAME_DESC"
172638
+ }
171968
172639
  export declare type TownsquareCustomFieldTextAllowedValueConnection = {
171969
172640
  __typename?: 'TownsquareCustomFieldTextAllowedValueConnection';
171970
172641
  edges?: Maybe<Array<Maybe<TownsquareCustomFieldTextAllowedValueEdge>>>;
@@ -172144,6 +172815,7 @@ export declare type TownsquareGoal = Node & {
172144
172815
  projects?: Maybe<TownsquareProjectConnection>;
172145
172816
  risks?: Maybe<TownsquareRiskConnection>;
172146
172817
  scoringMode?: Maybe<TownsquareGoalScoringMode>;
172818
+ slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
172147
172819
  startDate?: Maybe<Scalars['Date']['output']>;
172148
172820
  state?: Maybe<TownsquareGoalState>;
172149
172821
  status?: Maybe<TownsquareStatus>;
@@ -172216,6 +172888,10 @@ export declare type TownsquareGoalRisksArgs = {
172216
172888
  noUpdateAttached?: InputMaybe<Scalars['Boolean']['input']>;
172217
172889
  sort?: InputMaybe<Array<InputMaybe<TownsquareRiskSortEnum>>>;
172218
172890
  };
172891
+ export declare type TownsquareGoalSlackChannelsArgs = {
172892
+ after?: InputMaybe<Scalars['String']['input']>;
172893
+ first?: InputMaybe<Scalars['Int']['input']>;
172894
+ };
172219
172895
  export declare type TownsquareGoalSubGoalSuggestionsArgs = {
172220
172896
  after?: InputMaybe<Scalars['String']['input']>;
172221
172897
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -173430,6 +174106,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
173430
174106
  name: Scalars['String']['output'];
173431
174107
  owner?: Maybe<User>;
173432
174108
  risks?: Maybe<TownsquareRiskConnection>;
174109
+ slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
173433
174110
  startDate?: Maybe<Scalars['DateTime']['output']>;
173434
174111
  state?: Maybe<TownsquareProjectState>;
173435
174112
  tags?: Maybe<TownsquareTagConnection>;
@@ -173511,6 +174188,10 @@ export declare type TownsquareProjectRisksArgs = {
173511
174188
  noUpdateAttached?: InputMaybe<Scalars['Boolean']['input']>;
173512
174189
  sort?: InputMaybe<Array<InputMaybe<TownsquareRiskSortEnum>>>;
173513
174190
  };
174191
+ export declare type TownsquareProjectSlackChannelsArgs = {
174192
+ after?: InputMaybe<Scalars['String']['input']>;
174193
+ first?: InputMaybe<Scalars['Int']['input']>;
174194
+ };
173514
174195
  export declare type TownsquareProjectTagsArgs = {
173515
174196
  after?: InputMaybe<Scalars['String']['input']>;
173516
174197
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -174494,6 +175175,37 @@ export declare type TownsquareShareProjectUserInput = {
174494
175175
  accountId?: InputMaybe<Scalars['ID']['input']>;
174495
175176
  addAsWatcher?: InputMaybe<Scalars['Boolean']['input']>;
174496
175177
  };
175178
+ export declare type TownsquareSlackChannel = {
175179
+ __typename?: 'TownsquareSlackChannel';
175180
+ name?: Maybe<Scalars['String']['output']>;
175181
+ numMembers?: Maybe<Scalars['Int']['output']>;
175182
+ private?: Maybe<Scalars['Boolean']['output']>;
175183
+ slackTeamId?: Maybe<Scalars['String']['output']>;
175184
+ slackTeamName?: Maybe<Scalars['String']['output']>;
175185
+ };
175186
+ export declare type TownsquareSlackConnection = {
175187
+ __typename?: 'TownsquareSlackConnection';
175188
+ channel?: Maybe<TownsquareSlackChannel>;
175189
+ creationDate?: Maybe<Scalars['DateTime']['output']>;
175190
+ metadata?: Maybe<TownsquareSlackConnectionMetadata>;
175191
+ subscriber?: Maybe<User>;
175192
+ types?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
175193
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
175194
+ };
175195
+ export declare type TownsquareSlackConnectionConnection = {
175196
+ __typename?: 'TownsquareSlackConnectionConnection';
175197
+ edges?: Maybe<Array<Maybe<TownsquareSlackConnectionEdge>>>;
175198
+ pageInfo: PageInfo;
175199
+ };
175200
+ export declare type TownsquareSlackConnectionEdge = {
175201
+ __typename?: 'TownsquareSlackConnectionEdge';
175202
+ cursor: Scalars['String']['output'];
175203
+ node?: Maybe<TownsquareSlackConnection>;
175204
+ };
175205
+ export declare type TownsquareSlackConnectionMetadata = {
175206
+ __typename?: 'TownsquareSlackConnectionMetadata';
175207
+ fieldTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
175208
+ };
174497
175209
  export declare type TownsquareStatus = {
174498
175210
  __typename?: 'TownsquareStatus';
174499
175211
  atCompletionState?: Maybe<TownsquareCompletionGoalState>;