@forge/cli-shared 8.9.0-next.17 → 8.9.0-next.19

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.
@@ -7203,6 +7203,7 @@ export declare enum CcpBillingInterval {
7203
7203
  export declare type CcpBillingPeriodDetails = {
7204
7204
  __typename?: 'CcpBillingPeriodDetails';
7205
7205
  billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
7206
+ nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
7206
7207
  nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
7207
7208
  };
7208
7209
  export declare type CcpCancelEntitlementExperienceCapability = CommerceExperienceCapability & {
@@ -9445,6 +9446,7 @@ export declare type ChannelPlatformTranscriptEntry = {
9445
9446
  };
9446
9447
  export declare type ChannelPlatformTranscriptRequest = {
9447
9448
  contactId?: InputMaybe<Scalars['String']['input']>;
9449
+ isStaleTolerant?: InputMaybe<Scalars['Boolean']['input']>;
9448
9450
  issueId?: InputMaybe<Scalars['String']['input']>;
9449
9451
  role?: InputMaybe<ChannelPlatformRole>;
9450
9452
  startAfterChatMessageId?: InputMaybe<Scalars['String']['input']>;
@@ -10836,6 +10838,7 @@ export declare type CompassComponent = Node & {
10836
10838
  id: Scalars['ID']['output'];
10837
10839
  labels?: Maybe<Array<CompassComponentLabel>>;
10838
10840
  links?: Maybe<Array<CompassLink>>;
10841
+ logs?: Maybe<CompassComponentLogConnection>;
10839
10842
  metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
10840
10843
  name: Scalars['String']['output'];
10841
10844
  onCallSchedules?: Maybe<CompassComponentOnCallScheduleConnection>;
@@ -10867,6 +10870,10 @@ export declare type CompassComponentDeactivatedScorecardsArgs = {
10867
10870
  export declare type CompassComponentEventsArgs = {
10868
10871
  query?: InputMaybe<CompassEventsQuery>;
10869
10872
  };
10873
+ export declare type CompassComponentLogsArgs = {
10874
+ after?: InputMaybe<Scalars['String']['input']>;
10875
+ first?: InputMaybe<Scalars['Int']['input']>;
10876
+ };
10870
10877
  export declare type CompassComponentMetricSourcesArgs = {
10871
10878
  query?: InputMaybe<CompassComponentMetricSourcesQuery>;
10872
10879
  };
@@ -11111,6 +11118,23 @@ export declare type CompassComponentLabel = {
11111
11118
  name?: Maybe<Scalars['String']['output']>;
11112
11119
  };
11113
11120
  export declare type CompassComponentLabelsQueryResult = CompassSearchComponentLabelsConnection | QueryError;
11121
+ export declare type CompassComponentLog = {
11122
+ __typename?: 'CompassComponentLog';
11123
+ action: Scalars['String']['output'];
11124
+ actor: Scalars['ID']['output'];
11125
+ componentId: Scalars['ID']['output'];
11126
+ discoveryStrategy?: Maybe<Scalars['String']['output']>;
11127
+ fieldId?: Maybe<Scalars['String']['output']>;
11128
+ id: Scalars['ID']['output'];
11129
+ source?: Maybe<CompassAutoPopulationSource>;
11130
+ timestamp: Scalars['DateTime']['output'];
11131
+ value?: Maybe<Scalars['String']['output']>;
11132
+ };
11133
+ export declare type CompassComponentLogConnection = {
11134
+ __typename?: 'CompassComponentLogConnection';
11135
+ nodes?: Maybe<Array<CompassComponentLog>>;
11136
+ pageInfo: PageInfo;
11137
+ };
11114
11138
  export declare type CompassComponentMetricSourcesConnection = {
11115
11139
  __typename?: 'CompassComponentMetricSourcesConnection';
11116
11140
  edges?: Maybe<Array<CompassMetricSourceEdge>>;
@@ -15883,6 +15907,10 @@ export declare type ConfluenceContentBodyInput = {
15883
15907
  representation: ConfluenceContentRepresentation;
15884
15908
  value: Scalars['String']['input'];
15885
15909
  };
15910
+ export declare type ConfluenceContentGeneralAccess = {
15911
+ __typename?: 'ConfluenceContentGeneralAccess';
15912
+ mode?: Maybe<ConfluenceContentRestrictionState>;
15913
+ };
15886
15914
  export declare type ConfluenceContentInput = {
15887
15915
  contentBody?: InputMaybe<Scalars['String']['input']>;
15888
15916
  contentId: Scalars['ID']['input'];
@@ -15974,6 +16002,17 @@ export declare enum ConfluenceContentRepresentation {
15974
16002
  View = "VIEW",
15975
16003
  Wiki = "WIKI"
15976
16004
  }
16005
+ export declare enum ConfluenceContentRestrictionState {
16006
+ EditRestricted = "EDIT_RESTRICTED",
16007
+ Open = "OPEN",
16008
+ RestrictedByParent = "RESTRICTED_BY_PARENT",
16009
+ ViewRestricted = "VIEW_RESTRICTED"
16010
+ }
16011
+ export declare enum ConfluenceContentRestrictionStateInput {
16012
+ EditRestricted = "EDIT_RESTRICTED",
16013
+ Open = "OPEN",
16014
+ ViewRestricted = "VIEW_RESTRICTED"
16015
+ }
15977
16016
  export declare type ConfluenceContentRestrictionUpdated = {
15978
16017
  __typename?: 'ConfluenceContentRestrictionUpdated';
15979
16018
  contentId?: Maybe<Scalars['ID']['output']>;
@@ -18946,6 +18985,16 @@ export declare type ConfluenceSearchResponseEdge = {
18946
18985
  cursor?: Maybe<Scalars['String']['output']>;
18947
18986
  node?: Maybe<ConfluenceSearchResponse>;
18948
18987
  };
18988
+ export declare type ConfluenceSetContentGeneralAccessModeInput = {
18989
+ contentId: Scalars['ID']['input'];
18990
+ mode: ConfluenceContentRestrictionStateInput;
18991
+ };
18992
+ export declare type ConfluenceSetContentGeneralAccessModePayload = Payload & {
18993
+ __typename?: 'ConfluenceSetContentGeneralAccessModePayload';
18994
+ contentGeneralAccess?: Maybe<ConfluenceContentGeneralAccess>;
18995
+ errors?: Maybe<Array<MutationError>>;
18996
+ success: Scalars['Boolean']['output'];
18997
+ };
18949
18998
  export declare type ConfluenceSetSubCalendarReminderInput = {
18950
18999
  isReminder: Scalars['Boolean']['input'];
18951
19000
  subCalendarId: Scalars['ID']['input'];
@@ -19106,6 +19155,14 @@ export declare enum ConfluenceSpacePermissionAuditReportType {
19106
19155
  FullSitePermission = "FULL_SITE_PERMISSION",
19107
19156
  PermissionCombination = "PERMISSION_COMBINATION"
19108
19157
  }
19158
+ export declare type ConfluenceSpaceProperty = {
19159
+ __typename?: 'ConfluenceSpaceProperty';
19160
+ id?: Maybe<Scalars['ID']['output']>;
19161
+ key?: Maybe<Scalars['String']['output']>;
19162
+ space?: Maybe<Space>;
19163
+ value?: Maybe<Scalars['String']['output']>;
19164
+ version?: Maybe<Version>;
19165
+ };
19109
19166
  export declare type ConfluenceSpaceRecommendations = {
19110
19167
  __typename?: 'ConfluenceSpaceRecommendations';
19111
19168
  active?: Maybe<Array<Maybe<Space>>>;
@@ -22413,33 +22470,7 @@ export declare type ConvoAiAgentMessage = {
22413
22470
  contentSummary?: Maybe<Scalars['String']['output']>;
22414
22471
  timeCreated: Scalars['DateTime']['output'];
22415
22472
  };
22416
- export declare enum ConvoAiAgentMessageType {
22417
- ConversationChannelData = "CONVERSATION_CHANNEL_DATA",
22418
- EarlyStop = "EARLY_STOP",
22419
- Empty = "EMPTY",
22420
- Error = "ERROR",
22421
- FinalMessage = "FINAL_MESSAGE",
22422
- Trace = "TRACE"
22423
- }
22424
- export declare enum ConvoAiAgentSessionStatus {
22425
- Completed = "COMPLETED",
22426
- InputRequired = "INPUT_REQUIRED",
22427
- Unknown = "UNKNOWN",
22428
- Working = "WORKING"
22429
- }
22430
22473
  export declare type ConvoAiAgentSessionUpdate = ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
22431
- export declare type ConvoAiAsyncAgentUpdate = {
22432
- __typename?: 'ConvoAiAsyncAgentUpdate';
22433
- actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
22434
- agentMessageType: ConvoAiAgentMessageType;
22435
- authorId?: Maybe<Scalars['String']['output']>;
22436
- contentSummary?: Maybe<Scalars['String']['output']>;
22437
- messageId?: Maybe<Scalars['String']['output']>;
22438
- messageMetadata?: Maybe<Scalars['JSON']['output']>;
22439
- messageTemplate?: Maybe<Scalars['String']['output']>;
22440
- status: ConvoAiAgentSessionStatus;
22441
- timeCreated: Scalars['DateTime']['output'];
22442
- };
22443
22474
  export declare type ConvoAiConfluenceSpaceRecommendation = {
22444
22475
  __typename?: 'ConvoAiConfluenceSpaceRecommendation';
22445
22476
  id: Scalars['ID']['output'];
@@ -22864,6 +22895,13 @@ export declare type CplsMutationErrorExtension = MutationErrorExtension & {
22864
22895
  errorType?: Maybe<Scalars['String']['output']>;
22865
22896
  statusCode?: Maybe<Scalars['Int']['output']>;
22866
22897
  };
22898
+ export declare type CplsPeopleView = CplsCapacityPlanningPeopleView | QueryError;
22899
+ export declare type CplsQueryErrorExtension = QueryErrorExtension & {
22900
+ __typename?: 'CplsQueryErrorExtension';
22901
+ errorId?: Maybe<Scalars['String']['output']>;
22902
+ errorType?: Maybe<Scalars['String']['output']>;
22903
+ statusCode?: Maybe<Scalars['Int']['output']>;
22904
+ };
22867
22905
  export declare type CplsSearchCustomContributionTargetsInput = {
22868
22906
  after?: InputMaybe<Scalars['String']['input']>;
22869
22907
  before?: InputMaybe<Scalars['String']['input']>;
@@ -36975,6 +37013,8 @@ export declare type GraphStore = {
36975
37013
  userFavoritedFocusAreaBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
36976
37014
  userFavoritedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection>;
36977
37015
  userFavoritedFocusAreaInverseBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
37016
+ userFavoritedTownsquareGoal?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection>;
37017
+ userFavoritedTownsquareGoalInverse?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection>;
36978
37018
  userFavoritedTownsquareProject?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection>;
36979
37019
  userFavoritedTownsquareProjectInverse?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection>;
36980
37020
  userHasExternalPosition?: Maybe<GraphStoreSimplifiedUserHasExternalPositionConnection>;
@@ -41514,6 +41554,20 @@ export declare type GraphStoreUserFavoritedFocusAreaInverseBatchArgs = {
41514
41554
  ids: Array<Scalars['ID']['input']>;
41515
41555
  sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
41516
41556
  };
41557
+ export declare type GraphStoreUserFavoritedTownsquareGoalArgs = {
41558
+ after?: InputMaybe<Scalars['String']['input']>;
41559
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
41560
+ first?: InputMaybe<Scalars['Int']['input']>;
41561
+ id: Scalars['ID']['input'];
41562
+ sort?: InputMaybe<GraphStoreUserFavoritedTownsquareGoalSortInput>;
41563
+ };
41564
+ export declare type GraphStoreUserFavoritedTownsquareGoalInverseArgs = {
41565
+ after?: InputMaybe<Scalars['String']['input']>;
41566
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
41567
+ first?: InputMaybe<Scalars['Int']['input']>;
41568
+ id: Scalars['ID']['input'];
41569
+ sort?: InputMaybe<GraphStoreUserFavoritedTownsquareGoalSortInput>;
41570
+ };
41517
41571
  export declare type GraphStoreUserFavoritedTownsquareProjectArgs = {
41518
41572
  after?: InputMaybe<Scalars['String']['input']>;
41519
41573
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -44448,6 +44502,20 @@ export declare type GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagRelations
44448
44502
  to: Scalars['ID']['input'];
44449
44503
  updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
44450
44504
  };
44505
+ export declare type GraphStoreCreateUserFavoritedTownsquareGoalInput = {
44506
+ relationships: Array<GraphStoreCreateUserFavoritedTownsquareGoalRelationshipInput>;
44507
+ };
44508
+ export declare type GraphStoreCreateUserFavoritedTownsquareGoalPayload = Payload & {
44509
+ __typename?: 'GraphStoreCreateUserFavoritedTownsquareGoalPayload';
44510
+ errors?: Maybe<Array<MutationError>>;
44511
+ success: Scalars['Boolean']['output'];
44512
+ };
44513
+ export declare type GraphStoreCreateUserFavoritedTownsquareGoalRelationshipInput = {
44514
+ from: Scalars['ID']['input'];
44515
+ sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
44516
+ to: Scalars['ID']['input'];
44517
+ updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
44518
+ };
44451
44519
  export declare type GraphStoreCreateUserFavoritedTownsquareProjectInput = {
44452
44520
  relationships: Array<GraphStoreCreateUserFavoritedTownsquareProjectRelationshipInput>;
44453
44521
  };
@@ -45049,6 +45117,19 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
45049
45117
  from: Scalars['ID']['input'];
45050
45118
  to: Scalars['ID']['input'];
45051
45119
  };
45120
+ export declare type GraphStoreDeleteUserFavoritedTownsquareGoalInput = {
45121
+ relationships: Array<GraphStoreDeleteUserFavoritedTownsquareGoalRelationshipInput>;
45122
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
45123
+ };
45124
+ export declare type GraphStoreDeleteUserFavoritedTownsquareGoalPayload = Payload & {
45125
+ __typename?: 'GraphStoreDeleteUserFavoritedTownsquareGoalPayload';
45126
+ errors?: Maybe<Array<MutationError>>;
45127
+ success: Scalars['Boolean']['output'];
45128
+ };
45129
+ export declare type GraphStoreDeleteUserFavoritedTownsquareGoalRelationshipInput = {
45130
+ from: Scalars['ID']['input'];
45131
+ to: Scalars['ID']['input'];
45132
+ };
45052
45133
  export declare type GraphStoreDeleteUserFavoritedTownsquareProjectInput = {
45053
45134
  relationships: Array<GraphStoreDeleteUserFavoritedTownsquareProjectRelationshipInput>;
45054
45135
  synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
@@ -49038,6 +49119,7 @@ export declare type GraphStoreMutation = {
49038
49119
  createTeamConnectedToContainer?: Maybe<GraphStoreCreateTeamConnectedToContainerPayload>;
49039
49120
  createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
49040
49121
  createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
49122
+ createUserFavoritedTownsquareGoal?: Maybe<GraphStoreCreateUserFavoritedTownsquareGoalPayload>;
49041
49123
  createUserFavoritedTownsquareProject?: Maybe<GraphStoreCreateUserFavoritedTownsquareProjectPayload>;
49042
49124
  createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
49043
49125
  createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
@@ -49067,6 +49149,7 @@ export declare type GraphStoreMutation = {
49067
49149
  deleteTeamConnectedToContainer?: Maybe<GraphStoreDeleteTeamConnectedToContainerPayload>;
49068
49150
  deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
49069
49151
  deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
49152
+ deleteUserFavoritedTownsquareGoal?: Maybe<GraphStoreDeleteUserFavoritedTownsquareGoalPayload>;
49070
49153
  deleteUserFavoritedTownsquareProject?: Maybe<GraphStoreDeleteUserFavoritedTownsquareProjectPayload>;
49071
49154
  deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
49072
49155
  deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
@@ -49147,6 +49230,9 @@ export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
49147
49230
  export declare type GraphStoreMutationCreateTownsquareTagIsAliasOfTownsquareTagArgs = {
49148
49231
  input?: InputMaybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagInput>;
49149
49232
  };
49233
+ export declare type GraphStoreMutationCreateUserFavoritedTownsquareGoalArgs = {
49234
+ input?: InputMaybe<GraphStoreCreateUserFavoritedTownsquareGoalInput>;
49235
+ };
49150
49236
  export declare type GraphStoreMutationCreateUserFavoritedTownsquareProjectArgs = {
49151
49237
  input?: InputMaybe<GraphStoreCreateUserFavoritedTownsquareProjectInput>;
49152
49238
  };
@@ -49234,6 +49320,9 @@ export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
49234
49320
  export declare type GraphStoreMutationDeleteTownsquareTagIsAliasOfTownsquareTagArgs = {
49235
49321
  input?: InputMaybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput>;
49236
49322
  };
49323
+ export declare type GraphStoreMutationDeleteUserFavoritedTownsquareGoalArgs = {
49324
+ input?: InputMaybe<GraphStoreDeleteUserFavoritedTownsquareGoalInput>;
49325
+ };
49237
49326
  export declare type GraphStoreMutationDeleteUserFavoritedTownsquareProjectArgs = {
49238
49327
  input?: InputMaybe<GraphStoreDeleteUserFavoritedTownsquareProjectInput>;
49239
49328
  };
@@ -56578,6 +56667,38 @@ export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge = {
56578
56667
  };
56579
56668
  export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56580
56669
  export declare type GraphStoreSimplifiedUserFavoritedFocusAreaUnion = MercuryFocusArea;
56670
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection = HasPageInfo & HasTotal & {
56671
+ __typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection';
56672
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge>>>;
56673
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
56674
+ pageInfo: PageInfo;
56675
+ totalCount?: Maybe<Scalars['Int']['output']>;
56676
+ };
56677
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge = {
56678
+ __typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge';
56679
+ createdAt: Scalars['DateTime']['output'];
56680
+ cursor?: Maybe<Scalars['String']['output']>;
56681
+ id: Scalars['ID']['output'];
56682
+ lastUpdated: Scalars['DateTime']['output'];
56683
+ node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalUnion>;
56684
+ };
56685
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection = HasPageInfo & HasTotal & {
56686
+ __typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection';
56687
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge>>>;
56688
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
56689
+ pageInfo: PageInfo;
56690
+ totalCount?: Maybe<Scalars['Int']['output']>;
56691
+ };
56692
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge = {
56693
+ __typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge';
56694
+ createdAt: Scalars['DateTime']['output'];
56695
+ cursor?: Maybe<Scalars['String']['output']>;
56696
+ id: Scalars['ID']['output'];
56697
+ lastUpdated: Scalars['DateTime']['output'];
56698
+ node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseUnion>;
56699
+ };
56700
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56701
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalUnion = TownsquareGoal;
56581
56702
  export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection = HasPageInfo & HasTotal & {
56582
56703
  __typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection';
56583
56704
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge>>>;
@@ -59076,6 +59197,12 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
59076
59197
  export declare type GraphStoreUserFavoritedFocusAreaSortInput = {
59077
59198
  lastModified?: InputMaybe<GraphStoreSortInput>;
59078
59199
  };
59200
+ export declare type GraphStoreUserFavoritedTownsquareGoalSortInput = {
59201
+ createdAt?: InputMaybe<GraphStoreSortInput>;
59202
+ fromAti?: InputMaybe<GraphStoreSortInput>;
59203
+ lastModified?: InputMaybe<GraphStoreSortInput>;
59204
+ toAti?: InputMaybe<GraphStoreSortInput>;
59205
+ };
59079
59206
  export declare type GraphStoreUserFavoritedTownsquareProjectSortInput = {
59080
59207
  createdAt?: InputMaybe<GraphStoreSortInput>;
59081
59208
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -69831,6 +69958,7 @@ export declare type JiraGetIssueResourceInput = {
69831
69958
  first: Scalars['Int']['input'];
69832
69959
  orderDirection?: InputMaybe<JiraResourcesSortDirection>;
69833
69960
  orderField?: InputMaybe<JiraResourcesOrderField>;
69961
+ pagination?: InputMaybe<JiraResourcePaginationInput>;
69834
69962
  };
69835
69963
  export declare enum JiraGlobalIssueCreateView {
69836
69964
  FullModal = "FULL_MODAL",
@@ -71777,6 +71905,10 @@ export declare type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
71777
71905
  issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
71778
71906
  success: Scalars['Boolean']['output'];
71779
71907
  };
71908
+ export declare type JiraIssueNoEnrichmentStreamHubPayload = {
71909
+ __typename?: 'JiraIssueNoEnrichmentStreamHubPayload';
71910
+ resource?: Maybe<Scalars['ID']['output']>;
71911
+ };
71780
71912
  export declare type JiraIssuePickerInput = {
71781
71913
  currentIssueId: Scalars['ID']['input'];
71782
71914
  currentJQL?: InputMaybe<Scalars['String']['input']>;
@@ -73855,6 +73987,40 @@ export declare type JiraMentionableEdge = {
73855
73987
  cursor?: Maybe<Scalars['String']['output']>;
73856
73988
  node?: Maybe<JiraMentionable>;
73857
73989
  };
73990
+ export declare type JiraMergeIssueError = {
73991
+ __typename?: 'JiraMergeIssueError';
73992
+ message?: Maybe<Scalars['String']['output']>;
73993
+ step?: Maybe<Scalars['String']['output']>;
73994
+ };
73995
+ export declare type JiraMergeIssuesInput = {
73996
+ mergeAttachments: Scalars['Boolean']['input'];
73997
+ mergeComments: Scalars['Boolean']['input'];
73998
+ mergeDescriptionFrom: Scalars['ID']['input'];
73999
+ mergeFieldsFrom: Scalars['ID']['input'];
74000
+ mergeLinks: Scalars['Boolean']['input'];
74001
+ mergeSubtasks: Scalars['Boolean']['input'];
74002
+ sourceIds: Array<Scalars['ID']['input']>;
74003
+ targetId: Scalars['ID']['input'];
74004
+ };
74005
+ export declare type JiraMergeIssuesOperationProgress = {
74006
+ __typename?: 'JiraMergeIssuesOperationProgress';
74007
+ errors?: Maybe<Array<JiraMergeIssueError>>;
74008
+ id: Scalars['ID']['output'];
74009
+ status?: Maybe<JiraLongRunningTaskStatus>;
74010
+ submittedTime?: Maybe<Scalars['DateTime']['output']>;
74011
+ taskId?: Maybe<Scalars['ID']['output']>;
74012
+ };
74013
+ export declare type JiraMergeIssuesOperationProgressInput = {
74014
+ cloudId: Scalars['ID']['input'];
74015
+ taskId: Scalars['ID']['input'];
74016
+ };
74017
+ export declare type JiraMergeIssuesOperationProgressResult = JiraMergeIssuesOperationProgress | QueryError;
74018
+ export declare type JiraMergeIssuesPayload = Payload & {
74019
+ __typename?: 'JiraMergeIssuesPayload';
74020
+ errors?: Maybe<Array<MutationError>>;
74021
+ progress?: Maybe<JiraMergeIssuesOperationProgress>;
74022
+ success: Scalars['Boolean']['output'];
74023
+ };
73858
74024
  export declare type JiraMergeVersionInput = {
73859
74025
  id: Scalars['ID']['input'];
73860
74026
  targetVersionId: Scalars['ID']['input'];
@@ -75902,6 +76068,10 @@ export declare type JiraPageCursors = {
75902
76068
  last?: Maybe<JiraPageCursor>;
75903
76069
  previous?: Maybe<JiraPageCursor>;
75904
76070
  };
76071
+ export declare enum JiraPaginationStyle {
76072
+ Cursor = "CURSOR",
76073
+ Offset = "OFFSET"
76074
+ }
75905
76075
  export declare type JiraParentFieldInput = {
75906
76076
  issueId: Scalars['ID']['input'];
75907
76077
  };
@@ -79541,6 +79711,16 @@ export declare type JiraResourceNode = {
79541
79711
  __typename?: 'JiraResourceNode';
79542
79712
  node?: Maybe<JiraResource>;
79543
79713
  };
79714
+ export declare type JiraResourcePaginationInput = {
79715
+ currentPageNumber?: InputMaybe<Scalars['Int']['input']>;
79716
+ isLast?: InputMaybe<Scalars['Boolean']['input']>;
79717
+ pageCursor?: InputMaybe<Scalars['String']['input']>;
79718
+ pageNumber?: InputMaybe<Scalars['Int']['input']>;
79719
+ pageSize: Scalars['Int']['input'];
79720
+ style: JiraPaginationStyle;
79721
+ totalCount?: InputMaybe<Scalars['Long']['input']>;
79722
+ totalLinks?: InputMaybe<Scalars['Long']['input']>;
79723
+ };
79544
79724
  export declare enum JiraResourceParentName {
79545
79725
  Comment = "COMMENT",
79546
79726
  Customfield = "CUSTOMFIELD",
@@ -82335,6 +82515,10 @@ export declare type JiraSubscription = {
82335
82515
  onCalendarIssueCreated?: Maybe<JiraIssueWithScenario>;
82336
82516
  onCalendarIssueDeleted?: Maybe<JiraStreamHubResourceIdentifier>;
82337
82517
  onCalendarIssueUpdated?: Maybe<JiraIssueWithScenario>;
82518
+ onChildIssueAddedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
82519
+ onChildIssueCreatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
82520
+ onChildIssueRemovedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
82521
+ onChildIssueUpdatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
82338
82522
  onIssueCreatedByProject?: Maybe<JiraIssue>;
82339
82523
  onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
82340
82524
  onIssueCreatedByProjectsNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
@@ -82394,6 +82578,22 @@ export declare type JiraSubscriptionOnCalendarIssueUpdatedArgs = {
82394
82578
  scope?: InputMaybe<JiraViewScopeInput>;
82395
82579
  unscheduledIssuesInput?: InputMaybe<JiraCalendarIssuesInput>;
82396
82580
  };
82581
+ export declare type JiraSubscriptionOnChildIssueAddedNoEnrichmentArgs = {
82582
+ cloudId: Scalars['ID']['input'];
82583
+ parentIssueId: Scalars['String']['input'];
82584
+ };
82585
+ export declare type JiraSubscriptionOnChildIssueCreatedNoEnrichmentArgs = {
82586
+ cloudId: Scalars['ID']['input'];
82587
+ parentIssueId: Scalars['String']['input'];
82588
+ };
82589
+ export declare type JiraSubscriptionOnChildIssueRemovedNoEnrichmentArgs = {
82590
+ cloudId: Scalars['ID']['input'];
82591
+ parentIssueId: Scalars['String']['input'];
82592
+ };
82593
+ export declare type JiraSubscriptionOnChildIssueUpdatedNoEnrichmentArgs = {
82594
+ cloudId: Scalars['ID']['input'];
82595
+ parentIssueId: Scalars['String']['input'];
82596
+ };
82397
82597
  export declare type JiraSubscriptionOnIssueCreatedByProjectArgs = {
82398
82598
  cloudId: Scalars['ID']['input'];
82399
82599
  projectId: Scalars['String']['input'];
@@ -92096,6 +92296,17 @@ export declare type MercuryFocusAreaIcon = {
92096
92296
  __typename?: 'MercuryFocusAreaIcon';
92097
92297
  url: Scalars['String']['output'];
92098
92298
  };
92299
+ export declare type MercuryFocusAreaInsight = MercuryInsight & {
92300
+ __typename?: 'MercuryFocusAreaInsight';
92301
+ ari: Scalars['ID']['output'];
92302
+ id: Scalars['ID']['output'];
92303
+ insightData?: Maybe<MercuryFocusArea>;
92304
+ summary?: Maybe<Scalars['String']['output']>;
92305
+ title?: Maybe<Scalars['String']['output']>;
92306
+ };
92307
+ export declare type MercuryFocusAreaInsightsFilter = {
92308
+ insightType?: InputMaybe<MercuryInsightTypeEnum>;
92309
+ };
92099
92310
  export declare type MercuryFocusAreaLink = Node & {
92100
92311
  __typename?: 'MercuryFocusAreaLink';
92101
92312
  childFocusAreaId: Scalars['String']['output'];
@@ -92454,6 +92665,14 @@ export declare type MercuryGoalAggregatedStatusCount = {
92454
92665
  latestGoalStatusUpdateDate?: Maybe<Scalars['DateTime']['output']>;
92455
92666
  subGoalsAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
92456
92667
  };
92668
+ export declare type MercuryGoalInsight = MercuryInsight & {
92669
+ __typename?: 'MercuryGoalInsight';
92670
+ ari: Scalars['ID']['output'];
92671
+ id: Scalars['ID']['output'];
92672
+ insightData?: Maybe<TownsquareGoal>;
92673
+ summary?: Maybe<Scalars['String']['output']>;
92674
+ title?: Maybe<Scalars['String']['output']>;
92675
+ };
92457
92676
  export declare type MercuryGoalStatusCount = {
92458
92677
  __typename?: 'MercuryGoalStatusCount';
92459
92678
  atRisk?: Maybe<Scalars['Int']['output']>;
@@ -92475,6 +92694,25 @@ export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
92475
92694
  countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
92476
92695
  totalCount?: Maybe<Scalars['Int']['output']>;
92477
92696
  };
92697
+ export declare type MercuryInsight = {
92698
+ id: Scalars['ID']['output'];
92699
+ summary?: Maybe<Scalars['String']['output']>;
92700
+ title?: Maybe<Scalars['String']['output']>;
92701
+ };
92702
+ export declare type MercuryInsightObject = MercuryFocusAreaInsight | MercuryGoalInsight | MercuryJiraAlignProjectInsight | MercuryJiraIssueInsight | MercuryTownsquareProjectInsight;
92703
+ export declare enum MercuryInsightTypeEnum {
92704
+ FocusArea = "FOCUS_AREA",
92705
+ Goal = "GOAL",
92706
+ Work = "WORK"
92707
+ }
92708
+ export declare type MercuryInsightsQueryApi = {
92709
+ __typename?: 'MercuryInsightsQueryApi';
92710
+ focusAreaInsights?: Maybe<Array<MercuryInsightObject>>;
92711
+ };
92712
+ export declare type MercuryInsightsQueryApiFocusAreaInsightsArgs = {
92713
+ filter?: InputMaybe<MercuryFocusAreaInsightsFilter>;
92714
+ focusAreaId: Scalars['ID']['input'];
92715
+ };
92478
92716
  export declare type MercuryInvestmentCategory = Node & {
92479
92717
  __typename?: 'MercuryInvestmentCategory';
92480
92718
  createdBy?: Maybe<User>;
@@ -92515,6 +92753,14 @@ export declare type MercuryInvestmentCategorySetSort = {
92515
92753
  export declare enum MercuryInvestmentCategorySetSortField {
92516
92754
  Name = "NAME"
92517
92755
  }
92756
+ export declare type MercuryJiraAlignProjectInsight = MercuryInsight & {
92757
+ __typename?: 'MercuryJiraAlignProjectInsight';
92758
+ ari: Scalars['ID']['output'];
92759
+ id: Scalars['ID']['output'];
92760
+ insightData?: Maybe<JiraAlignAggProject>;
92761
+ summary?: Maybe<Scalars['String']['output']>;
92762
+ title?: Maybe<Scalars['String']['output']>;
92763
+ };
92518
92764
  export declare type MercuryJiraAlignProjectType = {
92519
92765
  __typename?: 'MercuryJiraAlignProjectType';
92520
92766
  displayName: Scalars['String']['output'];
@@ -92536,6 +92782,14 @@ export declare type MercuryJiraAlignProviderQueryApiIsJaConnectedArgs = {
92536
92782
  export declare type MercuryJiraAlignProviderQueryApiUserAccessibleJiraAlignProjectTypesArgs = {
92537
92783
  cloudId: Scalars['ID']['input'];
92538
92784
  };
92785
+ export declare type MercuryJiraIssueInsight = MercuryInsight & {
92786
+ __typename?: 'MercuryJiraIssueInsight';
92787
+ ari: Scalars['ID']['output'];
92788
+ id: Scalars['ID']['output'];
92789
+ insightData?: Maybe<JiraIssue>;
92790
+ summary?: Maybe<Scalars['String']['output']>;
92791
+ title?: Maybe<Scalars['String']['output']>;
92792
+ };
92539
92793
  export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
92540
92794
  focusAreaAri: Scalars['String']['input'];
92541
92795
  workAris: Array<Scalars['String']['input']>;
@@ -93953,6 +94207,14 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
93953
94207
  export declare type MercuryTextCustomFieldInput = {
93954
94208
  textValue?: InputMaybe<Scalars['String']['input']>;
93955
94209
  };
94210
+ export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
94211
+ __typename?: 'MercuryTownsquareProjectInsight';
94212
+ ari: Scalars['ID']['output'];
94213
+ id: Scalars['ID']['output'];
94214
+ insightData?: Maybe<TownsquareProject>;
94215
+ summary?: Maybe<Scalars['String']['output']>;
94216
+ title?: Maybe<Scalars['String']['output']>;
94217
+ };
93956
94218
  export declare type MercuryTransitionChangeProposalPayload = Payload & {
93957
94219
  __typename?: 'MercuryTransitionChangeProposalPayload';
93958
94220
  errors?: Maybe<Array<MutationError>>;
@@ -94756,6 +95018,7 @@ export declare type Mutation = {
94756
95018
  confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
94757
95019
  confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
94758
95020
  confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
95021
+ confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
94759
95022
  confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
94760
95023
  confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
94761
95024
  confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
@@ -95026,6 +95289,7 @@ export declare type Mutation = {
95026
95289
  jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
95027
95290
  jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
95028
95291
  jira_listSettingMigrationMutation?: Maybe<JiraListSettingMigrationPayload>;
95292
+ jira_mergeIssues?: Maybe<JiraMergeIssuesPayload>;
95029
95293
  jira_moveBoardViewIssueToCellEnd?: Maybe<JiraMoveBoardViewIssueToCellEndPayload>;
95030
95294
  jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
95031
95295
  jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
@@ -96058,6 +96322,10 @@ export declare type MutationConfluence_RestoreContentVersionArgs = {
96058
96322
  cloudId: Scalars['ID']['input'];
96059
96323
  input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
96060
96324
  };
96325
+ export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
96326
+ cloudId: Scalars['ID']['input'];
96327
+ input: ConfluenceSetContentGeneralAccessModeInput;
96328
+ };
96061
96329
  export declare type MutationConfluence_SetSubCalendarReminderArgs = {
96062
96330
  cloudId: Scalars['ID']['input'];
96063
96331
  input: ConfluenceSetSubCalendarReminderInput;
@@ -96967,6 +97235,9 @@ export declare type MutationJira_EditFieldSchemeArgs = {
96967
97235
  export declare type MutationJira_ListSettingMigrationMutationArgs = {
96968
97236
  input: JiraListSettingMigrationInput;
96969
97237
  };
97238
+ export declare type MutationJira_MergeIssuesArgs = {
97239
+ input: JiraMergeIssuesInput;
97240
+ };
96970
97241
  export declare type MutationJira_MoveBoardViewIssueToCellEndArgs = {
96971
97242
  input: JiraMoveBoardViewIssueToCellEndInput;
96972
97243
  };
@@ -101154,6 +101425,7 @@ export declare type Query = {
101154
101425
  confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
101155
101426
  confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
101156
101427
  confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
101428
+ confluence_nbmPerfReportList?: Maybe<ConfluenceNbmScanConnection>;
101157
101429
  confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
101158
101430
  confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
101159
101431
  confluence_nbmTransformationList?: Maybe<ConfluenceNbmTransformationListConnection>;
@@ -101177,6 +101449,7 @@ export declare type Query = {
101177
101449
  confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
101178
101450
  confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
101179
101451
  confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
101452
+ confluence_spaceProperty?: Maybe<ConfluenceSpaceProperty>;
101180
101453
  confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
101181
101454
  confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
101182
101455
  confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
@@ -101239,6 +101512,7 @@ export declare type Query = {
101239
101512
  cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
101240
101513
  cpls_customContributionTargets: CplsCustomContributionTargetConnection;
101241
101514
  cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
101515
+ cpls_peopleView?: Maybe<CplsPeopleView>;
101242
101516
  cqlMetaData?: Maybe<Confluence_CqlMetaData>;
101243
101517
  crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
101244
101518
  crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
@@ -101463,6 +101737,7 @@ export declare type Query = {
101463
101737
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
101464
101738
  jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
101465
101739
  jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
101740
+ jira_mergeIssuesOperationProgress?: Maybe<JiraMergeIssuesOperationProgressResult>;
101466
101741
  jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
101467
101742
  jira_onboardingConfigByTarget?: Maybe<JiraOnboardingConfig>;
101468
101743
  jira_onboardingConfigs?: Maybe<JiraOnboardingConfigConnection>;
@@ -101532,6 +101807,7 @@ export declare type Query = {
101532
101807
  mediaConfiguration?: Maybe<MediaConfiguration>;
101533
101808
  mercury?: Maybe<MercuryQueryApi>;
101534
101809
  mercury_funds?: Maybe<MercuryFundsQueryApi>;
101810
+ mercury_insights?: Maybe<MercuryInsightsQueryApi>;
101535
101811
  mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
101536
101812
  mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
101537
101813
  mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
@@ -102902,6 +103178,12 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
102902
103178
  export declare type QueryConfluence_MediaTokenDataArgs = {
102903
103179
  noteId: Scalars['ID']['input'];
102904
103180
  };
103181
+ export declare type QueryConfluence_NbmPerfReportListArgs = {
103182
+ after?: InputMaybe<Scalars['String']['input']>;
103183
+ cloudId: Scalars['ID']['input'];
103184
+ first?: InputMaybe<Scalars['Int']['input']>;
103185
+ status?: InputMaybe<ConfluenceNbmScanStatus>;
103186
+ };
102905
103187
  export declare type QueryConfluence_NbmScanListArgs = {
102906
103188
  after?: InputMaybe<Scalars['String']['input']>;
102907
103189
  cloudId: Scalars['ID']['input'];
@@ -103027,6 +103309,11 @@ export declare type QueryConfluence_SpaceMediaSessionArgs = {
103027
103309
  contentType: Scalars['String']['input'];
103028
103310
  spaceKey: Scalars['String']['input'];
103029
103311
  };
103312
+ export declare type QueryConfluence_SpacePropertyArgs = {
103313
+ cloudId: Scalars['ID']['input'];
103314
+ key: Scalars['String']['input'];
103315
+ spaceId: Scalars['ID']['input'];
103316
+ };
103030
103317
  export declare type QueryConfluence_SpaceRecommendationsArgs = {
103031
103318
  cloudId: Scalars['ID']['input'];
103032
103319
  eventTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -103385,6 +103672,9 @@ export declare type QueryCpls_CustomContributionTargetsArgs = {
103385
103672
  export declare type QueryCpls_CustomContributionTargetsByIdsArgs = {
103386
103673
  ids: Array<Scalars['ID']['input']>;
103387
103674
  };
103675
+ export declare type QueryCpls_PeopleViewArgs = {
103676
+ id: Scalars['ID']['input'];
103677
+ };
103388
103678
  export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
103389
103679
  after?: InputMaybe<Scalars['String']['input']>;
103390
103680
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -104226,6 +104516,9 @@ export declare type QueryJira_IssuesByIdsArgs = {
104226
104516
  export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
104227
104517
  cloudId: Scalars['ID']['input'];
104228
104518
  };
104519
+ export declare type QueryJira_MergeIssuesOperationProgressArgs = {
104520
+ input: JiraMergeIssuesOperationProgressInput;
104521
+ };
104229
104522
  export declare type QueryJira_OnboardingConfigByIdArgs = {
104230
104523
  cloudId: Scalars['ID']['input'];
104231
104524
  id: Scalars['ID']['input'];
@@ -108112,6 +108405,7 @@ export declare type SearchFilterInput = {
108112
108405
  jiraFilters?: InputMaybe<SearchJiraFilter>;
108113
108406
  locations: Array<Scalars['String']['input']>;
108114
108407
  mercuryFilters?: InputMaybe<SearchMercuryFilter>;
108408
+ talentFilters?: InputMaybe<SearchTalentFilter>;
108115
108409
  thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
108116
108410
  trelloFilters?: InputMaybe<SearchTrelloFilter>;
108117
108411
  };
@@ -130750,7 +131044,6 @@ export declare type Subscription = {
130750
131044
  bitbucket?: Maybe<BitbucketSubscription>;
130751
131045
  confluence_onContentModified?: Maybe<ConfluenceContentModified>;
130752
131046
  convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
130753
- convoai_onAsyncAgentUpdate?: Maybe<ConvoAiAsyncAgentUpdate>;
130754
131047
  devOps?: Maybe<AriGraphSubscriptions>;
130755
131048
  devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
130756
131049
  devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
@@ -130781,10 +131074,6 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
130781
131074
  cloudId: Scalars['ID']['input'];
130782
131075
  conversationId: Scalars['ID']['input'];
130783
131076
  };
130784
- export declare type SubscriptionConvoai_OnAsyncAgentUpdateArgs = {
130785
- cloudId: Scalars['ID']['input'];
130786
- conversationId: Scalars['ID']['input'];
130787
- };
130788
131077
  export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
130789
131078
  cloudId: Scalars['ID']['input'];
130790
131079
  jobId: Scalars['ID']['input'];
@@ -136778,6 +137067,7 @@ export declare type TrelloMutationApi = {
136778
137067
  updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
136779
137068
  updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
136780
137069
  updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
137070
+ updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
136781
137071
  updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
136782
137072
  updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
136783
137073
  updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
@@ -136935,6 +137225,9 @@ export declare type TrelloMutationApiUpdateCardNameArgs = {
136935
137225
  export declare type TrelloMutationApiUpdateCardPositionOnPlannerCalendarEventArgs = {
136936
137226
  input: TrelloUpdateCardPositionOnPlannerCalendarEventInput;
136937
137227
  };
137228
+ export declare type TrelloMutationApiUpdateCardRoleArgs = {
137229
+ input: TrelloUpdateCardRoleInput;
137230
+ };
136938
137231
  export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
136939
137232
  input: TrelloUpdateInboxBackgroundInput;
136940
137233
  };
@@ -138150,6 +138443,16 @@ export declare type TrelloUpdateCardRecurrenceRuleActionDisplayEntities = {
138150
138443
  card?: Maybe<TrelloActionCardEntity>;
138151
138444
  memberCreator?: Maybe<TrelloActionMemberEntity>;
138152
138445
  };
138446
+ export declare type TrelloUpdateCardRoleInput = {
138447
+ cardId: Scalars['ID']['input'];
138448
+ cardRole?: InputMaybe<TrelloCardRole>;
138449
+ };
138450
+ export declare type TrelloUpdateCardRolePayload = Payload & {
138451
+ __typename?: 'TrelloUpdateCardRolePayload';
138452
+ card?: Maybe<TrelloCard>;
138453
+ errors?: Maybe<Array<MutationError>>;
138454
+ success: Scalars['Boolean']['output'];
138455
+ };
138153
138456
  export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
138154
138457
  __typename?: 'TrelloUpdateCheckItemStateOnCardAction';
138155
138458
  appCreator?: Maybe<TrelloAppCreator>;