@forge/cli-shared 8.6.0 → 8.7.0-next.1

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.
@@ -165,7 +165,7 @@ export declare type AvpChart = {
165
165
  chartConfig?: Maybe<AvpChartConfig>;
166
166
  chartLayout?: Maybe<AvpChartLayout>;
167
167
  chartType?: Maybe<Scalars['String']['output']>;
168
- envVarId?: Maybe<Scalars['ID']['output']>;
168
+ envVar?: Maybe<AvpEnvVar>;
169
169
  id?: Maybe<Scalars['ID']['output']>;
170
170
  pipeline?: Maybe<AvpChartPipeline>;
171
171
  templateChartId?: Maybe<Scalars['String']['output']>;
@@ -398,6 +398,17 @@ export declare type AvpCreateChartPayload = Payload & {
398
398
  errors?: Maybe<Array<MutationError>>;
399
399
  success: Scalars['Boolean']['output'];
400
400
  };
401
+ export declare type AvpCreateDashboardInput = {
402
+ cloudId: Scalars['ID']['input'];
403
+ dashboard: AvpDashboardInput;
404
+ workspaceId: Scalars['ID']['input'];
405
+ };
406
+ export declare type AvpCreateDashboardPayload = Payload & {
407
+ __typename?: 'AVPCreateDashboardPayload';
408
+ dashboard?: Maybe<AvpDashboard>;
409
+ errors?: Maybe<Array<MutationError>>;
410
+ success: Scalars['Boolean']['output'];
411
+ };
401
412
  export declare type AvpDashboard = {
402
413
  __typename?: 'AVPDashboard';
403
414
  access?: Maybe<Scalars['Int']['output']>;
@@ -473,6 +484,11 @@ export declare enum AvpDashboardStatus {
473
484
  Archived = "ARCHIVED",
474
485
  Trashed = "TRASHED"
475
486
  }
487
+ export declare enum AvpDashboardStatusAction {
488
+ Archive = "ARCHIVE",
489
+ Restore = "RESTORE",
490
+ Trash = "TRASH"
491
+ }
476
492
  export declare type AvpDatasourceLocator = {
477
493
  __typename?: 'AVPDatasourceLocator';
478
494
  cloudId?: Maybe<Scalars['String']['output']>;
@@ -674,6 +690,16 @@ export declare type AvpUpdateDashboardRowNumElementsPayload = Payload & {
674
690
  errors?: Maybe<Array<MutationError>>;
675
691
  success: Scalars['Boolean']['output'];
676
692
  };
693
+ export declare type AvpUpdateDashboardStatusInput = {
694
+ action: AvpDashboardStatusAction;
695
+ dashboardAris: Array<Scalars['ID']['input']>;
696
+ };
697
+ export declare type AvpUpdateDashboardStatusPayload = Payload & {
698
+ __typename?: 'AVPUpdateDashboardStatusPayload';
699
+ dashboards?: Maybe<Array<Maybe<AvpDashboard>>>;
700
+ errors?: Maybe<Array<MutationError>>;
701
+ success: Scalars['Boolean']['output'];
702
+ };
677
703
  export declare enum AcceptableResponse {
678
704
  False = "FALSE",
679
705
  NotApplicable = "NOT_APPLICABLE",
@@ -2329,6 +2355,25 @@ export declare type AgentStudioConnectedChannels = {
2329
2355
  __typename?: 'AgentStudioConnectedChannels';
2330
2356
  channels?: Maybe<Array<AgentStudioChannel>>;
2331
2357
  };
2358
+ export declare type AgentStudioConversationReport = {
2359
+ __typename?: 'AgentStudioConversationReport';
2360
+ agentId: Scalars['ID']['output'];
2361
+ deflections?: Maybe<Array<AgentStudioConversationReportCount>>;
2362
+ handoffs?: Maybe<Array<AgentStudioConversationReportCount>>;
2363
+ period?: Maybe<AgentStudioConversationReportPeriod>;
2364
+ uniqueConversations?: Maybe<Array<AgentStudioConversationReportCount>>;
2365
+ uniqueUsers?: Maybe<Array<AgentStudioConversationReportCount>>;
2366
+ };
2367
+ export declare type AgentStudioConversationReportByAgentIdResult = AgentStudioConversationReport | QueryError;
2368
+ export declare type AgentStudioConversationReportCount = {
2369
+ __typename?: 'AgentStudioConversationReportCount';
2370
+ count?: Maybe<Scalars['Int']['output']>;
2371
+ startAt?: Maybe<Scalars['String']['output']>;
2372
+ };
2373
+ export declare enum AgentStudioConversationReportPeriod {
2374
+ Daily = "DAILY",
2375
+ Monthly = "MONTHLY"
2376
+ }
2332
2377
  export declare type AgentStudioConversationStarterSuggestions = {
2333
2378
  __typename?: 'AgentStudioConversationStarterSuggestions';
2334
2379
  suggestions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -4927,6 +4972,11 @@ export declare type AssetsDmObjectsListDataRows = {
4927
4972
  pageInfo: AssetsDmObjectsListPageInfo;
4928
4973
  totalCount: Scalars['Int']['output'];
4929
4974
  };
4975
+ export declare type AssetsDmObjectsListExportRequestCreateResponse = {
4976
+ __typename?: 'AssetsDMObjectsListExportRequestCreateResponse';
4977
+ isSuccessful: Scalars['Boolean']['output'];
4978
+ message: Scalars['String']['output'];
4979
+ };
4930
4980
  export declare enum AssetsDmObjectsListIconType {
4931
4981
  Failed = "FAILED",
4932
4982
  Success = "SUCCESS",
@@ -8181,6 +8231,10 @@ export declare enum ChannelPlatformContactState {
8181
8231
  Initialized = "INITIALIZED",
8182
8232
  Unassigned = "UNASSIGNED"
8183
8233
  }
8234
+ export declare type ChannelPlatformCustomerConversationsResponse = {
8235
+ __typename?: 'ChannelPlatformCustomerConversationsResponse';
8236
+ conversations?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
8237
+ };
8184
8238
  export declare type ChannelPlatformEventRelayRequest = {
8185
8239
  channelType?: InputMaybe<ChannelPlatformChannelType>;
8186
8240
  conversationId?: InputMaybe<Scalars['String']['input']>;
@@ -8206,10 +8260,6 @@ export declare type ChannelPlatformGetChannelTokenResponse = {
8206
8260
  participantToken?: Maybe<Scalars['String']['output']>;
8207
8261
  region?: Maybe<Scalars['String']['output']>;
8208
8262
  };
8209
- export declare type ChannelPlatformGetContactIdResponse = {
8210
- __typename?: 'ChannelPlatformGetContactIdResponse';
8211
- conversationId?: Maybe<Scalars['String']['output']>;
8212
- };
8213
8263
  export declare type ChannelPlatformListQuickResponsesResult = {
8214
8264
  __typename?: 'ChannelPlatformListQuickResponsesResult';
8215
8265
  nextToken?: Maybe<Scalars['String']['output']>;
@@ -14478,6 +14528,12 @@ export declare type ConfluenceCalendarRestriction = {
14478
14528
  eventsViewable: Scalars['Boolean']['output'];
14479
14529
  reloadable: Scalars['Boolean']['output'];
14480
14530
  };
14531
+ export declare type ConfluenceCalendarSubscribeInput = {
14532
+ calendarContext?: InputMaybe<Scalars['String']['input']>;
14533
+ ids: Array<InputMaybe<Scalars['String']['input']>>;
14534
+ viewingSpaceKey?: InputMaybe<Scalars['String']['input']>;
14535
+ watch?: InputMaybe<Scalars['Boolean']['input']>;
14536
+ };
14481
14537
  export declare type ConfluenceCalendarSubscriptionInfo = {
14482
14538
  __typename?: 'ConfluenceCalendarSubscriptionInfo';
14483
14539
  subscribedByCurrentUser: Scalars['Boolean']['output'];
@@ -15117,6 +15173,7 @@ export declare type ConfluenceCustomContentPermissionGroupPrincipal = Confluence
15117
15173
  __typename?: 'ConfluenceCustomContentPermissionGroupPrincipal';
15118
15174
  displayName: Scalars['String']['output'];
15119
15175
  principalId: Scalars['ID']['output'];
15176
+ usageType: ConfluenceGroupUsageType;
15120
15177
  };
15121
15178
  export declare type ConfluenceCustomContentPermissionGuestPrincipal = ConfluenceCustomContentPermissionPrincipal & {
15122
15179
  __typename?: 'ConfluenceCustomContentPermissionGuestPrincipal';
@@ -15238,6 +15295,14 @@ export declare type ConfluenceDeleteCalendarCustomEventTypePayload = Payload & {
15238
15295
  errors?: Maybe<Array<MutationError>>;
15239
15296
  success: Scalars['Boolean']['output'];
15240
15297
  };
15298
+ export declare type ConfluenceDeleteCalendarInput = {
15299
+ id: Scalars['ID']['input'];
15300
+ };
15301
+ export declare type ConfluenceDeleteCalendarPayload = Payload & {
15302
+ __typename?: 'ConfluenceDeleteCalendarPayload';
15303
+ errors?: Maybe<Array<MutationError>>;
15304
+ success: Scalars['Boolean']['output'];
15305
+ };
15241
15306
  export declare type ConfluenceDeleteCommentInput = {
15242
15307
  id: Scalars['ID']['input'];
15243
15308
  };
@@ -15467,6 +15532,11 @@ export declare type ConfluenceExpandTypeFromJira = {
15467
15532
  __typename?: 'ConfluenceExpandTypeFromJira';
15468
15533
  confluenceExpandTypeFromJira?: Maybe<Scalars['String']['output']>;
15469
15534
  };
15535
+ export declare type ConfluenceExperimentInitAiFirstCreationPayload = {
15536
+ __typename?: 'ConfluenceExperimentInitAiFirstCreationPayload';
15537
+ errors?: Maybe<Array<MutationError>>;
15538
+ success: Scalars['Boolean']['output'];
15539
+ };
15470
15540
  export declare type ConfluenceExperimentInitModernizePayload = {
15471
15541
  __typename?: 'ConfluenceExperimentInitModernizePayload';
15472
15542
  errors?: Maybe<Array<MutationError>>;
@@ -15520,6 +15590,7 @@ export declare type ConfluenceExtensionSpecificContext = {
15520
15590
  appVersion: Scalars['String']['input'];
15521
15591
  context: ConfluenceForgePayloadContext;
15522
15592
  extensionId: Scalars['String']['input'];
15593
+ installationId?: InputMaybe<Scalars['String']['input']>;
15523
15594
  };
15524
15595
  export declare enum ConfluenceExtensionVisibilityControlMechanism {
15525
15596
  AppAccessRules = "APP_ACCESS_RULES",
@@ -15622,23 +15693,37 @@ export declare type ConfluenceForgeExtension = {
15622
15693
  userAccess?: Maybe<ConfluenceUserAccess>;
15623
15694
  };
15624
15695
  export declare type ConfluenceForgeExtensionData = {
15696
+ autoConvertLink?: InputMaybe<Scalars['String']['input']>;
15697
+ config?: InputMaybe<Scalars['String']['input']>;
15625
15698
  content?: InputMaybe<ConfluenceForgeExtensionDataContent>;
15626
15699
  isConfig?: InputMaybe<Scalars['Boolean']['input']>;
15700
+ isEditing?: InputMaybe<Scalars['Boolean']['input']>;
15701
+ location?: InputMaybe<Scalars['String']['input']>;
15702
+ macro?: InputMaybe<ConfluenceForgeExtensionDataMacro>;
15703
+ references?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
15704
+ selectedText?: InputMaybe<Scalars['String']['input']>;
15627
15705
  space?: InputMaybe<ConfluenceForgeExtensionDataSpace>;
15628
15706
  type: Scalars['String']['input'];
15629
15707
  };
15630
15708
  export declare type ConfluenceForgeExtensionDataContent = {
15631
15709
  id: Scalars['ID']['input'];
15710
+ subtype?: InputMaybe<Scalars['String']['input']>;
15632
15711
  type?: InputMaybe<Scalars['String']['input']>;
15633
15712
  };
15713
+ export declare type ConfluenceForgeExtensionDataMacro = {
15714
+ body?: InputMaybe<Scalars['String']['input']>;
15715
+ };
15634
15716
  export declare type ConfluenceForgeExtensionDataSpace = {
15635
- id?: InputMaybe<Scalars['Long']['input']>;
15717
+ id?: InputMaybe<Scalars['String']['input']>;
15636
15718
  key?: InputMaybe<Scalars['String']['input']>;
15637
15719
  };
15638
15720
  export declare type ConfluenceForgePayloadContext = {
15721
+ environmentId?: InputMaybe<Scalars['String']['input']>;
15722
+ environmentType?: InputMaybe<Scalars['String']['input']>;
15639
15723
  extension: ConfluenceForgeExtensionData;
15640
15724
  localId?: InputMaybe<Scalars['String']['input']>;
15641
15725
  moduleKey?: InputMaybe<Scalars['String']['input']>;
15726
+ siteUrl?: InputMaybe<Scalars['String']['input']>;
15642
15727
  };
15643
15728
  export declare type ConfluenceFormattingSettings = {
15644
15729
  __typename?: 'ConfluenceFormattingSettings';
@@ -15683,6 +15768,10 @@ export declare type ConfluenceGlobalPageTemplate = {
15683
15768
  lastUpdater?: Maybe<ConfluenceUser>;
15684
15769
  name?: Maybe<Scalars['String']['output']>;
15685
15770
  };
15771
+ export declare enum ConfluenceGraphQlContentMode {
15772
+ Dense = "DENSE",
15773
+ Standard = "STANDARD"
15774
+ }
15686
15775
  export declare enum ConfluenceGraphQlDefaultTitleEmoji {
15687
15776
  LivePageDefault = "LIVE_PAGE_DEFAULT",
15688
15777
  None = "NONE"
@@ -17423,6 +17512,12 @@ export declare type ConfluenceSubjectCustomContentPermissionDelta = {
17423
17512
  permissionsToRemove: Array<InputMaybe<ConfluenceCustomContentPermissionInput>>;
17424
17513
  principal: ConfluenceCustomContentPrincipalInput;
17425
17514
  };
17515
+ export declare type ConfluenceSubscribeCalendarPayload = Payload & {
17516
+ __typename?: 'ConfluenceSubscribeCalendarPayload';
17517
+ calendars?: Maybe<Array<Maybe<ConfluenceCalendar>>>;
17518
+ errors?: Maybe<Array<MutationError>>;
17519
+ success: Scalars['Boolean']['output'];
17520
+ };
17426
17521
  export declare enum ConfluenceSubscriptionContentType {
17427
17522
  Blogpost = "BLOGPOST",
17428
17523
  Comment = "COMMENT",
@@ -17568,6 +17663,11 @@ export declare type ConfluenceTrashPagePayload = Payload & {
17568
17663
  errors?: Maybe<Array<MutationError>>;
17569
17664
  success: Scalars['Boolean']['output'];
17570
17665
  };
17666
+ export declare type ConfluenceUnSubscribeCalendarPayload = Payload & {
17667
+ __typename?: 'ConfluenceUnSubscribeCalendarPayload';
17668
+ errors?: Maybe<Array<MutationError>>;
17669
+ success: Scalars['Boolean']['output'];
17670
+ };
17571
17671
  export declare type ConfluenceUnmarkCommentAsDanglingInput = {
17572
17672
  id: Scalars['ID']['input'];
17573
17673
  };
@@ -17603,6 +17703,11 @@ export declare type ConfluenceUnschedulePublishPayload = {
17603
17703
  errors?: Maybe<Array<MutationError>>;
17604
17704
  success: Scalars['Boolean']['output'];
17605
17705
  };
17706
+ export declare type ConfluenceUnsubscribeCalendarInput = {
17707
+ calendarContext?: InputMaybe<Scalars['String']['input']>;
17708
+ id: Scalars['ID']['input'];
17709
+ viewingSpaceKey?: InputMaybe<Scalars['String']['input']>;
17710
+ };
17606
17711
  export declare type ConfluenceUnusedPluginMacro = {
17607
17712
  __typename?: 'ConfluenceUnusedPluginMacro';
17608
17713
  macroNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -17688,6 +17793,18 @@ export declare type ConfluenceUpdateContentAccessRequestPayload = Payload & {
17688
17793
  errors: Array<MutationError>;
17689
17794
  success: Scalars['Boolean']['output'];
17690
17795
  };
17796
+ export declare type ConfluenceUpdateContentModeInput = {
17797
+ contentId: Scalars['ID']['input'];
17798
+ contentMode: ConfluenceGraphQlContentMode;
17799
+ contentStatus?: InputMaybe<ConfluenceMutationContentStatus>;
17800
+ };
17801
+ export declare type ConfluenceUpdateContentModePayload = {
17802
+ __typename?: 'ConfluenceUpdateContentModePayload';
17803
+ contentId: Scalars['String']['output'];
17804
+ contentMode?: Maybe<ConfluenceGraphQlContentMode>;
17805
+ errors?: Maybe<Array<MutationError>>;
17806
+ success: Scalars['Boolean']['output'];
17807
+ };
17691
17808
  export declare type ConfluenceUpdateCurrentBlogPostInput = {
17692
17809
  body?: InputMaybe<ConfluenceContentBodyInput>;
17693
17810
  id: Scalars['ID']['input'];
@@ -18740,6 +18857,7 @@ export declare type ContentHistory = {
18740
18857
  __typename?: 'ContentHistory';
18741
18858
  by: Person;
18742
18859
  collaborators?: Maybe<ContributorUsers>;
18860
+ editorVersion?: Maybe<Scalars['String']['output']>;
18743
18861
  friendlyWhen: Scalars['String']['output'];
18744
18862
  message: Scalars['String']['output'];
18745
18863
  minorEdit: Scalars['Boolean']['output'];
@@ -21677,6 +21795,17 @@ export declare type CsmAiByodContents = {
21677
21795
  contents: Array<Maybe<CsmAiByodContent>>;
21678
21796
  };
21679
21797
  export declare type CsmAiByodContentsResult = CsmAiByodContents | QueryError;
21798
+ export declare type CsmAiByodKnowledgeFilter = {
21799
+ __typename?: 'CsmAiByodKnowledgeFilter';
21800
+ byodSources?: Maybe<Array<CsmAiByodSource>>;
21801
+ };
21802
+ export declare type CsmAiByodSource = {
21803
+ __typename?: 'CsmAiByodSource';
21804
+ datasourceId: Scalars['String']['output'];
21805
+ integrationId: Scalars['String']['output'];
21806
+ workspaceName: Scalars['String']['output'];
21807
+ workspaceUrl: Scalars['String']['output'];
21808
+ };
21680
21809
  export declare type CsmAiCoachingContentResult = CsmAiAgentCoachingContent | QueryError;
21681
21810
  export declare type CsmAiConfluenceKnowledgeFilter = {
21682
21811
  __typename?: 'CsmAiConfluenceKnowledgeFilter';
@@ -21787,7 +21916,7 @@ export declare type CsmAiKnowledgeCollection = {
21787
21916
  sources?: Maybe<Array<CsmAiKnowledgeSource>>;
21788
21917
  };
21789
21918
  export declare type CsmAiKnowledgeCollectionResult = CsmAiKnowledgeCollection | QueryError;
21790
- export declare type CsmAiKnowledgeFilter = CsmAiConfluenceKnowledgeFilter;
21919
+ export declare type CsmAiKnowledgeFilter = CsmAiByodKnowledgeFilter | CsmAiConfluenceKnowledgeFilter;
21791
21920
  export declare type CsmAiKnowledgeSource = {
21792
21921
  __typename?: 'CsmAiKnowledgeSource';
21793
21922
  enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -26325,6 +26454,7 @@ export declare enum DocumentRepresentation {
26325
26454
  }
26326
26455
  export declare type DraftContentProperties = {
26327
26456
  __typename?: 'DraftContentProperties';
26457
+ contentMode?: Maybe<Scalars['String']['output']>;
26328
26458
  coverPictureWidth?: Maybe<Scalars['String']['output']>;
26329
26459
  generatedBy?: Maybe<Scalars['String']['output']>;
26330
26460
  };
@@ -30884,6 +31014,15 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
30884
31014
  cursor?: Maybe<Scalars['String']['output']>;
30885
31015
  node: GraphIncidentLinkedJswIssueRelationship;
30886
31016
  };
31017
+ export declare type GraphIntegrationActionDirectoryItem = {
31018
+ __typename?: 'GraphIntegrationActionDirectoryItem';
31019
+ description?: Maybe<Scalars['String']['output']>;
31020
+ displayName: Scalars['String']['output'];
31021
+ iconUrl?: Maybe<Scalars['String']['output']>;
31022
+ id: Scalars['ID']['output'];
31023
+ name: Scalars['String']['output'];
31024
+ tags: Array<Scalars['String']['output']>;
31025
+ };
30887
31026
  export declare type GraphIntegrationAddTwgCapabilityContainerInput = {
30888
31027
  contextAri: Scalars['ID']['input'];
30889
31028
  productAri: Scalars['ID']['input'];
@@ -30952,7 +31091,7 @@ export declare type GraphIntegrationDirectoryFilterDimensionEdge = {
30952
31091
  cursor: Scalars['String']['output'];
30953
31092
  node?: Maybe<GraphIntegrationDirectoryFilterDimension>;
30954
31093
  };
30955
- export declare type GraphIntegrationDirectoryItem = GraphIntegrationMcpServer | GraphIntegrationMcpTool;
31094
+ export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool;
30956
31095
  export declare type GraphIntegrationDirectoryItemConnection = {
30957
31096
  __typename?: 'GraphIntegrationDirectoryItemConnection';
30958
31097
  edges: Array<GraphIntegrationDirectoryItemEdge>;
@@ -30965,6 +31104,7 @@ export declare type GraphIntegrationDirectoryItemEdge = {
30965
31104
  node?: Maybe<GraphIntegrationDirectoryItem>;
30966
31105
  };
30967
31106
  export declare enum GraphIntegrationDirectoryItemType {
31107
+ Action = "ACTION",
30968
31108
  McpServer = "MCP_SERVER",
30969
31109
  McpTool = "MCP_TOOL"
30970
31110
  }
@@ -31102,6 +31242,7 @@ export declare type GraphIntegrationMcpServer = {
31102
31242
  displayName: Scalars['String']['output'];
31103
31243
  iconUrl?: Maybe<Scalars['String']['output']>;
31104
31244
  id: Scalars['ID']['output'];
31245
+ tags: Array<Scalars['String']['output']>;
31105
31246
  };
31106
31247
  export declare type GraphIntegrationMcpServerNode = Node & {
31107
31248
  __typename?: 'GraphIntegrationMcpServerNode';
@@ -31118,6 +31259,7 @@ export declare type GraphIntegrationMcpTool = {
31118
31259
  mcpServer: GraphIntegrationMcpServer;
31119
31260
  name: Scalars['String']['output'];
31120
31261
  status?: Maybe<GraphIntegrationStatus>;
31262
+ tags: Array<Scalars['String']['output']>;
31121
31263
  };
31122
31264
  export declare type GraphIntegrationRemoveTwgCapabilityContainerInput = {
31123
31265
  contextAri: Scalars['ID']['input'];
@@ -56816,12 +56958,17 @@ export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
56816
56958
  Silver = "SILVER"
56817
56959
  }
56818
56960
  export declare type GrowthUnifiedProfileEntitlementContextTrialInput = {
56961
+ hadPaymentDetails?: InputMaybe<Scalars['Boolean']['input']>;
56962
+ offeringId?: InputMaybe<Scalars['String']['input']>;
56819
56963
  trialEndTimeStamp?: InputMaybe<Scalars['Float']['input']>;
56820
56964
  trialTrigger?: InputMaybe<GrowthUnifiedProfileTrialTrigger>;
56821
56965
  trialType?: InputMaybe<GrowthUnifiedProfileTrialType>;
56822
56966
  };
56823
56967
  export declare type GrowthUnifiedProfileEntitlementContextTrialResult = {
56824
56968
  __typename?: 'GrowthUnifiedProfileEntitlementContextTrialResult';
56969
+ createdAt?: Maybe<Scalars['Float']['output']>;
56970
+ hadPaymentDetails?: Maybe<Scalars['Boolean']['output']>;
56971
+ offeringId?: Maybe<Scalars['String']['output']>;
56825
56972
  trialEndTimeStamp?: Maybe<Scalars['Float']['output']>;
56826
56973
  trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
56827
56974
  trialType?: Maybe<GrowthUnifiedProfileTrialType>;
@@ -56831,6 +56978,10 @@ export declare type GrowthUnifiedProfileEntitlementProfileResult = {
56831
56978
  entitlementId: Scalars['ID']['output'];
56832
56979
  firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
56833
56980
  lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
56981
+ paidFeatureUsage: Array<GrowthUnifiedProfilePaidFeatureUsageResult>;
56982
+ };
56983
+ export declare type GrowthUnifiedProfileEntitlementProfileResultPaidFeatureUsageArgs = {
56984
+ filter?: InputMaybe<GrowthUnifiedProfilePaidFeatureUsageFilterInput>;
56834
56985
  };
56835
56986
  export declare enum GrowthUnifiedProfileEntityType {
56836
56987
  AjsAnonymousUser = "AJS_ANONYMOUS_USER",
@@ -56842,6 +56993,10 @@ export declare enum GrowthUnifiedProfileEntryType {
56842
56993
  Existing = "EXISTING",
56843
56994
  New = "NEW"
56844
56995
  }
56996
+ export declare enum GrowthUnifiedProfileFeatureType {
56997
+ Stateful = "STATEFUL",
56998
+ Stateless = "STATELESS"
56999
+ }
56845
57000
  export declare type GrowthUnifiedProfileFunctionalOnboardingResult = {
56846
57001
  __typename?: 'GrowthUnifiedProfileFunctionalOnboardingResult';
56847
57002
  coreActions: Scalars['Boolean']['output'];
@@ -56938,6 +57093,17 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
56938
57093
  teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
56939
57094
  template?: InputMaybe<Scalars['String']['input']>;
56940
57095
  };
57096
+ export declare type GrowthUnifiedProfileLinkEngagementSeries = {
57097
+ __typename?: 'GrowthUnifiedProfileLinkEngagementSeries';
57098
+ data?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkEngagementSeriesData>>>;
57099
+ date?: Maybe<Scalars['String']['output']>;
57100
+ };
57101
+ export declare type GrowthUnifiedProfileLinkEngagementSeriesData = {
57102
+ __typename?: 'GrowthUnifiedProfileLinkEngagementSeriesData';
57103
+ step?: Maybe<Scalars['Int']['output']>;
57104
+ total?: Maybe<Scalars['Int']['output']>;
57105
+ url?: Maybe<Scalars['String']['output']>;
57106
+ };
56941
57107
  export declare type GrowthUnifiedProfileLinkedEntities = {
56942
57108
  __typename?: 'GrowthUnifiedProfileLinkedEntities';
56943
57109
  entityType?: Maybe<GrowthUnifiedProfileEntityType>;
@@ -57009,6 +57175,16 @@ export declare type GrowthUnifiedProfilePaidChannelContextByProduct = {
57009
57175
  jwm?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
57010
57176
  trello?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
57011
57177
  };
57178
+ export declare type GrowthUnifiedProfilePaidFeatureUsageFilterInput = {
57179
+ endDate?: InputMaybe<Scalars['String']['input']>;
57180
+ startDate?: InputMaybe<Scalars['String']['input']>;
57181
+ };
57182
+ export declare type GrowthUnifiedProfilePaidFeatureUsageResult = {
57183
+ __typename?: 'GrowthUnifiedProfilePaidFeatureUsageResult';
57184
+ featureName: Scalars['String']['output'];
57185
+ featureSupportedEdition: Array<GrowthUnifiedProfileProductEdition>;
57186
+ featureType: GrowthUnifiedProfileFeatureType;
57187
+ };
57012
57188
  export declare enum GrowthUnifiedProfileProduct {
57013
57189
  Compass = "compass",
57014
57190
  Confluence = "confluence",
@@ -57109,6 +57285,7 @@ export declare type GrowthUnifiedProfileSiteOnboardingInsightsResult = {
57109
57285
  earliestDataDate?: Maybe<Scalars['String']['output']>;
57110
57286
  engagementsSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileEngagementsSeries>>>;
57111
57287
  latestDataDate?: Maybe<Scalars['String']['output']>;
57288
+ linkEngagementSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkEngagementSeries>>>;
57112
57289
  rollingInterval: Scalars['String']['output'];
57113
57290
  tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
57114
57291
  totalCompletions?: Maybe<Scalars['Int']['output']>;
@@ -61924,6 +62101,21 @@ export declare type JiraBoardReportCategoriesArgs = {
61924
62101
  first?: InputMaybe<Scalars['Int']['input']>;
61925
62102
  last?: InputMaybe<Scalars['Int']['input']>;
61926
62103
  };
62104
+ export declare type JiraBoardCardCoverMediaField = JiraIssueField & Node & {
62105
+ __typename?: 'JiraBoardCardCoverMediaField';
62106
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
62107
+ coverMedia?: Maybe<JiraBackground>;
62108
+ description?: Maybe<Scalars['String']['output']>;
62109
+ fieldId: Scalars['String']['output'];
62110
+ fieldOperations?: Maybe<JiraFieldOperation>;
62111
+ id: Scalars['ID']['output'];
62112
+ isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
62113
+ isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
62114
+ isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
62115
+ issue?: Maybe<JiraIssue>;
62116
+ name: Scalars['String']['output'];
62117
+ type: Scalars['String']['output'];
62118
+ };
61927
62119
  export declare type JiraBoardConnection = {
61928
62120
  __typename?: 'JiraBoardConnection';
61929
62121
  edges?: Maybe<Array<Maybe<JiraBoardEdge>>>;
@@ -66954,6 +67146,21 @@ export declare type JiraIssueAndProject = {
66954
67146
  issueId: Scalars['ID']['output'];
66955
67147
  projectId: Scalars['ID']['output'];
66956
67148
  };
67149
+ export declare type JiraIssueArchiveErrorExtension = MutationErrorExtension & {
67150
+ __typename?: 'JiraIssueArchiveErrorExtension';
67151
+ errorType?: Maybe<Scalars['String']['output']>;
67152
+ failedIssueIds?: Maybe<Array<Scalars['ID']['output']>>;
67153
+ statusCode?: Maybe<Scalars['Int']['output']>;
67154
+ };
67155
+ export declare type JiraIssueArchiveInput = {
67156
+ ids: Array<Scalars['ID']['input']>;
67157
+ };
67158
+ export declare type JiraIssueArchivePayload = Payload & {
67159
+ __typename?: 'JiraIssueArchivePayload';
67160
+ errors?: Maybe<Array<MutationError>>;
67161
+ issueCount?: Maybe<Scalars['Int']['output']>;
67162
+ success: Scalars['Boolean']['output'];
67163
+ };
66957
67164
  export declare type JiraIssueAttachmentFilterInput = {
66958
67165
  mimeTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
66959
67166
  };
@@ -68596,6 +68803,21 @@ export declare type JiraIssueTypeInput = {
68596
68803
  id?: InputMaybe<Scalars['ID']['input']>;
68597
68804
  issueTypeId: Scalars['ID']['input'];
68598
68805
  };
68806
+ export declare type JiraIssueUnarchiveErrorExtension = MutationErrorExtension & {
68807
+ __typename?: 'JiraIssueUnarchiveErrorExtension';
68808
+ errorType?: Maybe<Scalars['String']['output']>;
68809
+ failedIssueIds?: Maybe<Array<Scalars['ID']['output']>>;
68810
+ statusCode?: Maybe<Scalars['Int']['output']>;
68811
+ };
68812
+ export declare type JiraIssueUnarchiveInput = {
68813
+ ids: Array<Scalars['ID']['input']>;
68814
+ };
68815
+ export declare type JiraIssueUnarchivePayload = Payload & {
68816
+ __typename?: 'JiraIssueUnarchivePayload';
68817
+ errors?: Maybe<Array<MutationError>>;
68818
+ issueCount?: Maybe<Scalars['Int']['output']>;
68819
+ success: Scalars['Boolean']['output'];
68820
+ };
68599
68821
  export declare type JiraIssueUpdatedStreamHubPayload = {
68600
68822
  __typename?: 'JiraIssueUpdatedStreamHubPayload';
68601
68823
  resource?: Maybe<Scalars['ID']['output']>;
@@ -78264,7 +78486,6 @@ export declare enum JiraSuggestionType {
78264
78486
  }
78265
78487
  export declare type JiraSuggestionsByContextInput = {
78266
78488
  after?: InputMaybe<Scalars['String']['input']>;
78267
- cloudId: Scalars['ID']['input'];
78268
78489
  first?: InputMaybe<Scalars['Int']['input']>;
78269
78490
  id: Scalars['ID']['input'];
78270
78491
  status?: InputMaybe<Array<JiraSuggestionStatus>>;
@@ -82499,6 +82720,7 @@ export declare type KnowledgeDiscoveryQuerySuggestion = {
82499
82720
  type: KnowledgeDiscoveryQuerySuggestionType;
82500
82721
  };
82501
82722
  export declare enum KnowledgeDiscoveryQuerySuggestionType {
82723
+ AssignedItems = "ASSIGNED_ITEMS",
82502
82724
  TicketAssignee = "TICKET_ASSIGNEE",
82503
82725
  TicketDueDate = "TICKET_DUE_DATE",
82504
82726
  TicketStatus = "TICKET_STATUS"
@@ -86057,26 +86279,6 @@ export declare type MercuryAggregatedFocusAreaStatusCount = {
86057
86279
  current: MercuryFocusAreaStatusCount;
86058
86280
  subtree: MercuryFocusAreaStatusCount;
86059
86281
  };
86060
- export declare type MercuryAggregatedHeadcountConnection = {
86061
- __typename?: 'MercuryAggregatedHeadcountConnection';
86062
- edges?: Maybe<Array<Maybe<MercuryAggregatedHeadcountEdge>>>;
86063
- pageInfo: PageInfo;
86064
- totalCount?: Maybe<Scalars['Int']['output']>;
86065
- };
86066
- export declare type MercuryAggregatedHeadcountEdge = {
86067
- __typename?: 'MercuryAggregatedHeadcountEdge';
86068
- cursor: Scalars['String']['output'];
86069
- node?: Maybe<MercuryHeadcountAggregation>;
86070
- };
86071
- export declare type MercuryAggregatedHeadcountSort = {
86072
- field?: InputMaybe<MercuryAggregatedHeadcountSortField>;
86073
- order: SortOrder;
86074
- };
86075
- export declare enum MercuryAggregatedHeadcountSortField {
86076
- FilledPositions = "FILLED_POSITIONS",
86077
- OpenPositions = "OPEN_POSITIONS",
86078
- TotalHeadcount = "TOTAL_HEADCOUNT"
86079
- }
86080
86282
  export declare type MercuryAggregatedPortfolioStatusCount = {
86081
86283
  __typename?: 'MercuryAggregatedPortfolioStatusCount';
86082
86284
  children: MercuryFocusAreaStatusCount;
@@ -86329,6 +86531,7 @@ export declare type MercuryChangeProposalsView = MercuryView & Node & {
86329
86531
  name: Scalars['String']['output'];
86330
86532
  priorities?: Maybe<MercuryChangeProposalRankConnection>;
86331
86533
  settings?: Maybe<Array<Maybe<MercuryViewSetting>>>;
86534
+ strategicEvent?: Maybe<MercuryStrategicEvent>;
86332
86535
  updatedBy?: Maybe<User>;
86333
86536
  updatedDate?: Maybe<Scalars['String']['output']>;
86334
86537
  };
@@ -86723,7 +86926,6 @@ export declare type MercuryFocusArea = Node & {
86723
86926
  __typename?: 'MercuryFocusArea';
86724
86927
  aboutContent: MercuryFocusAreaAbout;
86725
86928
  aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedFocusAreaStatusCount>;
86726
- allocations?: Maybe<MercuryFocusAreaAllocations>;
86727
86929
  archived: Scalars['Boolean']['output'];
86728
86930
  ari: Scalars['String']['output'];
86729
86931
  changeSummary?: Maybe<MercuryChangeSummary>;
@@ -86735,7 +86937,6 @@ export declare type MercuryFocusArea = Node & {
86735
86937
  focusAreaType: MercuryFocusAreaType;
86736
86938
  funding?: Maybe<MercuryFunding>;
86737
86939
  goalLinks?: Maybe<MercuryFocusAreaGoalLinks>;
86738
- headcountAggregation?: Maybe<MercuryHeadcountAggregation>;
86739
86940
  health?: Maybe<MercuryFocusAreaHealth>;
86740
86941
  icon: MercuryFocusAreaIcon;
86741
86942
  id: Scalars['ID']['output'];
@@ -86748,7 +86949,6 @@ export declare type MercuryFocusArea = Node & {
86748
86949
  statusTransitions: MercuryFocusAreaStatusTransitions;
86749
86950
  subFocusAreas?: Maybe<MercuryFocusAreaConnection>;
86750
86951
  targetDate?: Maybe<MercuryTargetDate>;
86751
- teamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
86752
86952
  updatedDate: Scalars['String']['output'];
86753
86953
  url?: Maybe<Scalars['String']['output']>;
86754
86954
  uuid: Scalars['UUID']['output'];
@@ -86767,11 +86967,6 @@ export declare type MercuryFocusAreaSubFocusAreasArgs = {
86767
86967
  q?: InputMaybe<Scalars['String']['input']>;
86768
86968
  sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
86769
86969
  };
86770
- export declare type MercuryFocusAreaTeamAllocationsArgs = {
86771
- after?: InputMaybe<Scalars['String']['input']>;
86772
- first?: InputMaybe<Scalars['Int']['input']>;
86773
- sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaTeamAllocationAggregationSort>>>;
86774
- };
86775
86970
  export declare type MercuryFocusAreaWatchersArgs = {
86776
86971
  after?: InputMaybe<Scalars['String']['input']>;
86777
86972
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -86806,10 +87001,6 @@ export declare type MercuryFocusAreaActivityHistory = Node & {
86806
87001
  export declare type MercuryFocusAreaActivitySort = {
86807
87002
  order: SortOrder;
86808
87003
  };
86809
- export declare type MercuryFocusAreaAllocations = {
86810
- __typename?: 'MercuryFocusAreaAllocations';
86811
- human?: Maybe<MercuryHumanResourcesAllocation>;
86812
- };
86813
87004
  export declare type MercuryFocusAreaChangeRequirements = {
86814
87005
  __typename?: 'MercuryFocusAreaChangeRequirements';
86815
87006
  changeProposalId?: Maybe<Scalars['ID']['output']>;
@@ -87032,35 +87223,6 @@ export declare type MercuryFocusAreaTargetDateInput = {
87032
87223
  targetDate?: InputMaybe<Scalars['String']['input']>;
87033
87224
  targetDateType?: InputMaybe<MercuryTargetDateType>;
87034
87225
  };
87035
- export declare type MercuryFocusAreaTeamAllocationAggregation = Node & {
87036
- __typename?: 'MercuryFocusAreaTeamAllocationAggregation';
87037
- filledPositions?: Maybe<Scalars['BigDecimal']['output']>;
87038
- id: Scalars['ID']['output'];
87039
- openPositions?: Maybe<Scalars['BigDecimal']['output']>;
87040
- team: MercuryTeam;
87041
- totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
87042
- };
87043
- export declare type MercuryFocusAreaTeamAllocationAggregationConnection = {
87044
- __typename?: 'MercuryFocusAreaTeamAllocationAggregationConnection';
87045
- edges?: Maybe<Array<Maybe<MercuryFocusAreaTeamAllocationAggregationEdge>>>;
87046
- pageInfo: PageInfo;
87047
- totalCount?: Maybe<Scalars['Int']['output']>;
87048
- };
87049
- export declare type MercuryFocusAreaTeamAllocationAggregationEdge = {
87050
- __typename?: 'MercuryFocusAreaTeamAllocationAggregationEdge';
87051
- cursor: Scalars['String']['output'];
87052
- node?: Maybe<MercuryFocusAreaTeamAllocationAggregation>;
87053
- };
87054
- export declare type MercuryFocusAreaTeamAllocationAggregationSort = {
87055
- field?: InputMaybe<MercuryFocusAreaTeamAllocationAggregationSortField>;
87056
- order: SortOrder;
87057
- };
87058
- export declare enum MercuryFocusAreaTeamAllocationAggregationSortField {
87059
- FilledPositions = "FILLED_POSITIONS",
87060
- OpenPositions = "OPEN_POSITIONS",
87061
- TeamName = "TEAM_NAME",
87062
- TotalPositions = "TOTAL_POSITIONS"
87063
- }
87064
87226
  export declare type MercuryFocusAreaType = {
87065
87227
  __typename?: 'MercuryFocusAreaType';
87066
87228
  ari: Scalars['String']['output'];
@@ -87124,21 +87286,6 @@ export declare type MercuryGoalsAggregatedStatusCount = {
87124
87286
  current?: Maybe<MercuryGoalStatusCount>;
87125
87287
  previous?: Maybe<MercuryGoalStatusCount>;
87126
87288
  };
87127
- export declare type MercuryHeadcountAggregation = {
87128
- __typename?: 'MercuryHeadcountAggregation';
87129
- filledPositions?: Maybe<Scalars['BigDecimal']['output']>;
87130
- focusArea: MercuryFocusArea;
87131
- openPositions?: Maybe<Scalars['BigDecimal']['output']>;
87132
- totalHeadcount?: Maybe<Scalars['BigDecimal']['output']>;
87133
- };
87134
- export declare type MercuryHumanResourcesAllocation = {
87135
- __typename?: 'MercuryHumanResourcesAllocation';
87136
- budgetedPositions?: Maybe<Scalars['BigDecimal']['output']>;
87137
- filledPositions?: Maybe<Scalars['BigDecimal']['output']>;
87138
- openPositions?: Maybe<Scalars['BigDecimal']['output']>;
87139
- totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
87140
- totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
87141
- };
87142
87289
  export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
87143
87290
  __typename?: 'MercuryImpactedPositionSummaryByChangeProposalStatus';
87144
87291
  countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
@@ -87785,7 +87932,6 @@ export declare type MercuryPublishFocusAreaPayload = Payload & {
87785
87932
  };
87786
87933
  export declare type MercuryQueryApi = {
87787
87934
  __typename?: 'MercuryQueryApi';
87788
- aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
87789
87935
  aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
87790
87936
  aiFocusAreaWorkContextData?: Maybe<MercuryFocusAreaWorkContext>;
87791
87937
  comments?: Maybe<MercuryCommentConnection>;
@@ -87795,7 +87941,6 @@ export declare type MercuryQueryApi = {
87795
87941
  focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
87796
87942
  focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
87797
87943
  focusAreaStatusUpdatesByAris?: Maybe<Array<MercuryFocusAreaStatusUpdate>>;
87798
- focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
87799
87944
  focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
87800
87945
  focusAreaTypesByAris?: Maybe<Array<Maybe<MercuryFocusAreaType>>>;
87801
87946
  focusAreas?: Maybe<MercuryFocusAreaConnection>;
@@ -87809,16 +87954,8 @@ export declare type MercuryQueryApi = {
87809
87954
  myPreferences?: Maybe<Array<MercuryPreference>>;
87810
87955
  portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
87811
87956
  searchFocusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
87812
- team?: Maybe<MercuryTeam>;
87813
- teams?: Maybe<MercuryTeamConnection>;
87814
87957
  workspaceContext: MercuryWorkspaceContext;
87815
87958
  };
87816
- export declare type MercuryQueryApiAggregatedHeadcountsArgs = {
87817
- after?: InputMaybe<Scalars['String']['input']>;
87818
- cloudId: Scalars['ID']['input'];
87819
- first?: InputMaybe<Scalars['Int']['input']>;
87820
- sort?: InputMaybe<Array<InputMaybe<MercuryAggregatedHeadcountSort>>>;
87821
- };
87822
87959
  export declare type MercuryQueryApiAiFocusAreaSummaryArgs = {
87823
87960
  cloudId: Scalars['ID']['input'];
87824
87961
  id: Scalars['ID']['input'];
@@ -87860,13 +87997,6 @@ export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
87860
87997
  export declare type MercuryQueryApiFocusAreaStatusUpdatesByArisArgs = {
87861
87998
  aris: Array<Scalars['ID']['input']>;
87862
87999
  };
87863
- export declare type MercuryQueryApiFocusAreaTeamAllocationsArgs = {
87864
- after?: InputMaybe<Scalars['String']['input']>;
87865
- cloudId: Scalars['ID']['input'];
87866
- first?: InputMaybe<Scalars['Int']['input']>;
87867
- focusAreaId: Scalars['ID']['input'];
87868
- sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaTeamAllocationAggregationSort>>>;
87869
- };
87870
88000
  export declare type MercuryQueryApiFocusAreaTypesArgs = {
87871
88001
  cloudId: Scalars['ID']['input'];
87872
88002
  };
@@ -87923,17 +88053,6 @@ export declare type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
87923
88053
  q?: InputMaybe<Scalars['String']['input']>;
87924
88054
  sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
87925
88055
  };
87926
- export declare type MercuryQueryApiTeamArgs = {
87927
- cloudId: Scalars['ID']['input'];
87928
- id: Scalars['ID']['input'];
87929
- };
87930
- export declare type MercuryQueryApiTeamsArgs = {
87931
- after?: InputMaybe<Scalars['String']['input']>;
87932
- cloudId: Scalars['ID']['input'];
87933
- first?: InputMaybe<Scalars['Int']['input']>;
87934
- q?: InputMaybe<Scalars['String']['input']>;
87935
- sort?: InputMaybe<Array<InputMaybe<MercuryTeamSort>>>;
87936
- };
87937
88056
  export declare type MercuryQueryApiWorkspaceContextArgs = {
87938
88057
  cloudId: Scalars['ID']['input'];
87939
88058
  };
@@ -88164,7 +88283,7 @@ export declare type MercuryStrategicEventsMutationApi = {
88164
88283
  updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
88165
88284
  updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
88166
88285
  updateChangeProposalRankInView?: Maybe<MercuryUpdateChangeProposalRankInViewPayload>;
88167
- updateChangeProposalsView?: Maybe<MercuryUpdateChangeProposalsViewPayload>;
88286
+ updateChangeProposalsViewName?: Maybe<MercuryUpdateChangeProposalsViewNamePayload>;
88168
88287
  updateChangeProposalsViewSettings?: Maybe<MercuryUpdateChangeProposalsViewSettingsPayload>;
88169
88288
  updateMoveFundsChange: MercuryUpdateChangePayload;
88170
88289
  updateMovePositionsChange: MercuryUpdateChangePayload;
@@ -88255,8 +88374,8 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerAr
88255
88374
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalRankInViewArgs = {
88256
88375
  input: MercuryUpdateChangeProposalRankInViewInput;
88257
88376
  };
88258
- export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewArgs = {
88259
- input: MercuryUpdateChangeProposalsViewInput;
88377
+ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewNameArgs = {
88378
+ input: MercuryUpdateChangeProposalsViewNameInput;
88260
88379
  };
88261
88380
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewSettingsArgs = {
88262
88381
  input: MercuryUpdateChangeProposalsViewSettingsInput;
@@ -88433,63 +88552,6 @@ export declare enum MercuryTargetDateType {
88433
88552
  Month = "MONTH",
88434
88553
  Quarter = "QUARTER"
88435
88554
  }
88436
- export declare type MercuryTeam = Node & {
88437
- __typename?: 'MercuryTeam';
88438
- filledPositions?: Maybe<Scalars['BigDecimal']['output']>;
88439
- id: Scalars['ID']['output'];
88440
- name: Scalars['String']['output'];
88441
- openPositions?: Maybe<Scalars['BigDecimal']['output']>;
88442
- teamFocusAreaAllocations: MercuryTeamFocusAreaAllocationConnection;
88443
- };
88444
- export declare type MercuryTeamTeamFocusAreaAllocationsArgs = {
88445
- after?: InputMaybe<Scalars['String']['input']>;
88446
- first?: InputMaybe<Scalars['Int']['input']>;
88447
- sort?: InputMaybe<Array<InputMaybe<MercuryTeamFocusAreaAllocationsSort>>>;
88448
- };
88449
- export declare type MercuryTeamConnection = {
88450
- __typename?: 'MercuryTeamConnection';
88451
- edges?: Maybe<Array<Maybe<MercuryTeamEdge>>>;
88452
- pageInfo: PageInfo;
88453
- totalCount?: Maybe<Scalars['Int']['output']>;
88454
- };
88455
- export declare type MercuryTeamEdge = {
88456
- __typename?: 'MercuryTeamEdge';
88457
- cursor: Scalars['String']['output'];
88458
- node?: Maybe<MercuryTeam>;
88459
- };
88460
- export declare type MercuryTeamFocusAreaAllocation = Node & {
88461
- __typename?: 'MercuryTeamFocusAreaAllocation';
88462
- filledPositions?: Maybe<Scalars['BigDecimal']['output']>;
88463
- focusArea: MercuryFocusArea;
88464
- id: Scalars['ID']['output'];
88465
- openPositions?: Maybe<Scalars['BigDecimal']['output']>;
88466
- };
88467
- export declare type MercuryTeamFocusAreaAllocationConnection = {
88468
- __typename?: 'MercuryTeamFocusAreaAllocationConnection';
88469
- edges?: Maybe<Array<Maybe<MercuryTeamFocusAreaAllocationEdge>>>;
88470
- pageInfo: PageInfo;
88471
- totalCount?: Maybe<Scalars['Int']['output']>;
88472
- };
88473
- export declare type MercuryTeamFocusAreaAllocationEdge = {
88474
- __typename?: 'MercuryTeamFocusAreaAllocationEdge';
88475
- cursor: Scalars['String']['output'];
88476
- node?: Maybe<MercuryTeamFocusAreaAllocation>;
88477
- };
88478
- export declare enum MercuryTeamFocusAreaAllocationSortField {
88479
- FilledPositions = "FILLED_POSITIONS",
88480
- OpenPositions = "OPEN_POSITIONS"
88481
- }
88482
- export declare type MercuryTeamFocusAreaAllocationsSort = {
88483
- field?: InputMaybe<MercuryTeamFocusAreaAllocationSortField>;
88484
- order: SortOrder;
88485
- };
88486
- export declare type MercuryTeamSort = {
88487
- field?: InputMaybe<MercuryTeamSortField>;
88488
- order: SortOrder;
88489
- };
88490
- export declare enum MercuryTeamSortField {
88491
- Name = "NAME"
88492
- }
88493
88555
  export declare type MercuryTransitionChangeProposalPayload = Payload & {
88494
88556
  __typename?: 'MercuryTransitionChangeProposalPayload';
88495
88557
  errors?: Maybe<Array<MutationError>>;
@@ -88607,13 +88669,12 @@ export declare type MercuryUpdateChangeProposalRankInViewPayload = Payload & {
88607
88669
  errors?: Maybe<Array<MutationError>>;
88608
88670
  success: Scalars['Boolean']['output'];
88609
88671
  };
88610
- export declare type MercuryUpdateChangeProposalsViewInput = {
88672
+ export declare type MercuryUpdateChangeProposalsViewNameInput = {
88611
88673
  id: Scalars['ID']['input'];
88612
- name?: InputMaybe<Scalars['String']['input']>;
88613
- settings?: InputMaybe<Array<InputMaybe<MercuryViewSettingInput>>>;
88674
+ name: Scalars['String']['input'];
88614
88675
  };
88615
- export declare type MercuryUpdateChangeProposalsViewPayload = Payload & {
88616
- __typename?: 'MercuryUpdateChangeProposalsViewPayload';
88676
+ export declare type MercuryUpdateChangeProposalsViewNamePayload = Payload & {
88677
+ __typename?: 'MercuryUpdateChangeProposalsViewNamePayload';
88617
88678
  changeProposalsView?: Maybe<MercuryChangeProposalsView>;
88618
88679
  errors?: Maybe<Array<MutationError>>;
88619
88680
  success: Scalars['Boolean']['output'];
@@ -89098,6 +89159,7 @@ export declare type Mutation = {
89098
89159
  assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
89099
89160
  assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
89100
89161
  assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
89162
+ assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
89101
89163
  assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
89102
89164
  assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
89103
89165
  assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
@@ -89115,6 +89177,7 @@ export declare type Mutation = {
89115
89177
  avp_copyChart?: Maybe<AvpCopyChartPayload>;
89116
89178
  avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
89117
89179
  avp_createChart?: Maybe<AvpCreateChartPayload>;
89180
+ avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
89118
89181
  avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
89119
89182
  avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
89120
89183
  avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
@@ -89126,6 +89189,7 @@ export declare type Mutation = {
89126
89189
  avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
89127
89190
  avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
89128
89191
  avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
89192
+ avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
89129
89193
  boardCardMove?: Maybe<MoveCardOutput>;
89130
89194
  bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
89131
89195
  bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
@@ -89163,6 +89227,7 @@ export declare type Mutation = {
89163
89227
  confluence_createQuestion?: Maybe<ConfluenceCreateQuestionPayload>;
89164
89228
  confluence_createTopic?: Maybe<ConfluenceCreateTopicPayload>;
89165
89229
  confluence_deleteAnswer?: Maybe<ConfluenceDeleteAnswerPayload>;
89230
+ confluence_deleteCalendar?: Maybe<ConfluenceDeleteCalendarPayload>;
89166
89231
  confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
89167
89232
  confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
89168
89233
  confluence_deleteQuestion?: Maybe<ConfluenceDeleteQuestionPayload>;
@@ -89173,6 +89238,7 @@ export declare type Mutation = {
89173
89238
  confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
89174
89239
  confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
89175
89240
  confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
89241
+ confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
89176
89242
  confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
89177
89243
  confluence_generateForgeContextToken?: Maybe<ConfluenceForgeContextTokenPayload>;
89178
89244
  confluence_insertOfflineVersion?: Maybe<ConfluenceInsertOfflineVersionPayload>;
@@ -89187,14 +89253,17 @@ export declare type Mutation = {
89187
89253
  confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
89188
89254
  confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
89189
89255
  confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
89256
+ confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
89190
89257
  confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
89191
89258
  confluence_unschedulePublish?: Maybe<ConfluenceUnschedulePublishPayload>;
89259
+ confluence_unsubscribeCalendar?: Maybe<ConfluenceUnSubscribeCalendarPayload>;
89192
89260
  confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
89193
89261
  confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
89194
89262
  confluence_updateAnswer?: Maybe<ConfluenceUpdateAnswerPayload>;
89195
89263
  confluence_updateCalendarPermissions?: Maybe<ConfluenceUpdateCalendarPermissionPayload>;
89196
89264
  confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
89197
89265
  confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
89266
+ confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
89198
89267
  confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
89199
89268
  confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
89200
89269
  confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
@@ -89407,6 +89476,7 @@ export declare type Mutation = {
89407
89476
  jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
89408
89477
  jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
89409
89478
  jira_applySuggestionActions?: Maybe<JiraApplySuggestionActionsPayload>;
89479
+ jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
89410
89480
  jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
89411
89481
  jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
89412
89482
  jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
@@ -89459,6 +89529,7 @@ export declare type Mutation = {
89459
89529
  jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
89460
89530
  jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
89461
89531
  jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
89532
+ jira_unarchiveIssue?: Maybe<JiraIssueUnarchivePayload>;
89462
89533
  jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
89463
89534
  jira_updateFieldToFieldSchemeAssociations?: Maybe<JiraFieldToFieldSchemeAssociationsPayload>;
89464
89535
  jira_updateGlobalCustomField?: Maybe<JiraUpdateGlobalCustomFieldPayload>;
@@ -89607,6 +89678,7 @@ export declare type Mutation = {
89607
89678
  setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
89608
89679
  setTaskStatus?: Maybe<GraphQlMutationResponse>;
89609
89680
  setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
89681
+ settings_updateCreationSettings?: Maybe<SettingsCreationSettings>;
89610
89682
  settings_updateNavigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
89611
89683
  shardedGraphStore?: Maybe<ShardedGraphStoreMutation>;
89612
89684
  shareResource?: Maybe<ShareResourcePayload>;
@@ -89917,6 +89989,13 @@ export declare type MutationAssetsDm_CreateObjectTagArgs = {
89917
89989
  input: AssetsDmObjectTagCreateInput;
89918
89990
  workspaceId: Scalars['ID']['input'];
89919
89991
  };
89992
+ export declare type MutationAssetsDm_CreateObjectsListExportRequestArgs = {
89993
+ cloudId: Scalars['ID']['input'];
89994
+ name: Scalars['String']['input'];
89995
+ objectId: Scalars['ID']['input'];
89996
+ searchInput: AssetsDmSavedSearchInput;
89997
+ workspaceId: Scalars['ID']['input'];
89998
+ };
89920
89999
  export declare type MutationAssetsDm_CreateSavedSearchArgs = {
89921
90000
  cloudId: Scalars['ID']['input'];
89922
90001
  isExportToAsset?: Scalars['Boolean']['input'];
@@ -89994,6 +90073,9 @@ export declare type MutationAvp_CopyDashboardRowArgs = {
89994
90073
  export declare type MutationAvp_CreateChartArgs = {
89995
90074
  input: AvpCreateChartInput;
89996
90075
  };
90076
+ export declare type MutationAvp_CreateDashboardArgs = {
90077
+ input: AvpCreateDashboardInput;
90078
+ };
89997
90079
  export declare type MutationAvp_DeleteChartArgs = {
89998
90080
  input: AvpDeleteChartInput;
89999
90081
  };
@@ -90027,6 +90109,9 @@ export declare type MutationAvp_UpdateDashboardRowHeightArgs = {
90027
90109
  export declare type MutationAvp_UpdateDashboardRowNumElementsArgs = {
90028
90110
  input: AvpUpdateDashboardRowNumElementsInput;
90029
90111
  };
90112
+ export declare type MutationAvp_UpdateDashboardStatusArgs = {
90113
+ input: AvpUpdateDashboardStatusInput;
90114
+ };
90030
90115
  export declare type MutationBoardCardMoveArgs = {
90031
90116
  input?: InputMaybe<BoardCardMoveInput>;
90032
90117
  };
@@ -90152,6 +90237,10 @@ export declare type MutationConfluence_DeleteAnswerArgs = {
90152
90237
  cloudId: Scalars['ID']['input'];
90153
90238
  input: ConfluenceDeleteAnswerInput;
90154
90239
  };
90240
+ export declare type MutationConfluence_DeleteCalendarArgs = {
90241
+ cloudId: Scalars['ID']['input'];
90242
+ input: ConfluenceDeleteCalendarInput;
90243
+ };
90155
90244
  export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
90156
90245
  cloudId: Scalars['ID']['input'];
90157
90246
  input: ConfluenceDeleteCalendarCustomEventTypeInput;
@@ -90192,6 +90281,9 @@ export declare type MutationConfluence_DeleteTopicArgs = {
90192
90281
  cloudId: Scalars['ID']['input'];
90193
90282
  input: ConfluenceDeleteTopicInput;
90194
90283
  };
90284
+ export declare type MutationConfluence_ExperimentInitAiFirstCreationArgs = {
90285
+ cloudId: Scalars['ID']['input'];
90286
+ };
90195
90287
  export declare type MutationConfluence_ExperimentInitModernizeArgs = {
90196
90288
  cloudId: Scalars['ID']['input'];
90197
90289
  };
@@ -90248,6 +90340,10 @@ export declare type MutationConfluence_SetSubCalendarReminderArgs = {
90248
90340
  cloudId: Scalars['ID']['input'];
90249
90341
  input: ConfluenceSetSubCalendarReminderInput;
90250
90342
  };
90343
+ export declare type MutationConfluence_SubscribeCalendarsArgs = {
90344
+ cloudId: Scalars['ID']['input'];
90345
+ input: ConfluenceCalendarSubscribeInput;
90346
+ };
90251
90347
  export declare type MutationConfluence_UnmarkCommentAsDanglingArgs = {
90252
90348
  cloudId: Scalars['ID']['input'];
90253
90349
  input: ConfluenceUnmarkCommentAsDanglingInput;
@@ -90256,6 +90352,10 @@ export declare type MutationConfluence_UnschedulePublishArgs = {
90256
90352
  cloudId: Scalars['ID']['input'];
90257
90353
  input: ConfluenceUnschedulePublishInput;
90258
90354
  };
90355
+ export declare type MutationConfluence_UnsubscribeCalendarArgs = {
90356
+ cloudId: Scalars['ID']['input'];
90357
+ input: ConfluenceUnsubscribeCalendarInput;
90358
+ };
90259
90359
  export declare type MutationConfluence_UnwatchLabelArgs = {
90260
90360
  cloudId: Scalars['ID']['input'];
90261
90361
  input: ConfluenceLabelWatchInput;
@@ -90280,6 +90380,10 @@ export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
90280
90380
  cloudId: Scalars['ID']['input'];
90281
90381
  updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
90282
90382
  };
90383
+ export declare type MutationConfluence_UpdateContentModeArgs = {
90384
+ cloudId: Scalars['ID']['input'];
90385
+ input: ConfluenceUpdateContentModeInput;
90386
+ };
90283
90387
  export declare type MutationConfluence_UpdateCustomContentPermissionsArgs = {
90284
90388
  cloudId: Scalars['ID']['input'];
90285
90389
  input: ConfluenceUpdateCustomContentPermissionsInput;
@@ -90989,6 +91093,9 @@ export declare type MutationJira_AddTimelineIssueLinkArgs = {
90989
91093
  export declare type MutationJira_ApplySuggestionActionsArgs = {
90990
91094
  input: Array<JiraApplySuggestionActionInput>;
90991
91095
  };
91096
+ export declare type MutationJira_ArchiveIssueArgs = {
91097
+ input: JiraIssueArchiveInput;
91098
+ };
90992
91099
  export declare type MutationJira_AssociateProjectToFieldSchemeArgs = {
90993
91100
  cloudId: Scalars['ID']['input'];
90994
91101
  input: JiraAssociateProjectToFieldSchemeInput;
@@ -91157,6 +91264,9 @@ export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
91157
91264
  cloudId: Scalars['ID']['input'];
91158
91265
  input: JiraTrashGlobalCustomFieldsInput;
91159
91266
  };
91267
+ export declare type MutationJira_UnarchiveIssueArgs = {
91268
+ input: JiraIssueUnarchiveInput;
91269
+ };
91160
91270
  export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
91161
91271
  cloudId: Scalars['ID']['input'];
91162
91272
  input: JiraFieldToFieldConfigSchemeAssociationsInput;
@@ -91610,6 +91720,9 @@ export declare type MutationSetTaskStatusArgs = {
91610
91720
  export declare type MutationSetUserSwimlaneStrategyArgs = {
91611
91721
  input?: InputMaybe<SetSwimlaneStrategyInput>;
91612
91722
  };
91723
+ export declare type MutationSettings_UpdateCreationSettingsArgs = {
91724
+ input: SettingsCreationSettingsInput;
91725
+ };
91613
91726
  export declare type MutationSettings_UpdateNavigationCustomisationArgs = {
91614
91727
  input: SettingsNavigationCustomisationInput;
91615
91728
  };
@@ -94786,6 +94899,7 @@ export declare type PublishConditionsDialog = {
94786
94899
  };
94787
94900
  export declare type PublishedContentProperties = {
94788
94901
  __typename?: 'PublishedContentProperties';
94902
+ contentMode?: Maybe<Scalars['String']['output']>;
94789
94903
  coverPictureWidth?: Maybe<Scalars['String']['output']>;
94790
94904
  defaultTitleEmoji?: Maybe<Scalars['String']['output']>;
94791
94905
  externalVersionId?: Maybe<Scalars['String']['output']>;
@@ -94891,6 +95005,7 @@ export declare type Query = {
94891
95005
  agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
94892
95006
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
94893
95007
  agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
95008
+ agentStudio_conversationReportByAgentId?: Maybe<AgentStudioConversationReportByAgentIdResult>;
94894
95009
  agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
94895
95010
  agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
94896
95011
  agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
@@ -94984,7 +95099,7 @@ export declare type Query = {
94984
95099
  channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
94985
95100
  channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
94986
95101
  channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
94987
- channelPlatform_getConversationId?: Maybe<ChannelPlatformGetContactIdResponse>;
95102
+ channelPlatform_getCustomerConversations?: Maybe<ChannelPlatformCustomerConversationsResponse>;
94988
95103
  channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
94989
95104
  channelPlatform_getQuickResponse?: Maybe<ChannelPlatformQuickResponse>;
94990
95105
  channelPlatform_getSurveyLink?: Maybe<ChannelPlatformSurveyLinkResponse>;
@@ -95521,6 +95636,7 @@ export declare type Query = {
95521
95636
  searchTimeseriesCount?: Maybe<SearchTimeseriesCount>;
95522
95637
  searchesByTerm?: Maybe<SearchesByTerm>;
95523
95638
  searchesWithZeroCTR?: Maybe<SearchesWithZeroCtr>;
95639
+ settings_creationSettings?: Maybe<SettingsCreationSettings>;
95524
95640
  settings_navigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
95525
95641
  shardedGraphStore?: Maybe<ShardedGraphStore>;
95526
95642
  shepherd?: Maybe<ShepherdQuery>;
@@ -95768,6 +95884,13 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
95768
95884
  export declare type QueryAgentStudio_AgentByIdArgs = {
95769
95885
  id: Scalars['ID']['input'];
95770
95886
  };
95887
+ export declare type QueryAgentStudio_ConversationReportByAgentIdArgs = {
95888
+ cloudId: Scalars['String']['input'];
95889
+ endDate?: InputMaybe<Scalars['String']['input']>;
95890
+ id: Scalars['ID']['input'];
95891
+ period?: InputMaybe<AgentStudioConversationReportPeriod>;
95892
+ startDate?: InputMaybe<Scalars['String']['input']>;
95893
+ };
95771
95894
  export declare type QueryAgentStudio_GetAgentActorRolesArgs = {
95772
95895
  after?: InputMaybe<Scalars['String']['input']>;
95773
95896
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -98387,6 +98510,10 @@ export declare type QuerySearchesWithZeroCtrArgs = {
98387
98510
  timezone: Scalars['String']['input'];
98388
98511
  toDate: Scalars['String']['input'];
98389
98512
  };
98513
+ export declare type QuerySettings_CreationSettingsArgs = {
98514
+ ownerAri?: InputMaybe<Scalars['ID']['input']>;
98515
+ tenantId?: InputMaybe<Scalars['ID']['input']>;
98516
+ };
98390
98517
  export declare type QuerySettings_NavigationCustomisationArgs = {
98391
98518
  entityAri?: InputMaybe<Scalars['ID']['input']>;
98392
98519
  ownerAri?: InputMaybe<Scalars['ID']['input']>;
@@ -99012,6 +99139,7 @@ export declare enum RadarEntityType {
99012
99139
  FocusArea = "focusArea",
99013
99140
  Position = "position",
99014
99141
  Proposal = "proposal",
99142
+ ProposedMovement = "proposedMovement",
99015
99143
  Team = "team",
99016
99144
  Worker = "worker"
99017
99145
  }
@@ -99391,6 +99519,7 @@ export declare type RadarWorkspace = {
99391
99519
  id: Scalars['ID']['output'];
99392
99520
  positionFields: Array<RadarFieldDefinition>;
99393
99521
  proposalFields: Array<RadarFieldDefinition>;
99522
+ proposedMovementFields: Array<RadarFieldDefinition>;
99394
99523
  settings: RadarSettings;
99395
99524
  teamFields: Array<RadarFieldDefinition>;
99396
99525
  userContext?: Maybe<RadarUserContext>;
@@ -99403,6 +99532,7 @@ export declare type RadarWorktypeAllocation = {
99403
99532
  __typename?: 'RadarWorktypeAllocation';
99404
99533
  ctb?: Maybe<Scalars['Int']['output']>;
99405
99534
  id: Scalars['ID']['output'];
99535
+ organisationARI: Scalars['ID']['output'];
99406
99536
  organisationId: Scalars['ID']['output'];
99407
99537
  positionCount?: Maybe<Scalars['Int']['output']>;
99408
99538
  productivity?: Maybe<Scalars['Int']['output']>;
@@ -101198,6 +101328,7 @@ export declare type SearchConfluenceFilter = {
101198
101328
  creatorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
101199
101329
  isVerified?: InputMaybe<Scalars['Boolean']['input']>;
101200
101330
  labelsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
101331
+ mentions?: InputMaybe<Array<Scalars['String']['input']>>;
101201
101332
  owners?: InputMaybe<Array<Scalars['String']['input']>>;
101202
101333
  pageStatus?: InputMaybe<Array<Scalars['String']['input']>>;
101203
101334
  range?: InputMaybe<Array<InputMaybe<SearchConfluenceRangeFilter>>>;
@@ -102312,6 +102443,42 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
102312
102443
  strategy: SwimlaneStrategy;
102313
102444
  success: Scalars['Boolean']['output'];
102314
102445
  };
102446
+ export declare type SettingsCreationProperty = {
102447
+ __typename?: 'SettingsCreationProperty';
102448
+ key?: Maybe<Scalars['ID']['output']>;
102449
+ value?: Maybe<Scalars['String']['output']>;
102450
+ };
102451
+ export declare type SettingsCreationPropertyConnection = {
102452
+ __typename?: 'SettingsCreationPropertyConnection';
102453
+ edges?: Maybe<Array<SettingsCreationPropertyEdge>>;
102454
+ nodes?: Maybe<Array<Maybe<SettingsCreationProperty>>>;
102455
+ pageInfo: PageInfo;
102456
+ };
102457
+ export declare type SettingsCreationPropertyEdge = {
102458
+ __typename?: 'SettingsCreationPropertyEdge';
102459
+ cursor: Scalars['String']['output'];
102460
+ node?: Maybe<SettingsCreationProperty>;
102461
+ };
102462
+ export declare type SettingsCreationPropertyInput = {
102463
+ key: Scalars['ID']['input'];
102464
+ value: Scalars['String']['input'];
102465
+ };
102466
+ export declare type SettingsCreationSettings = {
102467
+ __typename?: 'SettingsCreationSettings';
102468
+ autoApply?: Maybe<Scalars['Boolean']['output']>;
102469
+ id: Scalars['ID']['output'];
102470
+ properties?: Maybe<SettingsCreationPropertyConnection>;
102471
+ };
102472
+ export declare type SettingsCreationSettingsPropertiesArgs = {
102473
+ after?: InputMaybe<Scalars['String']['input']>;
102474
+ first?: InputMaybe<Scalars['Int']['input']>;
102475
+ };
102476
+ export declare type SettingsCreationSettingsInput = {
102477
+ autoApply?: InputMaybe<Scalars['Boolean']['input']>;
102478
+ ownerAri: Scalars['ID']['input'];
102479
+ properties?: InputMaybe<Array<SettingsCreationPropertyInput>>;
102480
+ tenantId: Scalars['ID']['input'];
102481
+ };
102315
102482
  export declare type SettingsDisplayProperty = {
102316
102483
  __typename?: 'SettingsDisplayProperty';
102317
102484
  key?: Maybe<Scalars['ID']['output']>;
@@ -126987,6 +127154,14 @@ export declare type TrelloBaseBoardPrefs = {
126987
127154
  autoArchive?: Maybe<Scalars['Boolean']['output']>;
126988
127155
  background?: Maybe<TrelloBoardBackground>;
126989
127156
  };
127157
+ export declare type TrelloBaseBoardUpdated = {
127158
+ _deltas?: Maybe<Array<Scalars['String']['output']>>;
127159
+ enterprise?: Maybe<TrelloEnterprise>;
127160
+ id?: Maybe<Scalars['ID']['output']>;
127161
+ lists?: Maybe<TrelloListUpdatedConnection>;
127162
+ objectId?: Maybe<Scalars['ID']['output']>;
127163
+ workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
127164
+ };
126990
127165
  export declare type TrelloBaseCard = {
126991
127166
  actions?: Maybe<TrelloCardActionConnection>;
126992
127167
  attachments?: Maybe<TrelloAttachmentConnection>;
@@ -127026,6 +127201,7 @@ export declare type TrelloBaseCardAttachmentsArgs = {
127026
127201
  };
127027
127202
  export declare type TrelloBaseCardChecklistsArgs = {
127028
127203
  after?: InputMaybe<Scalars['String']['input']>;
127204
+ checklistId?: InputMaybe<Scalars['ID']['input']>;
127029
127205
  first?: InputMaybe<Scalars['Int']['input']>;
127030
127206
  };
127031
127207
  export declare type TrelloBoard = Node & {
@@ -127274,11 +127450,22 @@ export declare type TrelloBoardRestrictions = {
127274
127450
  private?: Maybe<Scalars['String']['output']>;
127275
127451
  public?: Maybe<Scalars['String']['output']>;
127276
127452
  };
127453
+ export declare type TrelloBoardStarConnectionUpdated = {
127454
+ __typename?: 'TrelloBoardStarConnectionUpdated';
127455
+ edges?: Maybe<Array<TrelloBoardStarUpdatedEdge>>;
127456
+ };
127457
+ export declare type TrelloBoardStarUpdatedEdge = {
127458
+ __typename?: 'TrelloBoardStarUpdatedEdge';
127459
+ boardObjectId: Scalars['String']['output'];
127460
+ id: Scalars['ID']['output'];
127461
+ objectId: Scalars['String']['output'];
127462
+ position: Scalars['Float']['output'];
127463
+ };
127277
127464
  export declare type TrelloBoardStickersLimits = {
127278
127465
  __typename?: 'TrelloBoardStickersLimits';
127279
127466
  perCard?: Maybe<TrelloLimitProps>;
127280
127467
  };
127281
- export declare type TrelloBoardUpdated = {
127468
+ export declare type TrelloBoardUpdated = TrelloBaseBoardUpdated & {
127282
127469
  __typename?: 'TrelloBoardUpdated';
127283
127470
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
127284
127471
  closed?: Maybe<Scalars['Boolean']['output']>;
@@ -127396,6 +127583,7 @@ export declare type TrelloCardAttachmentsArgs = {
127396
127583
  };
127397
127584
  export declare type TrelloCardChecklistsArgs = {
127398
127585
  after?: InputMaybe<Scalars['String']['input']>;
127586
+ checklistId?: InputMaybe<Scalars['ID']['input']>;
127399
127587
  first?: InputMaybe<Scalars['Int']['input']>;
127400
127588
  };
127401
127589
  export declare type TrelloCardCustomFieldItemsArgs = {
@@ -127927,6 +128115,7 @@ export declare type TrelloCreateApplicationInput = {
127927
128115
  iframeUrl?: InputMaybe<Scalars['URL']['input']>;
127928
128116
  locale?: InputMaybe<Scalars['String']['input']>;
127929
128117
  name: Scalars['String']['input'];
128118
+ scopes?: InputMaybe<Array<Scalars['String']['input']>>;
127930
128119
  supportContact: Scalars['String']['input'];
127931
128120
  workspaceId: Scalars['ID']['input'];
127932
128121
  };
@@ -128359,6 +128548,7 @@ export declare type TrelloInboxCardAttachmentsArgs = {
128359
128548
  };
128360
128549
  export declare type TrelloInboxCardChecklistsArgs = {
128361
128550
  after?: InputMaybe<Scalars['String']['input']>;
128551
+ checklistId?: InputMaybe<Scalars['ID']['input']>;
128362
128552
  first?: InputMaybe<Scalars['Int']['input']>;
128363
128553
  };
128364
128554
  export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
@@ -128366,7 +128556,7 @@ export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
128366
128556
  autoArchive?: Maybe<Scalars['Boolean']['output']>;
128367
128557
  background?: Maybe<TrelloBoardBackground>;
128368
128558
  };
128369
- export declare type TrelloInboxUpdated = {
128559
+ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
128370
128560
  __typename?: 'TrelloInboxUpdated';
128371
128561
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
128372
128562
  board: TrelloBoardUpdated;
@@ -128612,6 +128802,7 @@ export declare type TrelloMemberPrefs = {
128612
128802
  export declare type TrelloMemberUpdated = {
128613
128803
  __typename?: 'TrelloMemberUpdated';
128614
128804
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
128805
+ boardStars?: Maybe<TrelloBoardStarConnectionUpdated>;
128615
128806
  boards?: Maybe<TrelloBoardConnectionUpdated>;
128616
128807
  fullName?: Maybe<Scalars['String']['output']>;
128617
128808
  id?: Maybe<Scalars['ID']['output']>;
@@ -129646,6 +129837,7 @@ export declare type TrelloSubscriptionApi = {
129646
129837
  onBoardCardSetUpdated?: Maybe<TrelloBoardUpdated>;
129647
129838
  onBoardUpdated?: Maybe<TrelloBoardUpdated>;
129648
129839
  onCardBatchUpdated?: Maybe<TrelloCardBatch>;
129840
+ onInboxUpdated?: Maybe<TrelloInboxUpdated>;
129649
129841
  onMemberUpdated?: Maybe<TrelloMemberUpdated>;
129650
129842
  onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
129651
129843
  };
@@ -129660,6 +129852,9 @@ export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
129660
129852
  export declare type TrelloSubscriptionApiOnCardBatchUpdatedArgs = {
129661
129853
  id: Scalars['ID']['input'];
129662
129854
  };
129855
+ export declare type TrelloSubscriptionApiOnInboxUpdatedArgs = {
129856
+ memberId: Scalars['ID']['input'];
129857
+ };
129663
129858
  export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
129664
129859
  id: Scalars['ID']['input'];
129665
129860
  };