@forge/cli-shared 8.15.1-next.8 → 8.15.1-next.9-experimental-3fd1b86

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.
@@ -457,6 +457,23 @@ export declare type AvpChartTemplate = {
457
457
  title: Scalars['String']['output'];
458
458
  type?: Maybe<Scalars['String']['output']>;
459
459
  };
460
+ export declare type AvpChartTemplatePreview = {
461
+ __typename?: 'AVPChartTemplatePreview';
462
+ data?: Maybe<AvpChartTemplatePreviewData>;
463
+ settings?: Maybe<AvpChartClientSettings>;
464
+ };
465
+ export declare type AvpChartTemplatePreviewColumn = {
466
+ __typename?: 'AVPChartTemplatePreviewColumn';
467
+ dataType?: Maybe<Scalars['String']['output']>;
468
+ header?: Maybe<Scalars['String']['output']>;
469
+ isNullable?: Maybe<Scalars['Boolean']['output']>;
470
+ };
471
+ export declare type AvpChartTemplatePreviewData = {
472
+ __typename?: 'AVPChartTemplatePreviewData';
473
+ chartType: Scalars['String']['output'];
474
+ columns?: Maybe<Array<Maybe<AvpChartTemplatePreviewColumn>>>;
475
+ data?: Maybe<Scalars['String']['output']>;
476
+ };
460
477
  export declare type AvpClearChartInRowPayload = Payload & {
461
478
  __typename?: 'AVPClearChartInRowPayload';
462
479
  canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
@@ -907,6 +924,22 @@ export declare enum AvpPermissionsAccessLevel {
907
924
  Read = "READ",
908
925
  Write = "WRITE"
909
926
  }
927
+ export declare type AvpPermissionsCapabilityEntry = {
928
+ capabilityId: Scalars['String']['input'];
929
+ key?: InputMaybe<Scalars['String']['input']>;
930
+ };
931
+ export declare enum AvpPermissionsCapabilityFailureType {
932
+ CustomCheckFailed = "CUSTOM_CHECK_FAILED",
933
+ EditionUnavailable = "EDITION_UNAVAILABLE",
934
+ None = "NONE",
935
+ PermissionDenied = "PERMISSION_DENIED",
936
+ ProductRequired = "PRODUCT_REQUIRED"
937
+ }
938
+ export declare type AvpPermissionsCapabilityResult = {
939
+ __typename?: 'AVPPermissionsCapabilityResult';
940
+ capabilityId?: Maybe<Scalars['String']['output']>;
941
+ result?: Maybe<AvpPermissionsHasCapabilityResponse>;
942
+ };
910
943
  export declare type AvpPermissionsDashboardIdentityAccess = {
911
944
  __typename?: 'AVPPermissionsDashboardIdentityAccess';
912
945
  dashboardId: Scalars['ID']['output'];
@@ -928,6 +961,14 @@ export declare type AvpPermissionsFailedDashboardUserAccess = {
928
961
  errorMessage: Scalars['String']['output'];
929
962
  user: AvpPermissionsDashboardUserAccessResult;
930
963
  };
964
+ export declare type AvpPermissionsGetCapabilitiesInput = {
965
+ capabilityRequests?: InputMaybe<Array<AvpPermissionsCapabilityEntry>>;
966
+ cloudId: Scalars['ID']['input'];
967
+ };
968
+ export declare type AvpPermissionsGetCapabilitiesResponse = {
969
+ __typename?: 'AVPPermissionsGetCapabilitiesResponse';
970
+ capabilities?: Maybe<Array<AvpPermissionsCapabilityResult>>;
971
+ };
931
972
  export declare type AvpPermissionsGetDashboardIdentityAccessInput = {
932
973
  dashboardId: Scalars['ID']['input'];
933
974
  directAccess?: InputMaybe<Scalars['Boolean']['input']>;
@@ -940,6 +981,22 @@ export declare type AvpPermissionsGroupAccess = {
940
981
  group?: Maybe<IdentityGroup>;
941
982
  principalId: Scalars['ID']['output'];
942
983
  };
984
+ export declare type AvpPermissionsHasCapabilityInput = {
985
+ capabilityId: Scalars['String']['input'];
986
+ cloudId: Scalars['ID']['input'];
987
+ key?: InputMaybe<Scalars['String']['input']>;
988
+ };
989
+ export declare type AvpPermissionsHasCapabilityResponse = {
990
+ __typename?: 'AVPPermissionsHasCapabilityResponse';
991
+ failureCode?: Maybe<Scalars['String']['output']>;
992
+ failureType?: Maybe<AvpPermissionsCapabilityFailureType>;
993
+ hasAccess?: Maybe<Scalars['Boolean']['output']>;
994
+ hasManage?: Maybe<Scalars['Boolean']['output']>;
995
+ hasWrite?: Maybe<Scalars['Boolean']['output']>;
996
+ productResults?: Maybe<Array<AvpPermissionsProductCapabilityResult>>;
997
+ properties?: Maybe<Array<AvpPermissionsPropertyEntry>>;
998
+ reason?: Maybe<Scalars['String']['output']>;
999
+ };
943
1000
  export declare type AvpPermissionsHelloResponse = {
944
1001
  __typename?: 'AVPPermissionsHelloResponse';
945
1002
  hello?: Maybe<Scalars['String']['output']>;
@@ -949,6 +1006,35 @@ export declare type AvpPermissionsPrincipals = {
949
1006
  groups?: Maybe<Array<AvpPermissionsGroupAccess>>;
950
1007
  users?: Maybe<Array<AvpPermissionsUserAccess>>;
951
1008
  };
1009
+ export declare type AvpPermissionsProductCapabilityResponse = {
1010
+ __typename?: 'AVPPermissionsProductCapabilityResponse';
1011
+ failureCode?: Maybe<Scalars['String']['output']>;
1012
+ failureType?: Maybe<AvpPermissionsCapabilityFailureType>;
1013
+ hasAccess?: Maybe<Scalars['Boolean']['output']>;
1014
+ hasManage?: Maybe<Scalars['Boolean']['output']>;
1015
+ hasWrite?: Maybe<Scalars['Boolean']['output']>;
1016
+ properties?: Maybe<Array<AvpPermissionsPropertyEntry>>;
1017
+ reason?: Maybe<Scalars['String']['output']>;
1018
+ };
1019
+ export declare type AvpPermissionsProductCapabilityResult = {
1020
+ __typename?: 'AVPPermissionsProductCapabilityResult';
1021
+ productId?: Maybe<Scalars['String']['output']>;
1022
+ result?: Maybe<AvpPermissionsProductCapabilityResponse>;
1023
+ };
1024
+ export declare type AvpPermissionsPropertyEntry = {
1025
+ __typename?: 'AVPPermissionsPropertyEntry';
1026
+ key?: Maybe<Scalars['String']['output']>;
1027
+ value?: Maybe<AvpPermissionsPropertyValue>;
1028
+ };
1029
+ export declare type AvpPermissionsPropertyValue = AvpPermissionsPropertyValueList | AvpPermissionsPropertyValueString;
1030
+ export declare type AvpPermissionsPropertyValueList = {
1031
+ __typename?: 'AVPPermissionsPropertyValueList';
1032
+ values?: Maybe<Array<Scalars['String']['output']>>;
1033
+ };
1034
+ export declare type AvpPermissionsPropertyValueString = {
1035
+ __typename?: 'AVPPermissionsPropertyValueString';
1036
+ value?: Maybe<Scalars['String']['output']>;
1037
+ };
952
1038
  export declare type AvpPermissionsUpdateDashboardUserAccessInput = {
953
1039
  cloudId: Scalars['ID']['input'];
954
1040
  containerId?: InputMaybe<Scalars['ID']['input']>;
@@ -3190,6 +3276,7 @@ export declare type AgentStudioActorRoles = {
3190
3276
  edges?: Maybe<Array<AgentStudioActorRoleEdge>>;
3191
3277
  etag?: Maybe<Scalars['String']['output']>;
3192
3278
  pageInfo: PageInfo;
3279
+ totalCount?: Maybe<Scalars['Int']['output']>;
3193
3280
  };
3194
3281
  export declare type AgentStudioAddGroupsToCreatePermissionPayload = Payload & {
3195
3282
  __typename?: 'AgentStudioAddGroupsToCreatePermissionPayload';
@@ -3829,6 +3916,11 @@ export declare type AgentStudioPortalChannel = AgentStudioChannel & {
3829
3916
  connected?: Maybe<Scalars['Boolean']['output']>;
3830
3917
  url?: Maybe<Scalars['String']['output']>;
3831
3918
  };
3919
+ export declare type AgentStudioProductAriAgentResult = {
3920
+ __typename?: 'AgentStudioProductAriAgentResult';
3921
+ agent?: Maybe<AgentStudioAgentResult>;
3922
+ hasAgent: Scalars['Boolean']['output'];
3923
+ };
3832
3924
  export declare enum AgentStudioProductType {
3833
3925
  Csm = "CSM",
3834
3926
  RovoAgents = "ROVO_AGENTS",
@@ -4228,6 +4320,19 @@ export declare type AgentWorkspaceAgentAvailability = {
4228
4320
  teamNames: Array<Scalars['String']['output']>;
4229
4321
  updatedAt: Scalars['DateTime']['output'];
4230
4322
  };
4323
+ export declare type AgentWorkspaceAgentCapacity = {
4324
+ __typename?: 'AgentWorkspaceAgentCapacity';
4325
+ agentId: Scalars['ID']['output'];
4326
+ agentName: Scalars['String']['output'];
4327
+ availableSlots: Scalars['Int']['output'];
4328
+ currentLoad: Scalars['Int']['output'];
4329
+ maxCapacity: Scalars['Int']['output'];
4330
+ status: AgentWorkspaceCapacityStatus;
4331
+ teamIds: Array<Scalars['ID']['output']>;
4332
+ teamNames: Array<Scalars['String']['output']>;
4333
+ updatedAt: Scalars['DateTime']['output'];
4334
+ utilizationPercent: Scalars['Float']['output'];
4335
+ };
4231
4336
  export declare type AgentWorkspaceAgentShifts = {
4232
4337
  __typename?: 'AgentWorkspaceAgentShifts';
4233
4338
  agent: AgentWorkspaceAgent;
@@ -4275,6 +4380,51 @@ export declare type AgentWorkspaceAvailabilitySummary = {
4275
4380
  onBreak: Scalars['Int']['output'];
4276
4381
  onDuty: Scalars['Int']['output'];
4277
4382
  };
4383
+ export declare type AgentWorkspaceCapacityConnection = {
4384
+ __typename?: 'AgentWorkspaceCapacityConnection';
4385
+ nodes: Array<AgentWorkspaceAgentCapacity>;
4386
+ pageInfo: AgentWorkspaceCapacityPageInfo;
4387
+ summary: AgentWorkspaceCapacitySummary;
4388
+ };
4389
+ export declare type AgentWorkspaceCapacityError = {
4390
+ __typename?: 'AgentWorkspaceCapacityError';
4391
+ code: Scalars['String']['output'];
4392
+ field?: Maybe<Scalars['String']['output']>;
4393
+ message: Scalars['String']['output'];
4394
+ };
4395
+ export declare type AgentWorkspaceCapacityInput = {
4396
+ agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4397
+ cloudId: Scalars['ID']['input'];
4398
+ page?: InputMaybe<Scalars['Int']['input']>;
4399
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
4400
+ projectKey: Scalars['String']['input'];
4401
+ statuses?: InputMaybe<Array<AgentWorkspaceCapacityStatus>>;
4402
+ teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4403
+ };
4404
+ export declare type AgentWorkspaceCapacityPageInfo = {
4405
+ __typename?: 'AgentWorkspaceCapacityPageInfo';
4406
+ currentPage: Scalars['Int']['output'];
4407
+ hasNextPage: Scalars['Boolean']['output'];
4408
+ hasPreviousPage: Scalars['Boolean']['output'];
4409
+ pageSize: Scalars['Int']['output'];
4410
+ totalCount: Scalars['Int']['output'];
4411
+ totalPages: Scalars['Int']['output'];
4412
+ };
4413
+ export declare enum AgentWorkspaceCapacityStatus {
4414
+ High = "HIGH",
4415
+ Idle = "IDLE",
4416
+ Optimal = "OPTIMAL",
4417
+ Overloaded = "OVERLOADED"
4418
+ }
4419
+ export declare type AgentWorkspaceCapacitySummary = {
4420
+ __typename?: 'AgentWorkspaceCapacitySummary';
4421
+ activeAgents: Scalars['Int']['output'];
4422
+ agentsWithWorkItems: Scalars['Int']['output'];
4423
+ assignedPercent: Scalars['Float']['output'];
4424
+ overloadedCount: Scalars['Int']['output'];
4425
+ totalAssignedWorkItems: Scalars['Int']['output'];
4426
+ totalCapacity: Scalars['Int']['output'];
4427
+ };
4278
4428
  export declare type AgentWorkspaceCreateScheduleInput = {
4279
4429
  agentIds: Array<Scalars['ID']['input']>;
4280
4430
  cloudId: Scalars['ID']['input'];
@@ -4302,6 +4452,12 @@ export declare enum AgentWorkspaceDayOfWeek {
4302
4452
  Tuesday = "TUESDAY",
4303
4453
  Wednesday = "WEDNESDAY"
4304
4454
  }
4455
+ export declare type AgentWorkspaceDefaultCapacity = {
4456
+ __typename?: 'AgentWorkspaceDefaultCapacity';
4457
+ defaultCapacity: Scalars['Int']['output'];
4458
+ projectId: Scalars['ID']['output'];
4459
+ updatedAt: Scalars['DateTime']['output'];
4460
+ };
4305
4461
  export declare type AgentWorkspaceDeleteScheduleInput = {
4306
4462
  cloudId: Scalars['ID']['input'];
4307
4463
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -4390,6 +4546,17 @@ export declare type AgentWorkspaceScheduleVersion = {
4390
4546
  versionEndTime: Scalars['DateTime']['output'];
4391
4547
  versionStartTime: Scalars['DateTime']['output'];
4392
4548
  };
4549
+ export declare type AgentWorkspaceSetDefaultCapacityInput = {
4550
+ cloudId: Scalars['ID']['input'];
4551
+ defaultCapacity: Scalars['Int']['input'];
4552
+ projectKey: Scalars['String']['input'];
4553
+ };
4554
+ export declare type AgentWorkspaceSetDefaultCapacityPayload = {
4555
+ __typename?: 'AgentWorkspaceSetDefaultCapacityPayload';
4556
+ defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
4557
+ errors?: Maybe<Array<AgentWorkspaceCapacityError>>;
4558
+ success: Scalars['Boolean']['output'];
4559
+ };
4393
4560
  export declare type AgentWorkspaceShift = {
4394
4561
  __typename?: 'AgentWorkspaceShift';
4395
4562
  agentId: Scalars['ID']['output'];
@@ -21594,6 +21761,14 @@ export declare type ConfluenceApplicationLink = {
21594
21761
  rpcUrl?: Maybe<Scalars['String']['output']>;
21595
21762
  typeId: Scalars['String']['output'];
21596
21763
  };
21764
+ export declare enum ConfluenceApprovalTransitionType {
21765
+ Directed = "DIRECTED",
21766
+ Initial = "INITIAL"
21767
+ }
21768
+ export declare type ConfluenceApprovalsDate = {
21769
+ __typename?: 'ConfluenceApprovalsDate';
21770
+ value: Scalars['String']['output'];
21771
+ };
21597
21772
  export declare type ConfluenceApprovalsWorkflowStatus = {
21598
21773
  __typename?: 'ConfluenceApprovalsWorkflowStatus';
21599
21774
  allowsReviews?: Maybe<Scalars['Boolean']['output']>;
@@ -25672,6 +25847,20 @@ export declare type ConfluenceRestrictionsResult = {
25672
25847
  __typename?: 'ConfluenceRestrictionsResult';
25673
25848
  restrictions: Array<Maybe<ConfluenceRestriction>>;
25674
25849
  };
25850
+ export declare type ConfluenceReviewerDecisionInfo = {
25851
+ __typename?: 'ConfluenceReviewerDecisionInfo';
25852
+ comment?: Maybe<Scalars['String']['output']>;
25853
+ lastModifiedDate?: Maybe<ConfluenceApprovalsDate>;
25854
+ principalId: Scalars['String']['output'];
25855
+ principalType: ConfluencePrincipalType;
25856
+ reviewerDecisionStatus?: Maybe<ConfluenceReviewerDecisionState>;
25857
+ };
25858
+ export declare enum ConfluenceReviewerDecisionState {
25859
+ PendingReview = "PENDING_REVIEW",
25860
+ ReviewerApproved = "REVIEWER_APPROVED",
25861
+ ReviewerDenied = "REVIEWER_DENIED",
25862
+ ReviewCanceled = "REVIEW_CANCELED"
25863
+ }
25675
25864
  export declare enum ConfluenceRoleAssignabilityCode {
25676
25865
  Assignable = "ASSIGNABLE",
25677
25866
  DefaultRoleAssignmentNotSupported = "DEFAULT_ROLE_ASSIGNMENT_NOT_SUPPORTED",
@@ -26557,6 +26746,13 @@ export declare type ConfluenceUpdateContentAppearancePayload = {
26557
26746
  errors?: Maybe<Array<MutationError>>;
26558
26747
  success: Scalars['Boolean']['output'];
26559
26748
  };
26749
+ export declare type ConfluenceUpdateContentApprovalRequestInput = {
26750
+ approvalStatus?: InputMaybe<ConfluenceWorkflowReviewStatus>;
26751
+ comment?: InputMaybe<Scalars['String']['input']>;
26752
+ contentApprovalReviewId: Scalars['Long']['input'];
26753
+ reviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalReviewerInput>>>;
26754
+ workflowApplicationId: Scalars['Long']['input'];
26755
+ };
26560
26756
  export declare type ConfluenceUpdateContentDirectRestrictionsInput = {
26561
26757
  add?: InputMaybe<ConfluenceDirectRestrictionsAddInput>;
26562
26758
  contentId: Scalars['ID']['input'];
@@ -26848,6 +27044,11 @@ export declare type ConfluenceUpdateQuestionPayload = Payload & {
26848
27044
  question?: Maybe<ConfluenceQuestion>;
26849
27045
  success: Scalars['Boolean']['output'];
26850
27046
  };
27047
+ export declare type ConfluenceUpdateReviewerDecisionInput = {
27048
+ comment?: InputMaybe<Scalars['String']['input']>;
27049
+ decisionStatus: ConfluenceReviewerDecisionState;
27050
+ reviewerId: Scalars['Long']['input'];
27051
+ };
26851
27052
  export declare type ConfluenceUpdateShareableLinksInput = {
26852
27053
  accessType: ConfluencePublicLinkAccessType;
26853
27054
  contentId: Scalars['ID']['input'];
@@ -27271,12 +27472,30 @@ export declare enum ConfluenceWorkflowReviewStatus {
27271
27472
  Denied = "DENIED",
27272
27473
  Pending = "PENDING"
27273
27474
  }
27475
+ export declare type ConfluenceWorkflowReviewWithDecisions = {
27476
+ __typename?: 'ConfluenceWorkflowReviewWithDecisions';
27477
+ reviewComment?: Maybe<Scalars['String']['output']>;
27478
+ reviewLastModified?: Maybe<ConfluenceApprovalsDate>;
27479
+ reviewStatus: ConfluenceWorkflowReviewStatus;
27480
+ reviewerDecisions: Array<Maybe<ConfluenceReviewerDecisionInfo>>;
27481
+ };
27482
+ export declare type ConfluenceWorkflowReviewWithDecisionsPayload = {
27483
+ __typename?: 'ConfluenceWorkflowReviewWithDecisionsPayload';
27484
+ errors: Array<MutationError>;
27485
+ success: Scalars['Boolean']['output'];
27486
+ workflowReviewWithDecisions?: Maybe<ConfluenceWorkflowReviewWithDecisions>;
27487
+ };
27274
27488
  export declare type ConfluenceWorkflowReviewer = {
27275
27489
  __typename?: 'ConfluenceWorkflowReviewer';
27276
27490
  isRequired: Scalars['Boolean']['output'];
27277
27491
  principalId: Scalars['String']['output'];
27278
27492
  principalType: Scalars['String']['output'];
27279
27493
  };
27494
+ export declare type ConfluenceWorkflowReviewerDecisionPayload = {
27495
+ __typename?: 'ConfluenceWorkflowReviewerDecisionPayload';
27496
+ errors: Array<MutationError>;
27497
+ success: Scalars['Boolean']['output'];
27498
+ };
27280
27499
  export declare type Confluence_CqlMetaData = {
27281
27500
  __typename?: 'Confluence_cqlMetaData';
27282
27501
  cqlContentTypes: Array<Maybe<CqlDisplayableType>>;
@@ -29571,8 +29790,10 @@ export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
29571
29790
  }
29572
29791
  export declare enum ConvoAiHomeThreadSuggestedActionType {
29573
29792
  Delete = "DELETE",
29793
+ JumpBackIn = "JUMP_BACK_IN",
29574
29794
  Reply = "REPLY",
29575
29795
  Share = "SHARE",
29796
+ TakeAction = "TAKE_ACTION",
29576
29797
  View = "VIEW"
29577
29798
  }
29578
29799
  export declare type ConvoAiHomeThreadsEdge = {
@@ -29819,6 +30040,7 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
29819
30040
  contributorWorkAssociations?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
29820
30041
  errors?: Maybe<Array<MutationError>>;
29821
30042
  success: Scalars['Boolean']['output'];
30043
+ workContributorAssociations?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
29822
30044
  };
29823
30045
  export declare type CplsAddWorkScopeAssociationsInput = {
29824
30046
  cloudId: Scalars['ID']['input'];
@@ -36726,7 +36948,7 @@ export declare type EcosystemQuery = {
36726
36948
  appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
36727
36949
  appVersionEnrolments?: Maybe<Array<Maybe<AppVersionEnrolment>>>;
36728
36950
  appVersionRollout?: Maybe<AppVersionRollout>;
36729
- appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
36951
+ appsInstalledInContexts?: Maybe<EcosystemAppsInstalledInContextsConnection>;
36730
36952
  checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
36731
36953
  dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
36732
36954
  devConsole?: Maybe<DevConsoleQuery>;
@@ -36736,7 +36958,7 @@ export declare type EcosystemQuery = {
36736
36958
  forgeMetrics?: Maybe<ForgeMetricsQuery>;
36737
36959
  fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
36738
36960
  globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
36739
- marketplaceData: EcosystemMarketplaceData;
36961
+ marketplaceData?: Maybe<EcosystemMarketplaceData>;
36740
36962
  userAccess?: Maybe<UserAccess>;
36741
36963
  userGrants?: Maybe<UserGrantConnection>;
36742
36964
  userInstallationRules?: Maybe<UserInstallationRules>;
@@ -94313,6 +94535,13 @@ export declare type InfluentsNotificationActor = {
94313
94535
  avatarURL?: Maybe<Scalars['String']['output']>;
94314
94536
  displayName?: Maybe<Scalars['String']['output']>;
94315
94537
  };
94538
+ export declare type InfluentsNotificationActorFilter = {
94539
+ afterTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
94540
+ beforeTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
94541
+ categoryFilter?: InputMaybe<InfluentsNotificationCategory>;
94542
+ productFilter?: InputMaybe<Scalars['String']['input']>;
94543
+ readStateFilter?: InputMaybe<InfluentsNotificationReadState>;
94544
+ };
94316
94545
  export declare enum InfluentsNotificationActorType {
94317
94546
  Animated = "animated",
94318
94547
  Url = "url"
@@ -94498,10 +94727,15 @@ export declare type InfluentsNotificationPath = {
94498
94727
  };
94499
94728
  export declare type InfluentsNotificationQuery = {
94500
94729
  __typename?: 'InfluentsNotificationQuery';
94730
+ availableActors: Array<InfluentsNotificationActor>;
94501
94731
  notificationFeed: InfluentsNotificationFeedConnection;
94502
94732
  notificationGroup: InfluentsNotificationGroupConnection;
94503
94733
  unseenNotificationCount: Scalars['Int']['output'];
94504
94734
  };
94735
+ export declare type InfluentsNotificationQueryAvailableActorsArgs = {
94736
+ filter?: InputMaybe<InfluentsNotificationActorFilter>;
94737
+ first?: InputMaybe<Scalars['Int']['input']>;
94738
+ };
94505
94739
  export declare type InfluentsNotificationQueryNotificationFeedArgs = {
94506
94740
  after?: InputMaybe<Scalars['String']['input']>;
94507
94741
  filter?: InputMaybe<InfluentsNotificationFilter>;
@@ -96676,6 +96910,7 @@ export declare type JiraBacklogData = {
96676
96910
  selectedForDevelopmentColumn?: Maybe<JiraBacklogColumn>;
96677
96911
  sprints?: Maybe<Array<Maybe<JiraBacklogSprint>>>;
96678
96912
  supportsPages?: Maybe<Scalars['Boolean']['output']>;
96913
+ townsquareProjects?: Maybe<Array<Maybe<JiraBacklogTownsquareProject>>>;
96679
96914
  versionData?: Maybe<JiraBacklogVersionData>;
96680
96915
  };
96681
96916
  export declare type JiraBacklogEpicConfig = {
@@ -96758,6 +96993,7 @@ export declare type JiraBacklogIssue = {
96758
96993
  statusName?: Maybe<Scalars['String']['output']>;
96759
96994
  statusUrl?: Maybe<Scalars['String']['output']>;
96760
96995
  summary?: Maybe<Scalars['String']['output']>;
96996
+ townsquareProjectId?: Maybe<Scalars['String']['output']>;
96761
96997
  trackingStatistic?: Maybe<JiraBacklogStatisticFieldValue>;
96762
96998
  typeHierarchyLevel?: Maybe<Scalars['Int']['output']>;
96763
96999
  typeId?: Maybe<Scalars['String']['output']>;
@@ -96935,6 +97171,16 @@ export declare type JiraBacklogTimeTrackingSymbols = {
96935
97171
  minute?: Maybe<Scalars['String']['output']>;
96936
97172
  week?: Maybe<Scalars['String']['output']>;
96937
97173
  };
97174
+ export declare type JiraBacklogTownsquareProject = {
97175
+ __typename?: 'JiraBacklogTownsquareProject';
97176
+ hasPermission?: Maybe<Scalars['Boolean']['output']>;
97177
+ iconName?: Maybe<Scalars['String']['output']>;
97178
+ id?: Maybe<Scalars['String']['output']>;
97179
+ key?: Maybe<Scalars['String']['output']>;
97180
+ name?: Maybe<Scalars['String']['output']>;
97181
+ privateProject?: Maybe<Scalars['Boolean']['output']>;
97182
+ state?: Maybe<Scalars['String']['output']>;
97183
+ };
96938
97184
  export declare type JiraBacklogTrackingConfig = {
96939
97185
  __typename?: 'JiraBacklogTrackingConfig';
96940
97186
  currentTrackingStatistic?: Maybe<JiraBacklogStatisticsField>;
@@ -97279,6 +97525,14 @@ export declare type JiraBoardViewCellConnection = {
97279
97525
  errors?: Maybe<Array<QueryError>>;
97280
97526
  pageInfo?: Maybe<PageInfo>;
97281
97527
  };
97528
+ export declare type JiraBoardViewCellContainer = {
97529
+ cells?: Maybe<JiraBoardViewCellConnection>;
97530
+ };
97531
+ export declare type JiraBoardViewCellContainerCellsArgs = {
97532
+ after?: InputMaybe<Scalars['String']['input']>;
97533
+ first?: InputMaybe<Scalars['Int']['input']>;
97534
+ settings?: InputMaybe<JiraBoardViewSettings>;
97535
+ };
97282
97536
  export declare type JiraBoardViewCellEdge = {
97283
97537
  __typename?: 'JiraBoardViewCellEdge';
97284
97538
  cursor?: Maybe<Scalars['String']['output']>;
@@ -97306,7 +97560,7 @@ export declare type JiraBoardViewColumnEdge = {
97306
97560
  cursor?: Maybe<Scalars['String']['output']>;
97307
97561
  node?: Maybe<JiraBoardViewColumn>;
97308
97562
  };
97309
- export declare type JiraBoardViewColumnLayout = Node & {
97563
+ export declare type JiraBoardViewColumnLayout = JiraBoardViewCellContainer & Node & {
97310
97564
  __typename?: 'JiraBoardViewColumnLayout';
97311
97565
  cells?: Maybe<JiraBoardViewCellConnection>;
97312
97566
  id: Scalars['ID']['output'];
@@ -97323,7 +97577,7 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
97323
97577
  field?: Maybe<JiraField>;
97324
97578
  id: Scalars['ID']['output'];
97325
97579
  };
97326
- export declare type JiraBoardViewFieldSwimlane = JiraBoardViewSwimlane & Node & {
97580
+ export declare type JiraBoardViewFieldSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
97327
97581
  __typename?: 'JiraBoardViewFieldSwimlane';
97328
97582
  cells?: Maybe<JiraBoardViewCellConnection>;
97329
97583
  field?: Maybe<JiraField>;
@@ -118516,7 +118770,6 @@ export declare type JpdViewUpdatedEvent = {
118516
118770
  viewUuid: Scalars['ID']['output'];
118517
118771
  };
118518
118772
  export declare type JpdViewsServiceCreateGlobalViewInput = {
118519
- cloudId: Scalars['String']['input'];
118520
118773
  name: Scalars['String']['input'];
118521
118774
  visualizationType: JpdViewsServiceVisualizationType;
118522
118775
  };
@@ -118539,7 +118792,7 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
118539
118792
  __typename?: 'JpdViewsServiceGlobalView';
118540
118793
  id: Scalars['ID']['output'];
118541
118794
  name: Scalars['String']['output'];
118542
- rank: Scalars['Int']['output'];
118795
+ rank?: Maybe<Scalars['Int']['output']>;
118543
118796
  visualizationType: JpdViewsServiceVisualizationType;
118544
118797
  };
118545
118798
  export declare type JpdViewsServiceGlobalViewConnection = {
@@ -118550,7 +118803,7 @@ export declare type JpdViewsServiceGlobalViewConnection = {
118550
118803
  export declare type JpdViewsServiceGlobalViewEdge = {
118551
118804
  __typename?: 'JpdViewsServiceGlobalViewEdge';
118552
118805
  cursor?: Maybe<Scalars['String']['output']>;
118553
- node: JpdViewsServiceGlobalView;
118806
+ node?: Maybe<JpdViewsServiceGlobalView>;
118554
118807
  };
118555
118808
  export declare type JpdViewsServiceGlobalViewsByCriteriaInput = {
118556
118809
  containsText: Scalars['String']['input'];
@@ -118592,7 +118845,7 @@ export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
118592
118845
  };
118593
118846
  export declare type JpdViewsServiceViewBase = {
118594
118847
  name: Scalars['String']['output'];
118595
- rank: Scalars['Int']['output'];
118848
+ rank?: Maybe<Scalars['Int']['output']>;
118596
118849
  visualizationType: JpdViewsServiceVisualizationType;
118597
118850
  };
118598
118851
  export declare enum JpdViewsServiceViewSortMode {
@@ -120171,11 +120424,12 @@ export declare type KnowledgeBaseCategoryDetail = {
120171
120424
  id?: Maybe<Scalars['String']['output']>;
120172
120425
  name?: Maybe<Scalars['String']['output']>;
120173
120426
  };
120174
- export declare type KnowledgeBaseConfluenceServerLinkStatus = {
120175
- __typename?: 'KnowledgeBaseConfluenceServerLinkStatus';
120427
+ export declare type KnowledgeBaseConfluenceAppLinkDetails = {
120428
+ __typename?: 'KnowledgeBaseConfluenceAppLinkDetails';
120429
+ appLinkId?: Maybe<Scalars['String']['output']>;
120176
120430
  isConfluenceServerLinked: Scalars['Boolean']['output'];
120177
120431
  };
120178
- export declare type KnowledgeBaseConfluenceServerLinkStatusResponse = KnowledgeBaseConfluenceServerLinkStatus | QueryError;
120432
+ export declare type KnowledgeBaseConfluenceAppLinkDetailsResponse = KnowledgeBaseConfluenceAppLinkDetails | QueryError;
120179
120433
  export declare type KnowledgeBaseConfluenceSpaceSuggestions = KnowledgeBaseSourceSuggestionInterface & {
120180
120434
  __typename?: 'KnowledgeBaseConfluenceSpaceSuggestions';
120181
120435
  sourceARI?: Maybe<Scalars['ID']['output']>;
@@ -120220,6 +120474,7 @@ export declare type KnowledgeBaseLinkSourceResult = {
120220
120474
  mutationError?: Maybe<MutationError>;
120221
120475
  sourceARI?: Maybe<Scalars['ID']['output']>;
120222
120476
  sourceContainerARI?: Maybe<Scalars['ID']['output']>;
120477
+ sourceId?: Maybe<Scalars['String']['output']>;
120223
120478
  sourceVisibility?: Maybe<Scalars['String']['output']>;
120224
120479
  success?: Maybe<Scalars['Boolean']['output']>;
120225
120480
  };
@@ -120233,6 +120488,7 @@ export declare type KnowledgeBaseLinkedSource = {
120233
120488
  permissions?: Maybe<KnowledgeBaseSourcePermissionsResponse>;
120234
120489
  sourceARI?: Maybe<Scalars['ID']['output']>;
120235
120490
  sourceId?: Maybe<Scalars['ID']['output']>;
120491
+ sourceSettingsUrl?: Maybe<Scalars['String']['output']>;
120236
120492
  sourceType?: Maybe<Scalars['String']['output']>;
120237
120493
  sourceVisibility?: Maybe<Scalars['String']['output']>;
120238
120494
  url?: Maybe<Scalars['String']['output']>;
@@ -129895,6 +130151,7 @@ export declare type Mutation = {
129895
130151
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
129896
130152
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
129897
130153
  agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
130154
+ agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
129898
130155
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
129899
130156
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
129900
130157
  appRecommendations?: Maybe<AppRecMutation>;
@@ -130107,6 +130364,7 @@ export declare type Mutation = {
130107
130364
  confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
130108
130365
  confluence_updateContentAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
130109
130366
  confluence_updateContentAppearance?: Maybe<ConfluenceUpdateContentAppearancePayload>;
130367
+ confluence_updateContentApproval?: Maybe<ConfluenceContentApprovalPayload>;
130110
130368
  confluence_updateContentDirectRestrictions?: Maybe<ConfluenceUpdateContentDirectRestrictionsPayload>;
130111
130369
  confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
130112
130370
  confluence_updateCoverPicture?: Maybe<ConfluenceUpdateCoverPicturePayload>;
@@ -130118,6 +130376,7 @@ export declare type Mutation = {
130118
130376
  confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
130119
130377
  confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
130120
130378
  confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
130379
+ confluence_updateReviewerDecision?: Maybe<ConfluenceWorkflowReviewerDecisionPayload>;
130121
130380
  confluence_updateShareableLink?: Maybe<ConfluenceUpdateShareableLinksPayload>;
130122
130381
  confluence_updateSpaceAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
130123
130382
  confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
@@ -131093,6 +131352,9 @@ export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
131093
131352
  export declare type MutationAgentWorkspace_EndBreakArgs = {
131094
131353
  agentId: Scalars['ID']['input'];
131095
131354
  };
131355
+ export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
131356
+ input: AgentWorkspaceSetDefaultCapacityInput;
131357
+ };
131096
131358
  export declare type MutationAgentWorkspace_StartBreakArgs = {
131097
131359
  agentId: Scalars['ID']['input'];
131098
131360
  };
@@ -131527,6 +131789,7 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
131527
131789
  };
131528
131790
  export declare type MutationChangeManagement_RecordLastRovoRiskAssessmentArgs = {
131529
131791
  input: ChangeManagementUpdateLastRovoRiskAssessmentInput;
131792
+ keepUpdatedAt?: InputMaybe<Scalars['Boolean']['input']>;
131530
131793
  };
131531
131794
  export declare type MutationChangeManagement_UpdateGlobalRiskAssessmentSettingsArgs = {
131532
131795
  input: ChangeManagementUpdateGlobalRiskAssessmentSettingsInput;
@@ -131897,6 +132160,10 @@ export declare type MutationConfluence_UpdateContentAppearanceArgs = {
131897
132160
  cloudId: Scalars['ID']['input'];
131898
132161
  input: ConfluenceUpdateContentAppearanceInput;
131899
132162
  };
132163
+ export declare type MutationConfluence_UpdateContentApprovalArgs = {
132164
+ cloudId: Scalars['ID']['input'];
132165
+ updateContentApprovalGraphQLInput: ConfluenceUpdateContentApprovalRequestInput;
132166
+ };
131900
132167
  export declare type MutationConfluence_UpdateContentDirectRestrictionsArgs = {
131901
132168
  cloudId: Scalars['ID']['input'];
131902
132169
  input: ConfluenceUpdateContentDirectRestrictionsInput;
@@ -131943,6 +132210,10 @@ export declare type MutationConfluence_UpdateQuestionArgs = {
131943
132210
  cloudId: Scalars['ID']['input'];
131944
132211
  input: ConfluenceUpdateQuestionInput;
131945
132212
  };
132213
+ export declare type MutationConfluence_UpdateReviewerDecisionArgs = {
132214
+ cloudId: Scalars['ID']['input'];
132215
+ confluenceUpdateReviewerDecisionInput: ConfluenceUpdateReviewerDecisionInput;
132216
+ };
131946
132217
  export declare type MutationConfluence_UpdateShareableLinkArgs = {
131947
132218
  cloudId: Scalars['ID']['input'];
131948
132219
  input: ConfluenceUpdateShareableLinksInput;
@@ -133170,6 +133441,7 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
133170
133441
  input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
133171
133442
  };
133172
133443
  export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
133444
+ cloudId: Scalars['String']['input'];
133173
133445
  input: JpdViewsServiceCreateGlobalViewInput;
133174
133446
  };
133175
133447
  export declare type MutationJpdViewsService_DeleteGlobalViewArgs = {
@@ -137259,6 +137531,7 @@ export declare type Query = {
137259
137531
  agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
137260
137532
  agentStudio_evaluationResultList?: Maybe<AgentStudioEvaluationResultsResult>;
137261
137533
  agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
137534
+ agentStudio_getAgentByProductAri?: Maybe<AgentStudioProductAriAgentResult>;
137262
137535
  agentStudio_getAgentUsePermissionSettings?: Maybe<AgentStudioAgentUsePermissionSettings>;
137263
137536
  agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
137264
137537
  agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
@@ -137270,6 +137543,8 @@ export declare type Query = {
137270
137543
  agentStudio_jobExecutionHistoryList?: Maybe<AgentStudioJobExecutionHistory>;
137271
137544
  agentStudio_jobRun?: Maybe<AgentStudioBatchEvaluationJobRun>;
137272
137545
  agentStudio_jobRunList?: Maybe<AgentStudioBatchEvaluationJobRunResult>;
137546
+ agentStudio_liveConversationHistoryById?: Maybe<AgentStudioConversationHistoryResult>;
137547
+ agentStudio_liveConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
137273
137548
  agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
137274
137549
  agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
137275
137550
  agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
@@ -137280,6 +137555,8 @@ export declare type Query = {
137280
137555
  agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
137281
137556
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
137282
137557
  agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
137558
+ agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
137559
+ agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
137283
137560
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
137284
137561
  agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
137285
137562
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
@@ -137380,9 +137657,12 @@ export declare type Query = {
137380
137657
  atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
137381
137658
  atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
137382
137659
  availableContentStates?: Maybe<AvailableContentStates>;
137660
+ avpPermissions_getCapabilities?: Maybe<AvpPermissionsGetCapabilitiesResponse>;
137383
137661
  avpPermissions_getDashboardIdentityAccess?: Maybe<AvpPermissionsDashboardIdentityAccess>;
137662
+ avpPermissions_hasCapability?: Maybe<AvpPermissionsHasCapabilityResponse>;
137384
137663
  avpPermissions_hello?: Maybe<AvpPermissionsHelloResponse>;
137385
137664
  avp_getChart?: Maybe<AvpChart>;
137665
+ avp_getChartTemplatePreview?: Maybe<AvpChartTemplatePreview>;
137386
137666
  avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
137387
137667
  avp_getDashboard?: Maybe<AvpDashboard>;
137388
137668
  avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
@@ -137489,6 +137769,7 @@ export declare type Query = {
137489
137769
  confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
137490
137770
  confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
137491
137771
  confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
137772
+ confluence_contentApprovalStatuses?: Maybe<Array<Maybe<ConfluenceApprovalsWorkflowStatus>>>;
137492
137773
  confluence_contentPermissions?: Maybe<ConfluenceContentPermissions>;
137493
137774
  confluence_contentReactionsSummary?: Maybe<ConfluenceReactionSummary>;
137494
137775
  confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
@@ -137516,6 +137797,7 @@ export declare type Query = {
137516
137797
  confluence_getSmartContentFeatures?: Maybe<Array<Maybe<SmartPageFeatures>>>;
137517
137798
  confluence_getTotalPendingContentAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
137518
137799
  confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
137800
+ confluence_getWorkflowReviewByApplicationId?: Maybe<ConfluenceWorkflowReviewWithDecisionsPayload>;
137519
137801
  confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
137520
137802
  confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
137521
137803
  confluence_importsAll?: Maybe<Array<Maybe<ConfluenceImport>>>;
@@ -137915,7 +138197,7 @@ export declare type Query = {
137915
138197
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
137916
138198
  knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
137917
138199
  knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
137918
- knowledgeBase_confluenceServerLinkStatus?: Maybe<KnowledgeBaseConfluenceServerLinkStatusResponse>;
138200
+ knowledgeBase_confluenceAppLinkDetails?: Maybe<KnowledgeBaseConfluenceAppLinkDetailsResponse>;
137919
138201
  knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
137920
138202
  knowledgeBase_linkedSources?: Maybe<KnowledgeBaseLinkedSourcesResponse>;
137921
138203
  knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
@@ -138614,6 +138896,10 @@ export declare type QueryAgentStudio_GetAgentActorRolesArgs = {
138614
138896
  first?: InputMaybe<Scalars['Int']['input']>;
138615
138897
  id: Scalars['ID']['input'];
138616
138898
  };
138899
+ export declare type QueryAgentStudio_GetAgentByProductAriArgs = {
138900
+ cloudId: Scalars['String']['input'];
138901
+ productAri: Scalars['ID']['input'];
138902
+ };
138617
138903
  export declare type QueryAgentStudio_GetAgentUsePermissionSettingsArgs = {
138618
138904
  id: Scalars['ID']['input'];
138619
138905
  };
@@ -138674,6 +138960,22 @@ export declare type QueryAgentStudio_JobRunListArgs = {
138674
138960
  projectContainerAri: Scalars['ID']['input'];
138675
138961
  status?: InputMaybe<AgentStudioJobRunStatus>;
138676
138962
  };
138963
+ export declare type QueryAgentStudio_LiveConversationHistoryByIdArgs = {
138964
+ after?: InputMaybe<Scalars['String']['input']>;
138965
+ cloudId: Scalars['String']['input'];
138966
+ conversationId: Scalars['ID']['input'];
138967
+ experienceId: Scalars['String']['input'];
138968
+ first?: InputMaybe<Scalars['Int']['input']>;
138969
+ productType: AgentStudioProductType;
138970
+ };
138971
+ export declare type QueryAgentStudio_LiveConversationListByContainerIdArgs = {
138972
+ after?: InputMaybe<Scalars['String']['input']>;
138973
+ cloudId: Scalars['String']['input'];
138974
+ containerAri: Scalars['ID']['input'];
138975
+ experienceId: Scalars['String']['input'];
138976
+ first?: InputMaybe<Scalars['Int']['input']>;
138977
+ productType: AgentStudioProductType;
138978
+ };
138677
138979
  export declare type QueryAgentStudio_ScenarioByIdArgs = {
138678
138980
  containerId: Scalars['ID']['input'];
138679
138981
  id: Scalars['ID']['input'];
@@ -138724,6 +139026,13 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
138724
139026
  export declare type QueryAgentWorkspace_AvailabilityArgs = {
138725
139027
  input: AgentWorkspaceAvailabilityInput;
138726
139028
  };
139029
+ export declare type QueryAgentWorkspace_CapacityArgs = {
139030
+ input: AgentWorkspaceCapacityInput;
139031
+ };
139032
+ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
139033
+ cloudId: Scalars['ID']['input'];
139034
+ projectKey: Scalars['String']['input'];
139035
+ };
138727
139036
  export declare type QueryAgentWorkspace_ScheduleArgs = {
138728
139037
  cloudId: Scalars['ID']['input'];
138729
139038
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -139258,9 +139567,15 @@ export declare type QueryAtlassianStudio_UserSiteContextArgs = {
139258
139567
  export declare type QueryAvailableContentStatesArgs = {
139259
139568
  contentId: Scalars['ID']['input'];
139260
139569
  };
139570
+ export declare type QueryAvpPermissions_GetCapabilitiesArgs = {
139571
+ input: AvpPermissionsGetCapabilitiesInput;
139572
+ };
139261
139573
  export declare type QueryAvpPermissions_GetDashboardIdentityAccessArgs = {
139262
139574
  input: AvpPermissionsGetDashboardIdentityAccessInput;
139263
139575
  };
139576
+ export declare type QueryAvpPermissions_HasCapabilityArgs = {
139577
+ input: AvpPermissionsHasCapabilityInput;
139578
+ };
139264
139579
  export declare type QueryAvpPermissions_HelloArgs = {
139265
139580
  cloudId: Scalars['ID']['input'];
139266
139581
  integrationId: Scalars['String']['input'];
@@ -139268,6 +139583,11 @@ export declare type QueryAvpPermissions_HelloArgs = {
139268
139583
  export declare type QueryAvp_GetChartArgs = {
139269
139584
  chartAri: Scalars['ID']['input'];
139270
139585
  };
139586
+ export declare type QueryAvp_GetChartTemplatePreviewArgs = {
139587
+ cloudId: Scalars['ID']['input'];
139588
+ templateFileName: Scalars['String']['input'];
139589
+ workspaceId: Scalars['ID']['input'];
139590
+ };
139271
139591
  export declare type QueryAvp_GetChartTemplatesArgs = {
139272
139592
  cloudId: Scalars['ID']['input'];
139273
139593
  locations: Array<Scalars['String']['input']>;
@@ -139676,6 +139996,10 @@ export declare type QueryConfluence_ContentAnalyticsCountUserByContentTypeArgs =
139676
139996
  startTime: Scalars['String']['input'];
139677
139997
  subType?: InputMaybe<Scalars['String']['input']>;
139678
139998
  };
139999
+ export declare type QueryConfluence_ContentApprovalStatusesArgs = {
140000
+ cloudId: Scalars['ID']['input'];
140001
+ transitionType?: InputMaybe<ConfluenceApprovalTransitionType>;
140002
+ };
139679
140003
  export declare type QueryConfluence_ContentPermissionsArgs = {
139680
140004
  cloudId: Scalars['ID']['input'];
139681
140005
  contentId: Scalars['ID']['input'];
@@ -139808,6 +140132,10 @@ export declare type QueryConfluence_GetTotalPendingContentAccessRequestsCountArg
139808
140132
  export declare type QueryConfluence_GetWacTemplateArgs = {
139809
140133
  cloudId: Scalars['ID']['input'];
139810
140134
  };
140135
+ export declare type QueryConfluence_GetWorkflowReviewByApplicationIdArgs = {
140136
+ applicationId: Scalars['Long']['input'];
140137
+ cloudId: Scalars['ID']['input'];
140138
+ };
139811
140139
  export declare type QueryConfluence_HasClearPermissionForSpaceArgs = {
139812
140140
  cloudId: Scalars['ID']['input'];
139813
140141
  spaceKey: Scalars['String']['input'];
@@ -141507,7 +141835,7 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
141507
141835
  export declare type QueryKnowledgeBase_AgentSearchArgs = {
141508
141836
  searchInput?: InputMaybe<KnowledgeBaseAgentArticleSearchInput>;
141509
141837
  };
141510
- export declare type QueryKnowledgeBase_ConfluenceServerLinkStatusArgs = {
141838
+ export declare type QueryKnowledgeBase_ConfluenceAppLinkDetailsArgs = {
141511
141839
  cloudId: Scalars['ID']['input'];
141512
141840
  projectIdentifier: Scalars['String']['input'];
141513
141841
  };
@@ -145671,6 +145999,10 @@ export declare type SearchLayerDefinition = {
145671
145999
  shadowId?: InputMaybe<Scalars['String']['input']>;
145672
146000
  subEntity?: InputMaybe<Scalars['String']['input']>;
145673
146001
  };
146002
+ export declare enum SearchLinkedEntitiesType {
146003
+ Messages = "messages",
146004
+ Thread = "thread"
146005
+ }
145674
146006
  export declare enum SearchLinkedEntityGranularity {
145675
146007
  AllMatchingMessages = "ALL_MATCHING_MESSAGES",
145676
146008
  Default = "DEFAULT",
@@ -146034,9 +146366,16 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
146034
146366
  type: SearchResultType;
146035
146367
  url: Scalars['String']['output'];
146036
146368
  };
146369
+ export declare type SearchResultGraphAttachment = {
146370
+ __typename?: 'SearchResultGraphAttachment';
146371
+ fileType?: Maybe<Scalars['String']['output']>;
146372
+ title?: Maybe<Scalars['String']['output']>;
146373
+ url?: Maybe<Scalars['String']['output']>;
146374
+ };
146037
146375
  export declare type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult & {
146038
146376
  __typename?: 'SearchResultGraphDocument';
146039
146377
  allContributors?: Maybe<Array<ThirdPartyUser>>;
146378
+ attachments?: Maybe<Array<SearchResultGraphAttachment>>;
146040
146379
  bodyText?: Maybe<Scalars['String']['output']>;
146041
146380
  connectorType?: Maybe<Scalars['String']['output']>;
146042
146381
  containerName?: Maybe<Scalars['String']['output']>;
@@ -146050,7 +146389,9 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
146050
146389
  l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
146051
146390
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
146052
146391
  linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
146392
+ linkedEntitiesType?: Maybe<SearchLinkedEntitiesType>;
146053
146393
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
146394
+ links?: Maybe<Array<Scalars['String']['output']>>;
146054
146395
  navBoostScore?: Maybe<Scalars['Float']['output']>;
146055
146396
  owner?: Maybe<ThirdPartyUser>;
146056
146397
  permissionLevel?: Maybe<Scalars['String']['output']>;
@@ -146387,7 +146728,7 @@ export declare type SearchTalentFilter = {
146387
146728
  teams?: InputMaybe<Array<Scalars['String']['input']>>;
146388
146729
  };
146389
146730
  export declare type SearchTeamsFilters = {
146390
- attachmentFileType?: InputMaybe<Scalars['String']['input']>;
146731
+ attachmentFileTypes?: InputMaybe<Array<Scalars['String']['input']>>;
146391
146732
  hasAttachment?: InputMaybe<Scalars['Boolean']['input']>;
146392
146733
  hasLink?: InputMaybe<Scalars['Boolean']['input']>;
146393
146734
  };
@@ -166682,6 +167023,7 @@ export declare enum SpfAskActivityAttribute {
166682
167023
  Name = "NAME",
166683
167024
  Owner = "OWNER",
166684
167025
  Priority = "PRIORITY",
167026
+ ProposedDate = "PROPOSED_DATE",
166685
167027
  ReceivingTeam = "RECEIVING_TEAM",
166686
167028
  Status = "STATUS",
166687
167029
  Submitter = "SUBMITTER",
@@ -170910,6 +171252,22 @@ export declare type TownsquareCommentEdge = {
170910
171252
  cursor: Scalars['String']['output'];
170911
171253
  node?: Maybe<TownsquareComment>;
170912
171254
  };
171255
+ export declare type TownsquareCompletionGoalState = {
171256
+ __typename?: 'TownsquareCompletionGoalState';
171257
+ label?: Maybe<Scalars['String']['output']>;
171258
+ localizedLabel?: Maybe<TownsquareLocalizationField>;
171259
+ score?: Maybe<Scalars['Float']['output']>;
171260
+ value?: Maybe<TownsquareGoalStateValue>;
171261
+ };
171262
+ export declare type TownsquareCompletionGoalStateLabelArgs = {
171263
+ includeScore?: InputMaybe<Scalars['Boolean']['input']>;
171264
+ };
171265
+ export declare type TownsquareCompletionProjectState = {
171266
+ __typename?: 'TownsquareCompletionProjectState';
171267
+ label?: Maybe<Scalars['String']['output']>;
171268
+ localizedLabel?: Maybe<TownsquareLocalizationField>;
171269
+ value?: Maybe<TownsquareProjectStateValue>;
171270
+ };
170913
171271
  export declare type TownsquareContributor = {
170914
171272
  __typename?: 'TownsquareContributor';
170915
171273
  teamContributor?: Maybe<TownsquareTeamContributor>;
@@ -171551,7 +171909,9 @@ export declare enum TownsquareGoalSortEnum {
171551
171909
  }
171552
171910
  export declare type TownsquareGoalState = {
171553
171911
  __typename?: 'TownsquareGoalState';
171912
+ atCompletionState?: Maybe<TownsquareCompletionGoalState>;
171554
171913
  label?: Maybe<Scalars['String']['output']>;
171914
+ localizedLabel?: Maybe<TownsquareLocalizationField>;
171555
171915
  score?: Maybe<Scalars['Float']['output']>;
171556
171916
  value?: Maybe<TownsquareGoalStateValue>;
171557
171917
  };
@@ -172814,7 +173174,9 @@ export declare enum TownsquareProjectSortEnum {
172814
173174
  }
172815
173175
  export declare type TownsquareProjectState = {
172816
173176
  __typename?: 'TownsquareProjectState';
173177
+ atCompletionState?: Maybe<TownsquareCompletionProjectState>;
172817
173178
  label?: Maybe<Scalars['String']['output']>;
173179
+ localizedLabel?: Maybe<TownsquareLocalizationField>;
172818
173180
  value?: Maybe<TownsquareProjectStateValue>;
172819
173181
  };
172820
173182
  export declare enum TownsquareProjectStateValue {
@@ -173588,6 +173950,7 @@ export declare type TownsquareShareProjectUserInput = {
173588
173950
  };
173589
173951
  export declare type TownsquareStatus = {
173590
173952
  __typename?: 'TownsquareStatus';
173953
+ atCompletionState?: Maybe<TownsquareCompletionGoalState>;
173591
173954
  localizedLabel?: Maybe<TownsquareLocalizationField>;
173592
173955
  score?: Maybe<Scalars['Float']['output']>;
173593
173956
  value?: Maybe<Scalars['String']['output']>;
@@ -176019,6 +176382,7 @@ export declare type TrelloInboxNotificationsUpdated = {
176019
176382
  __typename?: 'TrelloInboxNotificationsUpdated';
176020
176383
  onQuickCaptureNotificationsCleared?: Maybe<Array<TrelloQuickCaptureNotificationCleared>>;
176021
176384
  quickCaptureCards?: Maybe<Array<TrelloInboxQuickCaptureCard>>;
176385
+ quickCaptureCardsCreated?: Maybe<Array<TrelloQuickCaptureNotification>>;
176022
176386
  };
176023
176387
  export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
176024
176388
  __typename?: 'TrelloInboxPrefs';