@forge/cli-shared 8.17.0-next.5 → 8.17.1-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.
@@ -292,11 +292,6 @@ export declare type AvpAnalyticsFormulaColumnInput = {
292
292
  name: Scalars['String']['input'];
293
293
  type: AvpAnalyticsColumnType;
294
294
  };
295
- export declare type AvpAnalyticsGetDataSourceInput = {
296
- cloudId: Scalars['ID']['input'];
297
- dataSourceId: Scalars['ID']['input'];
298
- workspaceId: Scalars['ID']['input'];
299
- };
300
295
  export declare type AvpAnalyticsGetDataSourcesInput = {
301
296
  cloudId: Scalars['ID']['input'];
302
297
  searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
@@ -304,7 +299,6 @@ export declare type AvpAnalyticsGetDataSourcesInput = {
304
299
  };
305
300
  export declare type AvpAnalyticsGetModelInput = {
306
301
  modelId: Scalars['ID']['input'];
307
- modelType: AvpAnalyticsModelType;
308
302
  modelVersion?: InputMaybe<Scalars['Int']['input']>;
309
303
  modelViewMode: AvpAnalyticsModelViewMode;
310
304
  };
@@ -366,6 +360,7 @@ export declare type AvpAnalyticsMetric = {
366
360
  };
367
361
  export declare type AvpAnalyticsModel = {
368
362
  __typename?: 'AVPAnalyticsModel';
363
+ data?: Maybe<AvpAnalyticsModelDataConnection>;
369
364
  definition?: Maybe<AvpAnalyticsModelDefinition>;
370
365
  description?: Maybe<Scalars['String']['output']>;
371
366
  errors?: Maybe<Array<AvpAnalyticsError>>;
@@ -376,15 +371,41 @@ export declare type AvpAnalyticsModel = {
376
371
  type: AvpAnalyticsModelType;
377
372
  version: Scalars['Int']['output'];
378
373
  };
374
+ export declare type AvpAnalyticsModelDataArgs = {
375
+ paginationInput: AvpAnalyticsPaginationInput;
376
+ sortInput: AvpAnalyticsModelDataSortInput;
377
+ };
379
378
  export declare type AvpAnalyticsModelConnection = {
380
379
  __typename?: 'AVPAnalyticsModelConnection';
381
380
  edges?: Maybe<Array<Maybe<AvpAnalyticsModelEdge>>>;
382
381
  pageInfo: PageInfo;
383
382
  };
383
+ export declare type AvpAnalyticsModelDataConnection = {
384
+ __typename?: 'AVPAnalyticsModelDataConnection';
385
+ edges?: Maybe<Array<AvpAnalyticsModelDataEdge>>;
386
+ pageInfo: PageInfo;
387
+ };
388
+ export declare type AvpAnalyticsModelDataEdge = {
389
+ __typename?: 'AVPAnalyticsModelDataEdge';
390
+ cursor?: Maybe<Scalars['String']['output']>;
391
+ node: AvpAnalyticsModelDataRow;
392
+ };
393
+ export declare type AvpAnalyticsModelDataRow = {
394
+ __typename?: 'AVPAnalyticsModelDataRow';
395
+ values: Array<AvpAnalyticsModelDataRowValue>;
396
+ };
397
+ export declare type AvpAnalyticsModelDataRowValue = {
398
+ __typename?: 'AVPAnalyticsModelDataRowValue';
399
+ columnName: Scalars['String']['output'];
400
+ columnValue: Scalars['String']['output'];
401
+ };
384
402
  export declare type AvpAnalyticsModelDataSort = {
385
403
  columnName: Scalars['String']['input'];
386
404
  sortType: AvpAnalyticsSortType;
387
405
  };
406
+ export declare type AvpAnalyticsModelDataSortInput = {
407
+ sorts: Array<AvpAnalyticsModelDataSort>;
408
+ };
388
409
  export declare type AvpAnalyticsModelDataSource = {
389
410
  __typename?: 'AVPAnalyticsModelDataSource';
390
411
  id: Scalars['ID']['output'];
@@ -1381,22 +1402,31 @@ export declare type AvpPermissionsUserAccess = {
1381
1402
  user?: Maybe<User>;
1382
1403
  };
1383
1404
  export declare type AvpPlatformDimension = {
1384
- __typename?: 'AVPPlatformDimension';
1385
1405
  datasourceLocator: AvpDatasourceLocator;
1386
1406
  name: Scalars['String']['output'];
1387
1407
  product: Scalars['String']['output'];
1388
- semanticModel: Scalars['String']['output'];
1389
1408
  };
1390
1409
  export declare type AvpPlatformDimensionInput = {
1410
+ dynamic?: InputMaybe<AvpPlatformDynamicDimensionInput>;
1411
+ semantic?: InputMaybe<AvpPlatformSemanticDimensionInput>;
1412
+ };
1413
+ export declare type AvpPlatformDynamicDimension = AvpPlatformDimension & {
1414
+ __typename?: 'AVPPlatformDynamicDimension';
1415
+ datasourceLocator: AvpDatasourceLocator;
1416
+ dynamicDimensionKey: Scalars['String']['output'];
1417
+ name: Scalars['String']['output'];
1418
+ product: Scalars['String']['output'];
1419
+ };
1420
+ export declare type AvpPlatformDynamicDimensionInput = {
1391
1421
  datasourceLocator: AvpDatasourceLocatorInput;
1422
+ dynamicDimensionKey: Scalars['String']['input'];
1392
1423
  name: Scalars['String']['input'];
1393
1424
  product: Scalars['String']['input'];
1394
- semanticModel: Scalars['String']['input'];
1395
1425
  };
1396
1426
  export declare type AvpPlatformFilter = {
1397
1427
  __typename?: 'AVPPlatformFilter';
1398
1428
  comparison: Scalars['String']['output'];
1399
- defaultValues: Array<Scalars['String']['output']>;
1429
+ defaultValues: Array<Maybe<Scalars['String']['output']>>;
1400
1430
  dimensions: Array<AvpPlatformDimension>;
1401
1431
  id: Scalars['ID']['output'];
1402
1432
  isHidden?: Maybe<Scalars['Boolean']['output']>;
@@ -1405,7 +1435,7 @@ export declare type AvpPlatformFilter = {
1405
1435
  };
1406
1436
  export declare type AvpPlatformFilterInput = {
1407
1437
  comparison: Scalars['String']['input'];
1408
- defaultValues: Array<Scalars['String']['input']>;
1438
+ defaultValues: Array<InputMaybe<Scalars['String']['input']>>;
1409
1439
  dimensions: Array<AvpPlatformDimensionInput>;
1410
1440
  isHidden?: InputMaybe<Scalars['Boolean']['input']>;
1411
1441
  label?: InputMaybe<Scalars['String']['input']>;
@@ -1413,12 +1443,25 @@ export declare type AvpPlatformFilterInput = {
1413
1443
  };
1414
1444
  export declare type AvpPlatformFilterUpdateInput = {
1415
1445
  comparison?: InputMaybe<Scalars['String']['input']>;
1416
- defaultValues?: InputMaybe<Array<Scalars['String']['input']>>;
1446
+ defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1417
1447
  dimensions?: InputMaybe<Array<AvpPlatformDimensionInput>>;
1418
1448
  isHidden?: InputMaybe<Scalars['Boolean']['input']>;
1419
1449
  label?: InputMaybe<Scalars['String']['input']>;
1420
1450
  metadata?: InputMaybe<Scalars['String']['input']>;
1421
1451
  };
1452
+ export declare type AvpPlatformSemanticDimension = AvpPlatformDimension & {
1453
+ __typename?: 'AVPPlatformSemanticDimension';
1454
+ datasourceLocator: AvpDatasourceLocator;
1455
+ name: Scalars['String']['output'];
1456
+ product: Scalars['String']['output'];
1457
+ semanticModel: Scalars['String']['output'];
1458
+ };
1459
+ export declare type AvpPlatformSemanticDimensionInput = {
1460
+ datasourceLocator: AvpDatasourceLocatorInput;
1461
+ name: Scalars['String']['input'];
1462
+ product: Scalars['String']['input'];
1463
+ semanticModel: Scalars['String']['input'];
1464
+ };
1422
1465
  export declare type AvpProductWorkspaceMapEntry = {
1423
1466
  product: Scalars['String']['input'];
1424
1467
  workspaceId: Scalars['ID']['input'];
@@ -4494,6 +4537,8 @@ export declare type AgentStudioKnowledgeSource = {
4494
4537
  cloudId?: Maybe<Scalars['String']['output']>;
4495
4538
  enabled?: Maybe<Scalars['Boolean']['output']>;
4496
4539
  filters?: Maybe<AgentStudioKnowledgeFilter>;
4540
+ isValid?: Maybe<Scalars['Boolean']['output']>;
4541
+ resourceType?: Maybe<Scalars['String']['output']>;
4497
4542
  source: Scalars['String']['output'];
4498
4543
  };
4499
4544
  export declare type AgentStudioKnowledgeSourceInput = {
@@ -5465,6 +5510,16 @@ export declare enum AgentWorkspaceEligibilityErrorCode {
5465
5510
  TeamNotFound = "TEAM_NOT_FOUND",
5466
5511
  ValidationError = "VALIDATION_ERROR"
5467
5512
  }
5513
+ export declare type AgentWorkspaceEligibleGroup = {
5514
+ __typename?: 'AgentWorkspaceEligibleGroup';
5515
+ group?: Maybe<IdentityGroup>;
5516
+ groupAri: Scalars['ID']['output'];
5517
+ };
5518
+ export declare type AgentWorkspaceEligibleGroupsPayload = {
5519
+ __typename?: 'AgentWorkspaceEligibleGroupsPayload';
5520
+ eligibleGroups: Array<AgentWorkspaceEligibleGroup>;
5521
+ groupsTooLarge: Array<AgentWorkspaceGroupTooLarge>;
5522
+ };
5468
5523
  export declare type AgentWorkspaceFindBestMatchAgentsInput = {
5469
5524
  cloudId: Scalars['ID']['input'];
5470
5525
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -5478,6 +5533,11 @@ export declare type AgentWorkspaceFindBestMatchAgentsPayload = {
5478
5533
  rankedAgents?: Maybe<Array<AgentWorkspaceRankedAgent>>;
5479
5534
  success: Scalars['Boolean']['output'];
5480
5535
  };
5536
+ export declare type AgentWorkspaceGroupTooLarge = {
5537
+ __typename?: 'AgentWorkspaceGroupTooLarge';
5538
+ group?: Maybe<IdentityGroup>;
5539
+ groupAri: Scalars['ID']['output'];
5540
+ };
5481
5541
  export declare type AgentWorkspaceHierarchyDefinition = {
5482
5542
  __typename?: 'AgentWorkspaceHierarchyDefinition';
5483
5543
  catalogTypes?: Maybe<Array<AgentWorkspaceCatalogType>>;
@@ -5916,6 +5976,7 @@ export declare type AgentWorkspaceTeamSchedules = {
5916
5976
  export declare type AgentWorkspaceTeamSchedulesConnection = {
5917
5977
  __typename?: 'AgentWorkspaceTeamSchedulesConnection';
5918
5978
  edges: Array<AgentWorkspaceTeamSchedulesEdge>;
5979
+ initialFilters?: Maybe<AgentWorkspaceAppliedFilters>;
5919
5980
  pageInfo: AgentWorkspaceTeamsPageInfo;
5920
5981
  summary: AgentWorkspaceTeamSchedulesSummary;
5921
5982
  };
@@ -5927,6 +5988,7 @@ export declare type AgentWorkspaceTeamSchedulesEdge = {
5927
5988
  export declare type AgentWorkspaceTeamSchedulesQueryInput = {
5928
5989
  cloudId: Scalars['ID']['input'];
5929
5990
  endTime: Scalars['DateTime']['input'];
5991
+ isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
5930
5992
  projectId?: InputMaybe<Scalars['ID']['input']>;
5931
5993
  projectKey?: InputMaybe<Scalars['String']['input']>;
5932
5994
  startTime: Scalars['DateTime']['input'];
@@ -10460,11 +10522,6 @@ export declare type AssetsVerticalAsyncTaskPayload = Payload & {
10460
10522
  success: Scalars['Boolean']['output'];
10461
10523
  taskId: Scalars['String']['output'];
10462
10524
  };
10463
- export declare enum AssetsVerticalAttributeCategory {
10464
- Hardwares = "HARDWARES",
10465
- Models = "MODELS",
10466
- Stockrooms = "STOCKROOMS"
10467
- }
10468
10525
  export declare type AssetsVerticalAttributeDetailsInput = {
10469
10526
  otId: Scalars['String']['input'];
10470
10527
  otaId: Scalars['String']['input'];
@@ -10475,7 +10532,7 @@ export declare type AssetsVerticalAttributeValuesFailure = {
10475
10532
  };
10476
10533
  export declare type AssetsVerticalAttributeValuesInput = {
10477
10534
  attributes: Array<AssetsVerticalAttributeDetailsInput>;
10478
- category: AssetsVerticalAttributeCategory;
10535
+ category: AssetsVerticalObjectTypeCategory;
10479
10536
  query?: InputMaybe<Scalars['String']['input']>;
10480
10537
  verticalInstantiationId: Scalars['ID']['input'];
10481
10538
  workspaceId: Scalars['ID']['input'];
@@ -10518,7 +10575,7 @@ export declare type AssetsVerticalCountByStatus = {
10518
10575
  counts?: Maybe<Array<Maybe<AssetsVerticalStatusCount>>>;
10519
10576
  };
10520
10577
  export declare type AssetsVerticalCountByStatusInput = {
10521
- category: AssetsVerticalAttributeCategory;
10578
+ category: AssetsVerticalObjectTypeCategory;
10522
10579
  filters?: InputMaybe<Array<InputMaybe<Array<InputMaybe<AssetsVerticalObjectsFilterCondition>>>>>;
10523
10580
  statusField: Scalars['String']['input'];
10524
10581
  statuses: Array<Scalars['String']['input']>;
@@ -10613,6 +10670,11 @@ export declare type AssetsVerticalObjectNode = {
10613
10670
  name?: Maybe<Scalars['String']['output']>;
10614
10671
  objectKey?: Maybe<Scalars['String']['output']>;
10615
10672
  };
10673
+ export declare enum AssetsVerticalObjectTypeCategory {
10674
+ Hardwares = "HARDWARES",
10675
+ Models = "MODELS",
10676
+ Stockrooms = "STOCKROOMS"
10677
+ }
10616
10678
  export declare type AssetsVerticalObjectsFilterCondition = {
10617
10679
  key?: InputMaybe<Scalars['String']['input']>;
10618
10680
  operator?: InputMaybe<AssetsVerticalObjectsFilterOperator>;
@@ -10623,6 +10685,26 @@ export declare enum AssetsVerticalObjectsFilterOperator {
10623
10685
  In = "IN",
10624
10686
  Like = "LIKE"
10625
10687
  }
10688
+ export declare type AssetsVerticalObjectsInput = {
10689
+ category: AssetsVerticalObjectTypeCategory;
10690
+ filters?: InputMaybe<Array<InputMaybe<Array<InputMaybe<AssetsVerticalObjectsFilterCondition>>>>>;
10691
+ limit?: InputMaybe<Scalars['Int']['input']>;
10692
+ offset?: InputMaybe<Scalars['Int']['input']>;
10693
+ orderDirection?: InputMaybe<AssetsVerticalObjectsOrderDirection>;
10694
+ orderKey?: InputMaybe<Scalars['String']['input']>;
10695
+ };
10696
+ export declare enum AssetsVerticalObjectsOrderDirection {
10697
+ Asc = "ASC",
10698
+ Desc = "DESC"
10699
+ }
10700
+ export declare type AssetsVerticalObjectsResult = AssetsVerticalObjectsSuccess | QueryError;
10701
+ export declare type AssetsVerticalObjectsSuccess = {
10702
+ __typename?: 'AssetsVerticalObjectsSuccess';
10703
+ objects?: Maybe<Array<Maybe<AssetsObject>>>;
10704
+ offset?: Maybe<Scalars['Int']['output']>;
10705
+ pageInfo?: Maybe<PageInfo>;
10706
+ totalCount?: Maybe<Scalars['Int']['output']>;
10707
+ };
10626
10708
  export declare type AssetsVerticalSchemaTemplate = {
10627
10709
  __typename?: 'AssetsVerticalSchemaTemplate';
10628
10710
  description?: Maybe<Scalars['String']['output']>;
@@ -13624,6 +13706,17 @@ export declare type CcpQuoteUpcomingBillsLine = {
13624
13706
  taxPercent?: Maybe<Scalars['Float']['output']>;
13625
13707
  total?: Maybe<Scalars['Float']['output']>;
13626
13708
  };
13709
+ export declare type CcpRecommendCollectionExperienceCapability = {
13710
+ __typename?: 'CcpRecommendCollectionExperienceCapability';
13711
+ createCollection?: Maybe<CcpCreateEntitlementExperienceCapability>;
13712
+ entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
13713
+ offering?: Maybe<CcpOffering>;
13714
+ offeringId?: Maybe<Scalars['ID']['output']>;
13715
+ };
13716
+ export declare type CcpRecommendCollectionExperienceCapabilityCreateCollectionArgs = {
13717
+ experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
13718
+ orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
13719
+ };
13627
13720
  export declare type CcpRelationshipCardinality = {
13628
13721
  __typename?: 'CcpRelationshipCardinality';
13629
13722
  max?: Maybe<Scalars['Int']['output']>;
@@ -13673,10 +13766,15 @@ export declare enum CcpRelationshipType {
13673
13766
  export declare type CcpRootExperienceCapabilities = {
13674
13767
  __typename?: 'CcpRootExperienceCapabilities';
13675
13768
  createEntitlement?: Maybe<CcpCreateEntitlementExperienceCapability>;
13769
+ recommendCollection?: Maybe<CcpRecommendCollectionExperienceCapability>;
13676
13770
  };
13677
13771
  export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
13678
13772
  input: CcpCreateEntitlementInput;
13679
13773
  };
13774
+ export declare type CcpRootExperienceCapabilitiesRecommendCollectionArgs = {
13775
+ entitlementIds: Array<Scalars['ID']['input']>;
13776
+ productKey?: InputMaybe<Scalars['String']['input']>;
13777
+ };
13680
13778
  export declare type CcpScheduledChanges = {
13681
13779
  __typename?: 'CcpScheduledChanges';
13682
13780
  nextCycleChange?: Maybe<CcpNextCycleChange>;
@@ -35404,6 +35502,7 @@ export declare type CustomerServiceExternalStatus = {
35404
35502
  __typename?: 'CustomerServiceExternalStatus';
35405
35503
  externalLabel: Scalars['String']['output'];
35406
35504
  jiraStatusIds: Array<Scalars['String']['output']>;
35505
+ statusCategory?: Maybe<Scalars['String']['output']>;
35407
35506
  };
35408
35507
  export declare type CustomerServiceExternalStatusesQueryResult = CustomerServiceExternalStatusesResponse | QueryError;
35409
35508
  export declare type CustomerServiceExternalStatusesResponse = {
@@ -36072,6 +36171,7 @@ export declare type CustomerServiceStatusMapping = {
36072
36171
  __typename?: 'CustomerServiceStatusMapping';
36073
36172
  externalLabel: Scalars['String']['output'];
36074
36173
  jiraStatusId: Scalars['String']['output'];
36174
+ statusCategory?: Maybe<Scalars['String']['output']>;
36075
36175
  };
36076
36176
  export declare type CustomerServiceStatusMappingConfig = {
36077
36177
  __typename?: 'CustomerServiceStatusMappingConfig';
@@ -36082,6 +36182,7 @@ export declare type CustomerServiceStatusMappingConfig = {
36082
36182
  export declare type CustomerServiceStatusMappingInput = {
36083
36183
  externalLabel: Scalars['String']['input'];
36084
36184
  jiraStatusId: Scalars['String']['input'];
36185
+ statusCategory?: InputMaybe<Scalars['String']['input']>;
36085
36186
  };
36086
36187
  export declare type CustomerServiceStatusMappingQueryResult = CustomerServiceStatusMappingConfig | QueryError;
36087
36188
  export declare type CustomerServiceStatusMappingUpdateInput = {
@@ -39855,6 +39956,7 @@ export declare enum EcosystemAppsInstalledInContextsSortKey {
39855
39956
  }
39856
39957
  export declare type EcosystemConnectApp = {
39857
39958
  __typename?: 'EcosystemConnectApp';
39959
+ baseUrl?: Maybe<Scalars['String']['output']>;
39858
39960
  description: Scalars['String']['output'];
39859
39961
  distributionStatus: Scalars['String']['output'];
39860
39962
  id: Scalars['ID']['output'];
@@ -98497,6 +98599,7 @@ export declare type HelpCenterContentGapIndicatorsWithMetaData = {
98497
98599
  contentGapIndicators?: Maybe<Array<HelpCenterContentGapIndicator>>;
98498
98600
  };
98499
98601
  export declare type HelpCenterCreateInput = {
98602
+ helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
98500
98603
  helpCenterType?: InputMaybe<HelpCenterTypeInput>;
98501
98604
  homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
98502
98605
  name: HelpCenterNameInput;
@@ -100074,6 +100177,7 @@ export declare type HelpObjectStoreEntityDataGeneric = HelpObjectStoreEntityData
100074
100177
  export declare enum HelpObjectStoreEntityTypes {
100075
100178
  ExtResources = "EXT_RESOURCES",
100076
100179
  KbArticles = "KB_ARTICLES",
100180
+ KbCategories = "KB_CATEGORIES",
100077
100181
  PortalGroups = "PORTAL_GROUPS",
100078
100182
  RequestTypes = "REQUEST_TYPES"
100079
100183
  }
@@ -100111,6 +100215,32 @@ export declare enum HelpObjectStoreJsmEntityType {
100111
100215
  Portal = "PORTAL",
100112
100216
  RequestForm = "REQUEST_FORM"
100113
100217
  }
100218
+ export declare type HelpObjectStoreKbCategories = {
100219
+ __typename?: 'HelpObjectStoreKbCategories';
100220
+ articles?: Maybe<Array<HelpObjectStoreKbCategoriesArticle>>;
100221
+ id: Scalars['ID']['output'];
100222
+ name?: Maybe<Scalars['String']['output']>;
100223
+ };
100224
+ export declare type HelpObjectStoreKbCategoriesArticle = {
100225
+ __typename?: 'HelpObjectStoreKbCategoriesArticle';
100226
+ description?: Maybe<Scalars['String']['output']>;
100227
+ displayLink?: Maybe<Scalars['String']['output']>;
100228
+ iconUrl?: Maybe<Scalars['String']['output']>;
100229
+ id: Scalars['ID']['output'];
100230
+ name?: Maybe<Scalars['String']['output']>;
100231
+ };
100232
+ export declare type HelpObjectStoreKbCategoriesConnection = {
100233
+ __typename?: 'HelpObjectStoreKbCategoriesConnection';
100234
+ edges?: Maybe<Array<HelpObjectStoreKbCategoriesEdge>>;
100235
+ pageInfo: PageInfo;
100236
+ totalCount?: Maybe<Scalars['Int']['output']>;
100237
+ };
100238
+ export declare type HelpObjectStoreKbCategoriesEdge = {
100239
+ __typename?: 'HelpObjectStoreKbCategoriesEdge';
100240
+ cursor: Scalars['String']['output'];
100241
+ node?: Maybe<HelpObjectStoreKbCategories>;
100242
+ };
100243
+ export declare type HelpObjectStoreKbCategoriesResult = HelpObjectStoreKbCategoriesConnection | QueryError;
100114
100244
  export declare type HelpObjectStoreMutationApi = {
100115
100245
  __typename?: 'HelpObjectStoreMutationApi';
100116
100246
  createEntityMapping?: Maybe<HelpObjectStoreCreateEntityMappingPayload>;
@@ -100205,6 +100335,7 @@ export declare type HelpObjectStoreQueryApi = {
100205
100335
  articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
100206
100336
  channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
100207
100337
  helpObjects?: Maybe<HelpObjectStoreProductEntityResult>;
100338
+ kbCategories?: Maybe<HelpObjectStoreKbCategoriesResult>;
100208
100339
  portalGroups?: Maybe<HelpObjectStorePortalGroupsResult>;
100209
100340
  requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
100210
100341
  searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
@@ -100220,6 +100351,10 @@ export declare type HelpObjectStoreQueryApiHelpObjectsArgs = {
100220
100351
  input: HelpObjectStoreProductEntityInput;
100221
100352
  sortConfig?: InputMaybe<HelpObjectStoreSortConfig>;
100222
100353
  };
100354
+ export declare type HelpObjectStoreQueryApiKbCategoriesArgs = {
100355
+ filters?: InputMaybe<HelpObjectStoreFilters>;
100356
+ input: HelpObjectStoreProductEntityInput;
100357
+ };
100223
100358
  export declare type HelpObjectStoreQueryApiPortalGroupsArgs = {
100224
100359
  filters?: InputMaybe<HelpObjectStoreFilters>;
100225
100360
  input: HelpObjectStoreProductEntityInput;
@@ -101776,6 +101911,8 @@ export declare type JiraAggregatedStatusFieldAggregatedStatusCategoryArgs = {
101776
101911
  export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineVirtualField & Node & {
101777
101912
  __typename?: 'JiraAggregatedTimelineField';
101778
101913
  aggregatedEndDateViewField?: Maybe<JiraAggregatedDate>;
101914
+ aggregatedSprintEndDateViewField?: Maybe<JiraAggregatedDate>;
101915
+ aggregatedSprintStartDateViewField?: Maybe<JiraAggregatedDate>;
101779
101916
  aggregatedStartDateViewField?: Maybe<JiraAggregatedDate>;
101780
101917
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
101781
101918
  description?: Maybe<Scalars['String']['output']>;
@@ -101791,9 +101928,19 @@ export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineV
101791
101928
  type: Scalars['String']['output'];
101792
101929
  };
101793
101930
  export declare type JiraAggregatedTimelineFieldAggregatedEndDateViewFieldArgs = {
101931
+ input?: InputMaybe<JiraFieldAggregationQueryInput>;
101932
+ viewId?: InputMaybe<Scalars['String']['input']>;
101933
+ };
101934
+ export declare type JiraAggregatedTimelineFieldAggregatedSprintEndDateViewFieldArgs = {
101935
+ input?: InputMaybe<JiraFieldAggregationQueryInput>;
101936
+ viewId?: InputMaybe<Scalars['String']['input']>;
101937
+ };
101938
+ export declare type JiraAggregatedTimelineFieldAggregatedSprintStartDateViewFieldArgs = {
101939
+ input?: InputMaybe<JiraFieldAggregationQueryInput>;
101794
101940
  viewId?: InputMaybe<Scalars['String']['input']>;
101795
101941
  };
101796
101942
  export declare type JiraAggregatedTimelineFieldAggregatedStartDateViewFieldArgs = {
101943
+ input?: InputMaybe<JiraFieldAggregationQueryInput>;
101797
101944
  viewId?: InputMaybe<Scalars['String']['input']>;
101798
101945
  };
101799
101946
  export declare type JiraAiAgentSession = {
@@ -105227,7 +105374,7 @@ export declare enum JiraCommentSortField {
105227
105374
  }
105228
105375
  export declare type JiraCommentSortInput = {
105229
105376
  field: JiraCommentSortField;
105230
- order: SortDirection;
105377
+ order?: InputMaybe<SortDirection>;
105231
105378
  };
105232
105379
  export declare type JiraCommentSummary = {
105233
105380
  __typename?: 'JiraCommentSummary';
@@ -107157,6 +107304,15 @@ export declare type JiraDiscardUserTimelineViewConfigPayload = Payload & {
107157
107304
  export declare type JiraDiscardUserViewConfigInput = {
107158
107305
  viewId: Scalars['ID']['input'];
107159
107306
  };
107307
+ export declare type JiraDisconnectTownsquareProjectPayload = Payload & {
107308
+ __typename?: 'JiraDisconnectTownsquareProjectPayload';
107309
+ errors?: Maybe<Array<MutationError>>;
107310
+ success: Scalars['Boolean']['output'];
107311
+ };
107312
+ export declare type JiraDisconnectTownsquareProjectToSpaceInput = {
107313
+ spaceAri: Scalars['ID']['input'];
107314
+ townsquareProjectAri: Scalars['String']['input'];
107315
+ };
107160
107316
  export declare type JiraDismissAiAgentSessionInput = {
107161
107317
  agentIdentityAccountId: Scalars['String']['input'];
107162
107318
  cloudId: Scalars['ID']['input'];
@@ -107242,6 +107398,15 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
107242
107398
  export declare type JiraDurationFieldInput = {
107243
107399
  originalEstimateField?: InputMaybe<Scalars['String']['input']>;
107244
107400
  };
107401
+ export declare enum JiraDurationUnit {
107402
+ Days = "DAYS",
107403
+ Hours = "HOURS",
107404
+ Minutes = "MINUTES",
107405
+ Months = "MONTHS",
107406
+ Seconds = "SECONDS",
107407
+ Weeks = "WEEKS",
107408
+ Years = "YEARS"
107409
+ }
107245
107410
  export declare type JiraEchoWhereInput = {
107246
107411
  delayMs?: InputMaybe<Scalars['Int']['input']>;
107247
107412
  message?: InputMaybe<Scalars['String']['input']>;
@@ -107506,6 +107671,23 @@ export declare type JiraField = {
107506
107671
  typeKey?: Maybe<Scalars['String']['output']>;
107507
107672
  typeName?: Maybe<Scalars['String']['output']>;
107508
107673
  };
107674
+ export declare type JiraFieldAggregationByBoardQuery = {
107675
+ boardId: Scalars['Long']['input'];
107676
+ cloudId: Scalars['ID']['input'];
107677
+ };
107678
+ export declare type JiraFieldAggregationByProjectQuery = {
107679
+ cloudId: Scalars['ID']['input'];
107680
+ projectIdOrKey: JiraFieldAggregationProjectIdOrKeyInput;
107681
+ };
107682
+ export declare type JiraFieldAggregationProjectIdOrKeyInput = {
107683
+ projectId?: InputMaybe<Scalars['Long']['input']>;
107684
+ projectKey?: InputMaybe<Scalars['String']['input']>;
107685
+ };
107686
+ export declare type JiraFieldAggregationQueryInput = {
107687
+ boardQuery?: InputMaybe<JiraFieldAggregationByBoardQuery>;
107688
+ projectQuery?: InputMaybe<JiraFieldAggregationByProjectQuery>;
107689
+ viewId?: InputMaybe<Scalars['ID']['input']>;
107690
+ };
107509
107691
  export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssociationInterface & {
107510
107692
  __typename?: 'JiraFieldAssociationWithIssueTypes';
107511
107693
  field?: Maybe<JiraField>;
@@ -111826,6 +112008,10 @@ export declare enum JiraIssueViewTimestampDisplayMode {
111826
112008
  Absolute = "ABSOLUTE",
111827
112009
  Relative = "RELATIVE"
111828
112010
  }
112011
+ export declare enum JiraIssueViewUwsTabPreference {
112012
+ ChildItems = "CHILD_ITEMS",
112013
+ LinkedWorkItems = "LINKED_WORK_ITEMS"
112014
+ }
111829
112015
  export declare enum JiraIssueViewUserPreferenceLayoutType {
111830
112016
  Custom = "CUSTOM",
111831
112017
  Discussion = "DISCUSSION",
@@ -113647,6 +113833,7 @@ export declare type JiraMutation = {
113647
113833
  disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
113648
113834
  discardUnpublishedChangesJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
113649
113835
  discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
113836
+ disconnectTownsquareProjectToSpace?: Maybe<JiraDisconnectTownsquareProjectPayload>;
113650
113837
  duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
113651
113838
  editCustomField?: Maybe<JiraEditCustomFieldPayload>;
113652
113839
  forge: JiraForgeMutation;
@@ -114053,6 +114240,9 @@ export declare type JiraMutationDiscardUnpublishedChangesJiraJourneyConfiguratio
114053
114240
  export declare type JiraMutationDiscardUserCalendarViewConfigArgs = {
114054
114241
  input: JiraDiscardUserViewConfigInput;
114055
114242
  };
114243
+ export declare type JiraMutationDisconnectTownsquareProjectToSpaceArgs = {
114244
+ input: JiraDisconnectTownsquareProjectToSpaceInput;
114245
+ };
114056
114246
  export declare type JiraMutationDuplicateJiraJourneyConfigurationArgs = {
114057
114247
  cloudId: Scalars['ID']['input'];
114058
114248
  input: JiraDuplicateJourneyConfigurationInput;
@@ -114854,6 +115044,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
114854
115044
  export declare type JiraNumberFieldFormatConfig = {
114855
115045
  __typename?: 'JiraNumberFieldFormatConfig';
114856
115046
  decimalSeparator?: Maybe<JiraDecimalSeparator>;
115047
+ durationUnits?: Maybe<Array<JiraDurationUnit>>;
114857
115048
  formatDecimals?: Maybe<Scalars['Int']['output']>;
114858
115049
  formatStyle?: Maybe<JiraNumberFieldFormatStyle>;
114859
115050
  formatUnit?: Maybe<Scalars['String']['output']>;
@@ -114861,6 +115052,7 @@ export declare type JiraNumberFieldFormatConfig = {
114861
115052
  };
114862
115053
  export declare type JiraNumberFieldFormatConfigInput = {
114863
115054
  decimalSeparator?: InputMaybe<JiraDecimalSeparator>;
115055
+ durationUnits?: InputMaybe<Array<JiraDurationUnit>>;
114864
115056
  formatDecimals?: InputMaybe<Scalars['Int']['input']>;
114865
115057
  formatStyle: JiraNumberFieldFormatStyle;
114866
115058
  formatUnit?: InputMaybe<Scalars['String']['input']>;
@@ -114869,6 +115061,7 @@ export declare type JiraNumberFieldFormatConfigInput = {
114869
115061
  export declare enum JiraNumberFieldFormatStyle {
114870
115062
  Currency = "CURRENCY",
114871
115063
  Decimal = "DECIMAL",
115064
+ Duration = "DURATION",
114872
115065
  Percent = "PERCENT",
114873
115066
  Unit = "UNIT"
114874
115067
  }
@@ -124231,6 +124424,7 @@ export declare type JiraUserPreferences = {
124231
124424
  issueViewShouldShowWelcomeMessage?: Maybe<Scalars['Boolean']['output']>;
124232
124425
  issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
124233
124426
  issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
124427
+ issueViewUWSTabPreference?: Maybe<JiraIssueViewUwsTabPreference>;
124234
124428
  issueViewUserPreferredLayout?: Maybe<JiraIssueViewUserPreferredLayout>;
124235
124429
  jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
124236
124430
  projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
@@ -124263,6 +124457,9 @@ export declare type JiraUserPreferencesIssueViewHiddenFieldsMenuStateArgs = {
124263
124457
  export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
124264
124458
  projectKey: Scalars['String']['input'];
124265
124459
  };
124460
+ export declare type JiraUserPreferencesIssueViewUwsTabPreferenceArgs = {
124461
+ projectKey: Scalars['String']['input'];
124462
+ };
124266
124463
  export declare type JiraUserPreferencesRequestTypeTableViewSettingsArgs = {
124267
124464
  projectKey: Scalars['String']['input'];
124268
124465
  };
@@ -127766,9 +127963,9 @@ export declare type KitsuneSnippet = Node & {
127766
127963
  createdAt: Scalars['DateTime']['output'];
127767
127964
  creator?: Maybe<User>;
127768
127965
  creatorId?: Maybe<Scalars['ID']['output']>;
127769
- feedback: KitsuneFeedback;
127966
+ feedback?: Maybe<KitsuneFeedback>;
127770
127967
  id: Scalars['ID']['output'];
127771
- insight: KitsuneInsight;
127968
+ insight?: Maybe<KitsuneInsight>;
127772
127969
  markId?: Maybe<Scalars['ID']['output']>;
127773
127970
  };
127774
127971
  export declare type KitsuneSnippetConnection = KitsuneConnection & {
@@ -133169,6 +133366,10 @@ export declare type MarketplaceStoreMutationApiUpdateReviewUpvoteArgs = {
133169
133366
  export declare type MarketplaceStoreMutationApiUpdateUserPreferencesArgs = {
133170
133367
  input: MarketplaceStoreUpdateUserPreferencesInput;
133171
133368
  };
133369
+ export declare type MarketplaceStoreNavigation = {
133370
+ __typename?: 'MarketplaceStoreNavigation';
133371
+ sideNavigation: MarketplaceStoreSideNavigationConfig;
133372
+ };
133172
133373
  export declare enum MarketplaceStoreObjectType {
133173
133374
  App = "APP"
133174
133375
  }
@@ -133303,6 +133504,7 @@ export declare type MarketplaceStorePersonalisedContextAndLayoutInput = {
133303
133504
  export declare type MarketplaceStorePersonalisedContextAndLayoutResponse = {
133304
133505
  __typename?: 'MarketplaceStorePersonalisedContextAndLayoutResponse';
133305
133506
  context: MarketplaceStorePersonalisationContext;
133507
+ navigation?: Maybe<MarketplaceStoreNavigation>;
133306
133508
  sections: Array<MarketplaceStoreLayoutSection>;
133307
133509
  };
133308
133510
  export declare type MarketplaceStorePersonalisedContextAndLayoutResponseSectionsArgs = {
@@ -133679,6 +133881,18 @@ export declare type MarketplaceStoreServiceProvider = {
133679
133881
  endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
133680
133882
  isAppServiceProvider: MarketplaceStoreAcceptableResponse;
133681
133883
  };
133884
+ export declare type MarketplaceStoreSideNavigationConfig = {
133885
+ __typename?: 'MarketplaceStoreSideNavigationConfig';
133886
+ items: Array<MarketplaceStoreSideNavigationItem>;
133887
+ };
133888
+ export declare type MarketplaceStoreSideNavigationItem = {
133889
+ __typename?: 'MarketplaceStoreSideNavigationItem';
133890
+ featureGate?: Maybe<Scalars['String']['output']>;
133891
+ iconKey: Scalars['String']['output'];
133892
+ key: Scalars['String']['output'];
133893
+ name: Scalars['String']['output'];
133894
+ path: Scalars['String']['output'];
133895
+ };
133682
133896
  export declare type MarketplaceStoreSiteDetailsInput = {
133683
133897
  cloudId: Scalars['String']['input'];
133684
133898
  product: MarketplaceStoreSiteProduct;
@@ -133942,6 +134156,52 @@ export declare type MercuryBaseJiraWorkStatusMapping = {
133942
134156
  mappedStatusKey: Scalars['String']['output'];
133943
134157
  providerMappingContext?: Maybe<MercuryJiraProviderMappingContext>;
133944
134158
  };
134159
+ export declare type MercuryBenefitItem = Node & {
134160
+ __typename?: 'MercuryBenefitItem';
134161
+ benefitType?: Maybe<MercuryBenefitType>;
134162
+ focusAreaId?: Maybe<MercuryFocusArea>;
134163
+ id: Scalars['ID']['output'];
134164
+ name: Scalars['String']['output'];
134165
+ };
134166
+ export declare type MercuryBenefitItemConnection = {
134167
+ __typename?: 'MercuryBenefitItemConnection';
134168
+ edges?: Maybe<Array<MercuryBenefitItemEdge>>;
134169
+ pageInfo: PageInfo;
134170
+ totalCount?: Maybe<Scalars['Int']['output']>;
134171
+ };
134172
+ export declare type MercuryBenefitItemEdge = {
134173
+ __typename?: 'MercuryBenefitItemEdge';
134174
+ cursor: Scalars['String']['output'];
134175
+ node?: Maybe<MercuryBenefitItem>;
134176
+ };
134177
+ export declare type MercuryBenefitItemSort = {
134178
+ field: MercuryBenefitItemSortField;
134179
+ order: SortOrder;
134180
+ };
134181
+ export declare enum MercuryBenefitItemSortField {
134182
+ Name = "NAME"
134183
+ }
134184
+ export declare type MercuryBenefitPeriodValue = Node & {
134185
+ __typename?: 'MercuryBenefitPeriodValue';
134186
+ amount?: Maybe<MercuryMoney>;
134187
+ financialVersion?: Maybe<MercuryFinancialVersion>;
134188
+ id: Scalars['ID']['output'];
134189
+ yearMonth?: Maybe<Scalars['String']['output']>;
134190
+ };
134191
+ export declare type MercuryBenefitType = Node & {
134192
+ __typename?: 'MercuryBenefitType';
134193
+ createdBy?: Maybe<User>;
134194
+ createdDate?: Maybe<Scalars['String']['output']>;
134195
+ id: Scalars['ID']['output'];
134196
+ name: Scalars['String']['output'];
134197
+ references?: Maybe<MercuryBenefitTypeReferences>;
134198
+ updatedBy?: Maybe<User>;
134199
+ updatedDate?: Maybe<Scalars['String']['output']>;
134200
+ };
134201
+ export declare type MercuryBenefitTypeReferences = {
134202
+ __typename?: 'MercuryBenefitTypeReferences';
134203
+ count?: Maybe<Scalars['Int']['output']>;
134204
+ };
133945
134205
  export declare type MercuryBooleanCustomField = MercuryCustomField & {
133946
134206
  __typename?: 'MercuryBooleanCustomField';
133947
134207
  booleanValue?: Maybe<Scalars['Boolean']['output']>;
@@ -134104,6 +134364,8 @@ export declare type MercuryChangeProposalFundSummary = {
134104
134364
  export declare type MercuryChangeProposalFunding = {
134105
134365
  __typename?: 'MercuryChangeProposalFunding';
134106
134366
  fundsRequested?: Maybe<Scalars['BigDecimal']['output']>;
134367
+ targetBenefit?: Maybe<Scalars['BigDecimal']['output']>;
134368
+ targetRoi?: Maybe<Scalars['Float']['output']>;
134107
134369
  };
134108
134370
  export declare type MercuryChangeProposalImpact = {
134109
134371
  __typename?: 'MercuryChangeProposalImpact';
@@ -134388,6 +134650,38 @@ export declare type MercuryCreateBaseCustomFieldDefinitionInput = {
134388
134650
  description?: InputMaybe<Scalars['String']['input']>;
134389
134651
  name: Scalars['String']['input'];
134390
134652
  };
134653
+ export declare type MercuryCreateBenefitItemInput = {
134654
+ focusAreaId: Scalars['ID']['input'];
134655
+ name: Scalars['String']['input'];
134656
+ };
134657
+ export declare type MercuryCreateBenefitItemPayload = Payload & {
134658
+ __typename?: 'MercuryCreateBenefitItemPayload';
134659
+ createdBenefitItem?: Maybe<MercuryBenefitItem>;
134660
+ errors?: Maybe<Array<MutationError>>;
134661
+ success: Scalars['Boolean']['output'];
134662
+ };
134663
+ export declare type MercuryCreateBenefitPeriodValueInput = {
134664
+ amount: Scalars['String']['input'];
134665
+ benefitItemId: Scalars['ID']['input'];
134666
+ financialVersionId: Scalars['ID']['input'];
134667
+ yearMonth: Scalars['String']['input'];
134668
+ };
134669
+ export declare type MercuryCreateBenefitPeriodValuePayload = Payload & {
134670
+ __typename?: 'MercuryCreateBenefitPeriodValuePayload';
134671
+ createdBenefitPeriodValue?: Maybe<MercuryBenefitPeriodValue>;
134672
+ errors?: Maybe<Array<MutationError>>;
134673
+ success: Scalars['Boolean']['output'];
134674
+ };
134675
+ export declare type MercuryCreateBenefitTypeInput = {
134676
+ cloudId: Scalars['ID']['input'];
134677
+ name: Scalars['String']['input'];
134678
+ };
134679
+ export declare type MercuryCreateBenefitTypePayload = Payload & {
134680
+ __typename?: 'MercuryCreateBenefitTypePayload';
134681
+ createdBenefitType?: Maybe<MercuryBenefitType>;
134682
+ errors?: Maybe<Array<MutationError>>;
134683
+ success: Scalars['Boolean']['output'];
134684
+ };
134391
134685
  export declare type MercuryCreateBooleanCustomFieldDefinitionInput = {
134392
134686
  base: MercuryCreateBaseCustomFieldDefinitionInput;
134393
134687
  };
@@ -134775,6 +135069,30 @@ export declare type MercuryDeleteAllPreferencesByUserPayload = Payload & {
134775
135069
  errors?: Maybe<Array<MutationError>>;
134776
135070
  success: Scalars['Boolean']['output'];
134777
135071
  };
135072
+ export declare type MercuryDeleteBenefitItemInput = {
135073
+ id: Scalars['ID']['input'];
135074
+ };
135075
+ export declare type MercuryDeleteBenefitItemPayload = Payload & {
135076
+ __typename?: 'MercuryDeleteBenefitItemPayload';
135077
+ errors?: Maybe<Array<MutationError>>;
135078
+ success: Scalars['Boolean']['output'];
135079
+ };
135080
+ export declare type MercuryDeleteBenefitPeriodValueInput = {
135081
+ id: Scalars['ID']['input'];
135082
+ };
135083
+ export declare type MercuryDeleteBenefitPeriodValuePayload = Payload & {
135084
+ __typename?: 'MercuryDeleteBenefitPeriodValuePayload';
135085
+ errors?: Maybe<Array<MutationError>>;
135086
+ success: Scalars['Boolean']['output'];
135087
+ };
135088
+ export declare type MercuryDeleteBenefitTypeInput = {
135089
+ id: Scalars['ID']['input'];
135090
+ };
135091
+ export declare type MercuryDeleteBenefitTypePayload = Payload & {
135092
+ __typename?: 'MercuryDeleteBenefitTypePayload';
135093
+ errors?: Maybe<Array<MutationError>>;
135094
+ success: Scalars['Boolean']['output'];
135095
+ };
134778
135096
  export declare type MercuryDeleteChangeProposalCommentInput = {
134779
135097
  cloudId?: InputMaybe<Scalars['ID']['input']>;
134780
135098
  id: Scalars['ID']['input'];
@@ -135621,16 +135939,25 @@ export declare type MercuryFundsMonthlySummary = {
135621
135939
  };
135622
135940
  export declare type MercuryFundsMutationApi = {
135623
135941
  __typename?: 'MercuryFundsMutationApi';
135942
+ createBenefitItem?: Maybe<MercuryCreateBenefitItemPayload>;
135943
+ createBenefitPeriodValue?: Maybe<MercuryCreateBenefitPeriodValuePayload>;
135944
+ createBenefitType?: Maybe<MercuryCreateBenefitTypePayload>;
135624
135945
  createCostItem?: Maybe<MercuryCreateCostItemPayload>;
135625
135946
  createCostPeriodValue?: Maybe<MercuryCreateCostPeriodValuePayload>;
135626
135947
  createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
135627
135948
  createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
135628
135949
  createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
135950
+ deleteBenefitItem?: Maybe<MercuryDeleteBenefitItemPayload>;
135951
+ deleteBenefitPeriodValue?: Maybe<MercuryDeleteBenefitPeriodValuePayload>;
135952
+ deleteBenefitType?: Maybe<MercuryDeleteBenefitTypePayload>;
135629
135953
  deleteCostItem?: Maybe<MercuryDeleteCostItemPayload>;
135630
135954
  deleteCostPeriodValue?: Maybe<MercuryDeleteCostPeriodValuePayload>;
135631
135955
  deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
135632
135956
  deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
135633
135957
  updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
135958
+ updateBenefitItemBenefitType?: Maybe<MercuryUpdateBenefitItemBenefitTypePayload>;
135959
+ updateBenefitPeriodValueAmount?: Maybe<MercuryUpdateBenefitPeriodValueAmountPayload>;
135960
+ updateBenefitTypeName?: Maybe<MercuryUpdateBenefitTypePayload>;
135634
135961
  updateCostItemClassification?: Maybe<MercuryUpdateCostItemClassificationPayload>;
135635
135962
  updateCostItemExpenditureType?: Maybe<MercuryUpdateCostItemExpenditureTypePayload>;
135636
135963
  updateCostItemInvestmentCategory?: Maybe<MercuryUpdateCostItemInvestmentCategoryPayload>;
@@ -135639,6 +135966,15 @@ export declare type MercuryFundsMutationApi = {
135639
135966
  updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
135640
135967
  updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
135641
135968
  };
135969
+ export declare type MercuryFundsMutationApiCreateBenefitItemArgs = {
135970
+ input: MercuryCreateBenefitItemInput;
135971
+ };
135972
+ export declare type MercuryFundsMutationApiCreateBenefitPeriodValueArgs = {
135973
+ input: MercuryCreateBenefitPeriodValueInput;
135974
+ };
135975
+ export declare type MercuryFundsMutationApiCreateBenefitTypeArgs = {
135976
+ input: MercuryCreateBenefitTypeInput;
135977
+ };
135642
135978
  export declare type MercuryFundsMutationApiCreateCostItemArgs = {
135643
135979
  input: MercuryCreateCostItemInput;
135644
135980
  };
@@ -135654,6 +135990,15 @@ export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs
135654
135990
  export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
135655
135991
  input: MercuryCreateInvestmentCategoryInput;
135656
135992
  };
135993
+ export declare type MercuryFundsMutationApiDeleteBenefitItemArgs = {
135994
+ input: MercuryDeleteBenefitItemInput;
135995
+ };
135996
+ export declare type MercuryFundsMutationApiDeleteBenefitPeriodValueArgs = {
135997
+ input: MercuryDeleteBenefitPeriodValueInput;
135998
+ };
135999
+ export declare type MercuryFundsMutationApiDeleteBenefitTypeArgs = {
136000
+ input: MercuryDeleteBenefitTypeInput;
136001
+ };
135657
136002
  export declare type MercuryFundsMutationApiDeleteCostItemArgs = {
135658
136003
  input: MercuryDeleteCostItemInput;
135659
136004
  };
@@ -135669,6 +136014,15 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
135669
136014
  export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
135670
136015
  input: MercuryUpdateActiveCurrencyInput;
135671
136016
  };
136017
+ export declare type MercuryFundsMutationApiUpdateBenefitItemBenefitTypeArgs = {
136018
+ input: MercuryUpdateBenefitItemBenefitTypeInput;
136019
+ };
136020
+ export declare type MercuryFundsMutationApiUpdateBenefitPeriodValueAmountArgs = {
136021
+ input: MercuryUpdateBenefitPeriodValueAmountInput;
136022
+ };
136023
+ export declare type MercuryFundsMutationApiUpdateBenefitTypeNameArgs = {
136024
+ input: MercuryUpdateBenefitTypeNameInput;
136025
+ };
135672
136026
  export declare type MercuryFundsMutationApiUpdateCostItemClassificationArgs = {
135673
136027
  input: MercuryUpdateCostItemClassificationInput;
135674
136028
  };
@@ -135694,6 +136048,11 @@ export declare type MercuryFundsQueryApi = {
135694
136048
  __typename?: 'MercuryFundsQueryApi';
135695
136049
  activeCurrency: MercuryCurrency;
135696
136050
  activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
136051
+ benefitItems?: Maybe<Array<Maybe<MercuryBenefitItem>>>;
136052
+ benefitItemsSearch?: Maybe<MercuryBenefitItemConnection>;
136053
+ benefitPeriodValues?: Maybe<Array<Maybe<MercuryBenefitPeriodValue>>>;
136054
+ benefitTypes?: Maybe<Array<Maybe<MercuryBenefitType>>>;
136055
+ benefitTypesByIds?: Maybe<Array<Maybe<MercuryBenefitType>>>;
135697
136056
  costItems?: Maybe<Array<Maybe<MercuryCostItem>>>;
135698
136057
  costItemsSearch?: Maybe<MercuryCostItemConnection>;
135699
136058
  costPeriodValues?: Maybe<Array<Maybe<MercuryCostPeriodValue>>>;
@@ -135719,6 +136078,25 @@ export declare type MercuryFundsQueryApiActiveCurrencyArgs = {
135719
136078
  export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
135720
136079
  cloudId?: InputMaybe<Scalars['ID']['input']>;
135721
136080
  };
136081
+ export declare type MercuryFundsQueryApiBenefitItemsArgs = {
136082
+ ids: Array<Scalars['ID']['input']>;
136083
+ };
136084
+ export declare type MercuryFundsQueryApiBenefitItemsSearchArgs = {
136085
+ after?: InputMaybe<Scalars['String']['input']>;
136086
+ cloudId: Scalars['ID']['input'];
136087
+ first?: InputMaybe<Scalars['Int']['input']>;
136088
+ q?: InputMaybe<Scalars['String']['input']>;
136089
+ sort?: InputMaybe<Array<InputMaybe<MercuryBenefitItemSort>>>;
136090
+ };
136091
+ export declare type MercuryFundsQueryApiBenefitPeriodValuesArgs = {
136092
+ ids: Array<Scalars['ID']['input']>;
136093
+ };
136094
+ export declare type MercuryFundsQueryApiBenefitTypesArgs = {
136095
+ cloudId: Scalars['ID']['input'];
136096
+ };
136097
+ export declare type MercuryFundsQueryApiBenefitTypesByIdsArgs = {
136098
+ ids: Array<Scalars['ID']['input']>;
136099
+ };
135722
136100
  export declare type MercuryFundsQueryApiCostItemsArgs = {
135723
136101
  ids: Array<Scalars['ID']['input']>;
135724
136102
  };
@@ -135850,6 +136228,7 @@ export declare enum MercuryImportExecutionErrorEntityType {
135850
136228
  FocusArea = "FOCUS_AREA",
135851
136229
  FocusAreaFunds = "FOCUS_AREA_FUNDS",
135852
136230
  FocusAreaLink = "FOCUS_AREA_LINK",
136231
+ FundsCostItem = "FUNDS_COST_ITEM",
135853
136232
  PeopleBudget = "PEOPLE_BUDGET",
135854
136233
  Team = "TEAM",
135855
136234
  TeamAllocation = "TEAM_ALLOCATION"
@@ -136206,6 +136585,7 @@ export declare type MercuryLinkedGoalUpdate = {
136206
136585
  oldTargetDate?: Maybe<Scalars['String']['output']>;
136207
136586
  summary?: Maybe<Scalars['String']['output']>;
136208
136587
  };
136588
+ export declare type MercuryLinkedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
136209
136589
  export declare type MercuryMediaToken = {
136210
136590
  __typename?: 'MercuryMediaToken';
136211
136591
  token: Scalars['String']['output'];
@@ -137400,11 +137780,12 @@ export declare type MercuryRisk = Node & {
137400
137780
  description?: Maybe<Scalars['String']['output']>;
137401
137781
  id: Scalars['ID']['output'];
137402
137782
  impact?: Maybe<MercuryRiskImpact>;
137783
+ impactedWorkItems?: Maybe<Array<MercuryLinkedWork>>;
137403
137784
  justification?: Maybe<Scalars['String']['output']>;
137404
137785
  likelihood?: Maybe<MercuryRiskLikelihood>;
137405
137786
  linkedFocusAreas?: Maybe<Array<MercuryFocusArea>>;
137406
137787
  name: Scalars['String']['output'];
137407
- owner?: Maybe<Scalars['ID']['output']>;
137788
+ owner?: Maybe<User>;
137408
137789
  status?: Maybe<MercuryRiskStatus>;
137409
137790
  statusTransitions?: Maybe<MercuryRiskStatusTransitions>;
137410
137791
  submitter?: Maybe<User>;
@@ -137779,6 +138160,8 @@ export declare type MercuryStrategicEventsMutationApi = {
137779
138160
  updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
137780
138161
  updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
137781
138162
  updateChangeProposalRankInView?: Maybe<MercuryUpdateChangeProposalRankInViewPayload>;
138163
+ updateChangeProposalTargetBenefit?: Maybe<MercuryUpdateChangeProposalPayload>;
138164
+ updateChangeProposalTargetRoi?: Maybe<MercuryUpdateChangeProposalPayload>;
137782
138165
  updateChangeProposalsViewName?: Maybe<MercuryUpdateChangeProposalsViewNamePayload>;
137783
138166
  updateChangeProposalsViewSettings?: Maybe<MercuryUpdateChangeProposalsViewSettingsPayload>;
137784
138167
  updateMoveFundsChange: MercuryUpdateChangePayload;
@@ -137903,6 +138286,12 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerAr
137903
138286
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalRankInViewArgs = {
137904
138287
  input: MercuryUpdateChangeProposalRankInViewInput;
137905
138288
  };
138289
+ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalTargetBenefitArgs = {
138290
+ input: MercuryUpdateChangeProposalTargetBenefitInput;
138291
+ };
138292
+ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalTargetRoiArgs = {
138293
+ input: MercuryUpdateChangeProposalTargetRoiInput;
138294
+ };
137906
138295
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewNameArgs = {
137907
138296
  input: MercuryUpdateChangeProposalsViewNameInput;
137908
138297
  };
@@ -138244,6 +138633,36 @@ export declare type MercuryUpdateActiveCurrencyPayload = Payload & {
138244
138633
  success: Scalars['Boolean']['output'];
138245
138634
  updatedActiveCurrency?: Maybe<MercuryCurrency>;
138246
138635
  };
138636
+ export declare type MercuryUpdateBenefitItemBenefitTypeInput = {
138637
+ benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
138638
+ id: Scalars['ID']['input'];
138639
+ };
138640
+ export declare type MercuryUpdateBenefitItemBenefitTypePayload = Payload & {
138641
+ __typename?: 'MercuryUpdateBenefitItemBenefitTypePayload';
138642
+ errors?: Maybe<Array<MutationError>>;
138643
+ success: Scalars['Boolean']['output'];
138644
+ updatedBenefitItem?: Maybe<MercuryBenefitItem>;
138645
+ };
138646
+ export declare type MercuryUpdateBenefitPeriodValueAmountInput = {
138647
+ amount: Scalars['String']['input'];
138648
+ id: Scalars['ID']['input'];
138649
+ };
138650
+ export declare type MercuryUpdateBenefitPeriodValueAmountPayload = Payload & {
138651
+ __typename?: 'MercuryUpdateBenefitPeriodValueAmountPayload';
138652
+ errors?: Maybe<Array<MutationError>>;
138653
+ success: Scalars['Boolean']['output'];
138654
+ updatedBenefitPeriodValue?: Maybe<MercuryBenefitPeriodValue>;
138655
+ };
138656
+ export declare type MercuryUpdateBenefitTypeNameInput = {
138657
+ id: Scalars['ID']['input'];
138658
+ name: Scalars['String']['input'];
138659
+ };
138660
+ export declare type MercuryUpdateBenefitTypePayload = Payload & {
138661
+ __typename?: 'MercuryUpdateBenefitTypePayload';
138662
+ errors?: Maybe<Array<MutationError>>;
138663
+ success: Scalars['Boolean']['output'];
138664
+ updatedBenefitType?: Maybe<MercuryBenefitType>;
138665
+ };
138247
138666
  export declare type MercuryUpdateChangeFocusAreaInput = {
138248
138667
  focusAreaId?: InputMaybe<Scalars['ID']['input']>;
138249
138668
  };
@@ -138310,6 +138729,14 @@ export declare type MercuryUpdateChangeProposalRankInViewPayload = Payload & {
138310
138729
  success: Scalars['Boolean']['output'];
138311
138730
  updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
138312
138731
  };
138732
+ export declare type MercuryUpdateChangeProposalTargetBenefitInput = {
138733
+ id: Scalars['ID']['input'];
138734
+ targetBenefit?: InputMaybe<Scalars['BigDecimal']['input']>;
138735
+ };
138736
+ export declare type MercuryUpdateChangeProposalTargetRoiInput = {
138737
+ id: Scalars['ID']['input'];
138738
+ targetRoi?: InputMaybe<Scalars['Float']['input']>;
138739
+ };
138313
138740
  export declare type MercuryUpdateChangeProposalsViewNameInput = {
138314
138741
  id: Scalars['ID']['input'];
138315
138742
  name: Scalars['String']['input'];
@@ -139831,6 +140258,7 @@ export declare type Mutation = {
139831
140258
  radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
139832
140259
  radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
139833
140260
  radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
140261
+ radar_updateNotificationSettings?: Maybe<Array<RadarNotification>>;
139834
140262
  radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
139835
140263
  radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
139836
140264
  radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
@@ -142755,6 +143183,7 @@ export declare type MutationKitsune_CreateCustomerArgs = {
142755
143183
  export declare type MutationKitsune_CreateFeedbackArgs = {
142756
143184
  content: Scalars['KitsuneADF']['input'];
142757
143185
  customerId?: InputMaybe<Scalars['ID']['input']>;
143186
+ organizationId?: InputMaybe<Scalars['ID']['input']>;
142758
143187
  reporterId?: InputMaybe<Scalars['ID']['input']>;
142759
143188
  source?: InputMaybe<KitsuneSourceInput>;
142760
143189
  sourceNew?: InputMaybe<KitsuneSourceInputNew>;
@@ -142825,6 +143254,7 @@ export declare type MutationKitsune_UpdateFeedbackArgs = {
142825
143254
  content?: InputMaybe<Scalars['KitsuneADF']['input']>;
142826
143255
  customerId?: InputMaybe<Scalars['ID']['input']>;
142827
143256
  id: Scalars['ID']['input'];
143257
+ organizationId?: InputMaybe<Scalars['ID']['input']>;
142828
143258
  reporterId?: InputMaybe<Scalars['ID']['input']>;
142829
143259
  source?: InputMaybe<KitsuneSourceInputNew>;
142830
143260
  summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
@@ -143188,6 +143618,10 @@ export declare type MutationRadar_UpdateFocusAreaProposalChangesArgs = {
143188
143618
  cloudId: Scalars['ID']['input'];
143189
143619
  input: Array<RadarPositionProposalChangeInput>;
143190
143620
  };
143621
+ export declare type MutationRadar_UpdateNotificationSettingsArgs = {
143622
+ cloudId: Scalars['ID']['input'];
143623
+ input: Array<RadarNotificationInput>;
143624
+ };
143191
143625
  export declare type MutationRadar_UpdatePositionLaborCostEstimateSettingsArgs = {
143192
143626
  cloudId: Scalars['ID']['input'];
143193
143627
  input: RadarUpdatePositionLaborCostEstimateSettingsInput;
@@ -146507,11 +146941,12 @@ export declare enum PostOfficeMessageCreationType {
146507
146941
  export declare type PostOfficeMessageData = PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
146508
146942
  export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
146509
146943
  __typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
146510
- nudgeMessage?: Maybe<Scalars['String']['output']>;
146944
+ description?: Maybe<Scalars['String']['output']>;
146945
+ title?: Maybe<Scalars['String']['output']>;
146511
146946
  };
146512
146947
  export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
146513
146948
  __typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
146514
- message: Scalars['String']['output'];
146949
+ description?: Maybe<Scalars['String']['output']>;
146515
146950
  title?: Maybe<Scalars['String']['output']>;
146516
146951
  };
146517
146952
  export declare type PostOfficeMessagePayload = {
@@ -147030,6 +147465,7 @@ export declare type Query = {
147030
147465
  agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
147031
147466
  agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
147032
147467
  agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
147468
+ agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
147033
147469
  agentWorkspace_findBestMatchAgents?: Maybe<AgentWorkspaceFindBestMatchAgentsPayload>;
147034
147470
  agentWorkspace_hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
147035
147471
  agentWorkspace_hierarchyDefinitions?: Maybe<AgentWorkspaceHierarchyDefinitionConnection>;
@@ -147141,6 +147577,7 @@ export declare type Query = {
147141
147577
  assetsVertical_bundle: AssetsVerticalBundle;
147142
147578
  assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
147143
147579
  assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
147580
+ assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
147144
147581
  assets_objectById?: Maybe<AssetsObjectNode>;
147145
147582
  assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
147146
147583
  assets_objectTypeAttributesForServices?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
@@ -147320,6 +147757,7 @@ export declare type Query = {
147320
147757
  confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
147321
147758
  confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
147322
147759
  confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
147760
+ confluence_latestInProgressSpacePermissionTransitionTaskId?: Maybe<Scalars['String']['output']>;
147323
147761
  confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
147324
147762
  confluence_legacyEditorReportDownloadLink?: Maybe<ConfluenceLegacyEditorReportDownloadLink>;
147325
147763
  confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
@@ -147912,6 +148350,7 @@ export declare type Query = {
147912
148350
  radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
147913
148351
  radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
147914
148352
  radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
148353
+ radar_notificationSettings?: Maybe<Array<RadarNotification>>;
147915
148354
  radar_positionByAri?: Maybe<RadarPosition>;
147916
148355
  radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
147917
148356
  radar_positionsByAris?: Maybe<Array<RadarPosition>>;
@@ -148650,6 +149089,7 @@ export declare type QueryAgentWorkspace_AvailabilityArgs = {
148650
149089
  after?: InputMaybe<Scalars['String']['input']>;
148651
149090
  first?: InputMaybe<Scalars['Int']['input']>;
148652
149091
  input: AgentWorkspaceAvailabilityInput;
149092
+ isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
148653
149093
  };
148654
149094
  export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
148655
149095
  cloudId: Scalars['ID']['input'];
@@ -148679,6 +149119,9 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
148679
149119
  cloudId: Scalars['ID']['input'];
148680
149120
  projectKey: Scalars['String']['input'];
148681
149121
  };
149122
+ export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
149123
+ projectAri: Scalars['ID']['input'];
149124
+ };
148682
149125
  export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
148683
149126
  input: AgentWorkspaceFindBestMatchAgentsInput;
148684
149127
  };
@@ -149258,6 +149701,10 @@ export declare type QueryAssetsVertical_InsightsArgs = {
149258
149701
  cloudId: Scalars['ID']['input'];
149259
149702
  jobId?: InputMaybe<Scalars['ID']['input']>;
149260
149703
  };
149704
+ export declare type QueryAssetsVertical_ObjectsArgs = {
149705
+ cloudId: Scalars['ID']['input'];
149706
+ input?: InputMaybe<AssetsVerticalObjectsInput>;
149707
+ };
149261
149708
  export declare type QueryAssets_ObjectByIdArgs = {
149262
149709
  id: Scalars['ID']['input'];
149263
149710
  };
@@ -149343,12 +149790,12 @@ export declare type QueryAvp_GetFilterExpressionArgs = {
149343
149790
  dashboardAri: Scalars['ID']['input'];
149344
149791
  };
149345
149792
  export declare type QueryAvpanalytics_GetDataSourceArgs = {
149346
- input: AvpAnalyticsGetDataSourceInput;
149793
+ cloudId: Scalars['ID']['input'];
149794
+ dataSourceId: Scalars['ID']['input'];
149347
149795
  };
149348
149796
  export declare type QueryAvpanalytics_GetDataSourcesArgs = {
149349
149797
  cloudId: Scalars['ID']['input'];
149350
149798
  searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
149351
- workspaceId: Scalars['ID']['input'];
149352
149799
  };
149353
149800
  export declare type QueryAvpanalytics_GetModelArgs = {
149354
149801
  cloudId: Scalars['ID']['input'];
@@ -149971,6 +150418,9 @@ export declare type QueryConfluence_IsWatchingLabelArgs = {
149971
150418
  cloudId: Scalars['ID']['input'];
149972
150419
  input: ConfluenceLabelWatchInput;
149973
150420
  };
150421
+ export declare type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskIdArgs = {
150422
+ cloudId: Scalars['ID']['input'];
150423
+ };
149974
150424
  export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
149975
150425
  cloudId: Scalars['String']['input'];
149976
150426
  contentId: Scalars['ID']['input'];
@@ -152328,6 +152778,9 @@ export declare type QueryRadar_LastAppliedFilterArgs = {
152328
152778
  cloudId: Scalars['ID']['input'];
152329
152779
  pageName: Scalars['String']['input'];
152330
152780
  };
152781
+ export declare type QueryRadar_NotificationSettingsArgs = {
152782
+ cloudId: Scalars['ID']['input'];
152783
+ };
152331
152784
  export declare type QueryRadar_PositionByAriArgs = {
152332
152785
  id: Scalars['ID']['input'];
152333
152786
  };
@@ -153615,6 +154068,30 @@ export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
153615
154068
  sensitivityLevel: RadarSensitivityLevel;
153616
154069
  type: RadarFieldType;
153617
154070
  };
154071
+ export declare type RadarNotification = {
154072
+ __typename?: 'RadarNotification';
154073
+ channel: RadarNotificationChannel;
154074
+ enabled: Scalars['Boolean']['output'];
154075
+ group: RadarNotificationGroup;
154076
+ id: Scalars['ID']['output'];
154077
+ type: RadarNotificationType;
154078
+ };
154079
+ export declare enum RadarNotificationChannel {
154080
+ InApp = "IN_APP"
154081
+ }
154082
+ export declare enum RadarNotificationGroup {
154083
+ RealTime = "REAL_TIME"
154084
+ }
154085
+ export declare type RadarNotificationInput = {
154086
+ channel: RadarNotificationChannel;
154087
+ enabled: Scalars['Boolean']['input'];
154088
+ group: RadarNotificationGroup;
154089
+ type: RadarNotificationType;
154090
+ };
154091
+ export declare enum RadarNotificationType {
154092
+ DataIngestionFailure = "DATA_INGESTION_FAILURE",
154093
+ DataIngestionSuccess = "DATA_INGESTION_SUCCESS"
154094
+ }
153618
154095
  export declare enum RadarNumericAppearance {
153619
154096
  Duration = "DURATION",
153620
154097
  Number = "NUMBER"
@@ -180586,6 +181063,7 @@ export declare type TeamMutation = {
180586
181063
  setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
180587
181064
  setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
180588
181065
  unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
181066
+ unlinkManagedTeams?: Maybe<TeamUnlinkManagedTeamsPayload>;
180589
181067
  updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
180590
181068
  updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
180591
181069
  updateTeam?: Maybe<TeamUpdatePayload>;
@@ -180668,6 +181146,10 @@ export declare type TeamMutationUnlinkCustomFieldFromOptionArgs = {
180668
181146
  customFieldValueId: Scalars['ID']['input'];
180669
181147
  teamId: Scalars['ID']['input'];
180670
181148
  };
181149
+ export declare type TeamMutationUnlinkManagedTeamsArgs = {
181150
+ scopeId: Scalars['ID']['input'];
181151
+ teamIds: Array<Scalars['ID']['input']>;
181152
+ };
180671
181153
  export declare type TeamMutationUpdateCustomFieldArgs = {
180672
181154
  customFieldData: TeamUpdateCustomFieldPayload;
180673
181155
  id: Scalars['ID']['input'];
@@ -181005,6 +181487,19 @@ export declare type TeamTypeUpdatePayload = {
181005
181487
  description?: InputMaybe<Scalars['String']['input']>;
181006
181488
  name?: InputMaybe<Scalars['String']['input']>;
181007
181489
  };
181490
+ export declare type TeamUnlinkManagedTeamError = {
181491
+ __typename?: 'TeamUnlinkManagedTeamError';
181492
+ errorCode: Scalars['String']['output'];
181493
+ message?: Maybe<Scalars['String']['output']>;
181494
+ teamId: Scalars['ID']['output'];
181495
+ };
181496
+ export declare type TeamUnlinkManagedTeamsPayload = Payload & {
181497
+ __typename?: 'TeamUnlinkManagedTeamsPayload';
181498
+ errors?: Maybe<Array<MutationError>>;
181499
+ failedTeams?: Maybe<Array<TeamUnlinkManagedTeamError>>;
181500
+ success: Scalars['Boolean']['output'];
181501
+ successfulTeams?: Maybe<Array<Scalars['ID']['output']>>;
181502
+ };
181008
181503
  export declare type TeamUpdateCustomFieldPayload = {
181009
181504
  description?: InputMaybe<Scalars['String']['input']>;
181010
181505
  name?: InputMaybe<Scalars['String']['input']>;