@forge/cli-shared 8.16.0-next.4 → 8.16.0-next.5

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.
@@ -208,9 +208,14 @@ export declare type AvpAnalyticsDataSource = {
208
208
  hasSubDataSources: Scalars['Boolean']['output'];
209
209
  id: Scalars['ID']['output'];
210
210
  metadata?: Maybe<AvpAnalyticsDataSourceMetadata>;
211
+ models?: Maybe<AvpAnalyticsDataSourceModelsConnection>;
211
212
  name: Scalars['String']['output'];
212
213
  subDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
213
214
  };
215
+ export declare type AvpAnalyticsDataSourceModelsArgs = {
216
+ paginationInput?: InputMaybe<AvpAnalyticsPaginationInput>;
217
+ searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
218
+ };
214
219
  export declare type AvpAnalyticsDataSourceSubDataSourcesArgs = {
215
220
  searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
216
221
  };
@@ -218,6 +223,22 @@ export declare type AvpAnalyticsDataSourceMetadata = {
218
223
  __typename?: 'AVPAnalyticsDataSourceMetadata';
219
224
  icon: Scalars['String']['output'];
220
225
  };
226
+ export declare type AvpAnalyticsDataSourceModel = {
227
+ __typename?: 'AVPAnalyticsDataSourceModel';
228
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
229
+ id: Scalars['ID']['output'];
230
+ name: Scalars['String']['output'];
231
+ };
232
+ export declare type AvpAnalyticsDataSourceModelEdge = {
233
+ __typename?: 'AVPAnalyticsDataSourceModelEdge';
234
+ cursor?: Maybe<Scalars['String']['output']>;
235
+ node: AvpAnalyticsDataSourceModel;
236
+ };
237
+ export declare type AvpAnalyticsDataSourceModelsConnection = {
238
+ __typename?: 'AVPAnalyticsDataSourceModelsConnection';
239
+ edges?: Maybe<Array<AvpAnalyticsDataSourceModelEdge>>;
240
+ pageInfo: PageInfo;
241
+ };
221
242
  export declare type AvpAnalyticsFilter = {
222
243
  type: AvpAnalyticsFilterType;
223
244
  values: Array<Scalars['String']['input']>;
@@ -266,6 +287,11 @@ export declare type AvpAnalyticsFormulaColumnInput = {
266
287
  name: Scalars['String']['input'];
267
288
  type: AvpAnalyticsColumnType;
268
289
  };
290
+ export declare type AvpAnalyticsGetDataSourceInput = {
291
+ cloudId: Scalars['ID']['input'];
292
+ dataSourceId: Scalars['ID']['input'];
293
+ workspaceId: Scalars['ID']['input'];
294
+ };
269
295
  export declare type AvpAnalyticsGetDataSourcesInput = {
270
296
  cloudId: Scalars['ID']['input'];
271
297
  searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
@@ -4836,19 +4862,15 @@ export declare type AgentWorkspaceAgentAvailability = {
4836
4862
  teamNames: Array<Scalars['String']['output']>;
4837
4863
  teams?: Maybe<Array<TeamV2>>;
4838
4864
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
4865
+ updatedBy?: Maybe<Scalars['ID']['output']>;
4839
4866
  };
4840
4867
  export declare type AgentWorkspaceAgentCapacity = {
4841
4868
  __typename?: 'AgentWorkspaceAgentCapacity';
4842
- agentId: Scalars['ID']['output'];
4843
- agentName: Scalars['String']['output'];
4869
+ agent: AgentWorkspaceAgent;
4844
4870
  availableSlots: Scalars['Int']['output'];
4845
4871
  currentLoad: Scalars['Int']['output'];
4846
4872
  maxCapacity: Scalars['Int']['output'];
4847
4873
  status: AgentWorkspaceCapacityStatus;
4848
- teamARIs: Array<Scalars['ID']['output']>;
4849
- teamIds: Array<Scalars['ID']['output']>;
4850
- teamNames: Array<Scalars['String']['output']>;
4851
- teams?: Maybe<Array<TeamV2>>;
4852
4874
  updatedAt: Scalars['DateTime']['output'];
4853
4875
  utilizationPercent: Scalars['Float']['output'];
4854
4876
  };
@@ -4880,6 +4902,8 @@ export declare type AgentWorkspaceAgentsPageInfo = {
4880
4902
  export declare type AgentWorkspaceAssignSkillInput = {
4881
4903
  cloudId: Scalars['ID']['input'];
4882
4904
  proficiencyLevel: Scalars['Int']['input'];
4905
+ projectId?: InputMaybe<Scalars['ID']['input']>;
4906
+ projectKey?: InputMaybe<Scalars['String']['input']>;
4883
4907
  skillId: Scalars['ID']['input'];
4884
4908
  userId: Scalars['ID']['input'];
4885
4909
  };
@@ -4887,15 +4911,20 @@ export declare type AgentWorkspaceAssignSkillPayload = {
4887
4911
  __typename?: 'AgentWorkspaceAssignSkillPayload';
4888
4912
  error?: Maybe<Scalars['String']['output']>;
4889
4913
  success: Scalars['Boolean']['output'];
4890
- user?: Maybe<AgentWorkspaceAgent>;
4891
4914
  userSkill?: Maybe<AgentWorkspaceUserSkill>;
4892
4915
  };
4893
4916
  export declare type AgentWorkspaceAvailabilityConnection = {
4894
4917
  __typename?: 'AgentWorkspaceAvailabilityConnection';
4918
+ edges: Array<AgentWorkspaceAvailabilityEdge>;
4895
4919
  nodes: Array<AgentWorkspaceAgentAvailability>;
4896
4920
  pageInfo: AgentWorkspaceAvailabilityPageInfo;
4897
4921
  summary: AgentWorkspaceAvailabilitySummary;
4898
4922
  };
4923
+ export declare type AgentWorkspaceAvailabilityEdge = {
4924
+ __typename?: 'AgentWorkspaceAvailabilityEdge';
4925
+ cursor: Scalars['String']['output'];
4926
+ node: AgentWorkspaceAgentAvailability;
4927
+ };
4899
4928
  export declare type AgentWorkspaceAvailabilityError = {
4900
4929
  __typename?: 'AgentWorkspaceAvailabilityError';
4901
4930
  code: Scalars['String']['output'];
@@ -4915,9 +4944,11 @@ export declare type AgentWorkspaceAvailabilityInput = {
4915
4944
  export declare type AgentWorkspaceAvailabilityPageInfo = {
4916
4945
  __typename?: 'AgentWorkspaceAvailabilityPageInfo';
4917
4946
  currentPage: Scalars['Int']['output'];
4947
+ endCursor?: Maybe<Scalars['String']['output']>;
4918
4948
  hasNextPage: Scalars['Boolean']['output'];
4919
4949
  hasPreviousPage: Scalars['Boolean']['output'];
4920
4950
  pageSize: Scalars['Int']['output'];
4951
+ startCursor?: Maybe<Scalars['String']['output']>;
4921
4952
  totalCount: Scalars['Int']['output'];
4922
4953
  totalPages: Scalars['Int']['output'];
4923
4954
  };
@@ -5015,6 +5046,12 @@ export declare type AgentWorkspaceCatalogCreateResponse = {
5015
5046
  error?: Maybe<Scalars['String']['output']>;
5016
5047
  success: Scalars['Boolean']['output'];
5017
5048
  };
5049
+ export declare type AgentWorkspaceCatalogDeleteInput = {
5050
+ cloudId: Scalars['ID']['input'];
5051
+ id: Scalars['ID']['input'];
5052
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5053
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5054
+ };
5018
5055
  export declare type AgentWorkspaceCatalogDeleteResponse = {
5019
5056
  __typename?: 'AgentWorkspaceCatalogDeleteResponse';
5020
5057
  deletedCatalogId?: Maybe<Scalars['ID']['output']>;
@@ -5031,6 +5068,13 @@ export declare type AgentWorkspaceCatalogFilterInput = {
5031
5068
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
5032
5069
  nameContains?: InputMaybe<Scalars['String']['input']>;
5033
5070
  };
5071
+ export declare type AgentWorkspaceCatalogInput = {
5072
+ cloudId: Scalars['ID']['input'];
5073
+ id: Scalars['ID']['input'];
5074
+ maxDepth?: InputMaybe<Scalars['Int']['input']>;
5075
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5076
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5077
+ };
5034
5078
  export declare type AgentWorkspaceCatalogType = {
5035
5079
  __typename?: 'AgentWorkspaceCatalogType';
5036
5080
  catalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
@@ -5060,6 +5104,12 @@ export declare type AgentWorkspaceCatalogTypeCreateResponse = {
5060
5104
  error?: Maybe<Scalars['String']['output']>;
5061
5105
  success: Scalars['Boolean']['output'];
5062
5106
  };
5107
+ export declare type AgentWorkspaceCatalogTypeDeleteInput = {
5108
+ cloudId: Scalars['ID']['input'];
5109
+ id: Scalars['ID']['input'];
5110
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5111
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5112
+ };
5063
5113
  export declare type AgentWorkspaceCatalogTypeDeleteResponse = {
5064
5114
  __typename?: 'AgentWorkspaceCatalogTypeDeleteResponse';
5065
5115
  deletedCatalogTypeId?: Maybe<Scalars['ID']['output']>;
@@ -5075,18 +5125,38 @@ export declare type AgentWorkspaceCatalogTypeFilterInput = {
5075
5125
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
5076
5126
  nameContains?: InputMaybe<Scalars['String']['input']>;
5077
5127
  };
5128
+ export declare type AgentWorkspaceCatalogTypeInput = {
5129
+ cloudId: Scalars['ID']['input'];
5130
+ id: Scalars['ID']['input'];
5131
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5132
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5133
+ };
5078
5134
  export declare type AgentWorkspaceCatalogTypeUpdateResponse = {
5079
5135
  __typename?: 'AgentWorkspaceCatalogTypeUpdateResponse';
5080
5136
  catalogType?: Maybe<AgentWorkspaceCatalogType>;
5081
5137
  error?: Maybe<Scalars['String']['output']>;
5082
5138
  success: Scalars['Boolean']['output'];
5083
5139
  };
5140
+ export declare type AgentWorkspaceCatalogTypesInput = {
5141
+ cloudId: Scalars['ID']['input'];
5142
+ filter?: InputMaybe<AgentWorkspaceCatalogTypeFilterInput>;
5143
+ pagination?: InputMaybe<AgentWorkspacePaginationInput>;
5144
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5145
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5146
+ };
5084
5147
  export declare type AgentWorkspaceCatalogUpdateResponse = {
5085
5148
  __typename?: 'AgentWorkspaceCatalogUpdateResponse';
5086
5149
  catalog?: Maybe<AgentWorkspaceCatalog>;
5087
5150
  error?: Maybe<Scalars['String']['output']>;
5088
5151
  success: Scalars['Boolean']['output'];
5089
5152
  };
5153
+ export declare type AgentWorkspaceCatalogsInput = {
5154
+ cloudId: Scalars['ID']['input'];
5155
+ filter?: InputMaybe<AgentWorkspaceCatalogFilterInput>;
5156
+ pagination?: InputMaybe<AgentWorkspacePaginationInput>;
5157
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5158
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5159
+ };
5090
5160
  export declare type AgentWorkspaceCreateCatalogInput = {
5091
5161
  catalogTypeId: Scalars['ID']['input'];
5092
5162
  cloudId: Scalars['ID']['input'];
@@ -5094,12 +5164,16 @@ export declare type AgentWorkspaceCreateCatalogInput = {
5094
5164
  name: Scalars['String']['input'];
5095
5165
  parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5096
5166
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5167
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5168
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5097
5169
  };
5098
5170
  export declare type AgentWorkspaceCreateCatalogTypeInput = {
5099
5171
  cloudId: Scalars['ID']['input'];
5100
5172
  description?: InputMaybe<Scalars['String']['input']>;
5101
5173
  name: Scalars['String']['input'];
5102
5174
  parentTypeId?: InputMaybe<Scalars['ID']['input']>;
5175
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5176
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5103
5177
  };
5104
5178
  export declare type AgentWorkspaceCreateScheduleInput = {
5105
5179
  agentIds: Array<Scalars['ID']['input']>;
@@ -5151,6 +5225,8 @@ export declare type AgentWorkspaceDeleteSchedulePayload = {
5151
5225
  };
5152
5226
  export declare type AgentWorkspaceDeleteUserSkillInput = {
5153
5227
  cloudId: Scalars['ID']['input'];
5228
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5229
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5154
5230
  skillId: Scalars['ID']['input'];
5155
5231
  userId: Scalars['ID']['input'];
5156
5232
  };
@@ -5159,7 +5235,6 @@ export declare type AgentWorkspaceDeleteUserSkillPayload = {
5159
5235
  deletedUserSkillId?: Maybe<Scalars['ID']['output']>;
5160
5236
  error?: Maybe<Scalars['String']['output']>;
5161
5237
  success: Scalars['Boolean']['output'];
5162
- user?: Maybe<AgentWorkspaceAgent>;
5163
5238
  };
5164
5239
  export declare type AgentWorkspacePageInfo = {
5165
5240
  __typename?: 'AgentWorkspacePageInfo';
@@ -5303,7 +5378,6 @@ export declare type AgentWorkspaceSkill = {
5303
5378
  name: Scalars['String']['output'];
5304
5379
  parentCatalogs: Array<AgentWorkspaceCatalog>;
5305
5380
  proficiencyDefinitions: Array<Scalars['String']['output']>;
5306
- userSkillIds: Array<Scalars['ID']['output']>;
5307
5381
  userSkills?: Maybe<Array<AgentWorkspaceUserSkill>>;
5308
5382
  };
5309
5383
  export declare type AgentWorkspaceSkillUserSkillsArgs = {
@@ -5321,6 +5395,8 @@ export declare type AgentWorkspaceSkillCreateInput = {
5321
5395
  name: Scalars['String']['input'];
5322
5396
  parentCatalogIds: Array<Scalars['ID']['input']>;
5323
5397
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5398
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5399
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5324
5400
  };
5325
5401
  export declare type AgentWorkspaceSkillCreatePayload = {
5326
5402
  __typename?: 'AgentWorkspaceSkillCreatePayload';
@@ -5328,6 +5404,12 @@ export declare type AgentWorkspaceSkillCreatePayload = {
5328
5404
  skill?: Maybe<AgentWorkspaceSkill>;
5329
5405
  success: Scalars['Boolean']['output'];
5330
5406
  };
5407
+ export declare type AgentWorkspaceSkillDeleteInput = {
5408
+ cloudId: Scalars['ID']['input'];
5409
+ id: Scalars['ID']['input'];
5410
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5411
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5412
+ };
5331
5413
  export declare type AgentWorkspaceSkillDeletePayload = {
5332
5414
  __typename?: 'AgentWorkspaceSkillDeletePayload';
5333
5415
  deletedSkillId?: Maybe<Scalars['ID']['output']>;
@@ -5344,15 +5426,31 @@ export declare type AgentWorkspaceSkillFilterInput = {
5344
5426
  nameContains?: InputMaybe<Scalars['String']['input']>;
5345
5427
  parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5346
5428
  };
5429
+ export declare type AgentWorkspaceSkillGapsInput = {
5430
+ cloudId: Scalars['ID']['input'];
5431
+ pagination?: InputMaybe<AgentWorkspacePaginationInput>;
5432
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5433
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5434
+ };
5435
+ export declare type AgentWorkspaceSkillInput = {
5436
+ cloudId: Scalars['ID']['input'];
5437
+ id: Scalars['ID']['input'];
5438
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5439
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5440
+ };
5347
5441
  export declare enum AgentWorkspaceSkillMatchType {
5348
5442
  All = "ALL",
5349
5443
  Any = "ANY"
5350
5444
  }
5351
5445
  export declare type AgentWorkspaceSkillUpdateInput = {
5446
+ cloudId: Scalars['ID']['input'];
5352
5447
  description?: InputMaybe<Scalars['String']['input']>;
5448
+ id: Scalars['ID']['input'];
5353
5449
  name?: InputMaybe<Scalars['String']['input']>;
5354
5450
  parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5355
5451
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5452
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5453
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5356
5454
  };
5357
5455
  export declare type AgentWorkspaceSkillUpdatePayload = {
5358
5456
  __typename?: 'AgentWorkspaceSkillUpdatePayload';
@@ -5360,17 +5458,32 @@ export declare type AgentWorkspaceSkillUpdatePayload = {
5360
5458
  skill?: Maybe<AgentWorkspaceSkill>;
5361
5459
  success: Scalars['Boolean']['output'];
5362
5460
  };
5461
+ export declare type AgentWorkspaceSkillsInput = {
5462
+ cloudId: Scalars['ID']['input'];
5463
+ filter?: InputMaybe<AgentWorkspaceSkillFilterInput>;
5464
+ pagination?: InputMaybe<AgentWorkspacePaginationInput>;
5465
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5466
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5467
+ };
5363
5468
  export declare type AgentWorkspaceUpdateCatalogInput = {
5364
5469
  catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
5470
+ cloudId: Scalars['ID']['input'];
5365
5471
  description?: InputMaybe<Scalars['String']['input']>;
5472
+ id: Scalars['ID']['input'];
5366
5473
  name?: InputMaybe<Scalars['String']['input']>;
5367
5474
  parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5368
5475
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5476
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5477
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5369
5478
  };
5370
5479
  export declare type AgentWorkspaceUpdateCatalogTypeInput = {
5480
+ cloudId: Scalars['ID']['input'];
5371
5481
  description?: InputMaybe<Scalars['String']['input']>;
5482
+ id: Scalars['ID']['input'];
5372
5483
  name?: InputMaybe<Scalars['String']['input']>;
5373
5484
  parentTypeId?: InputMaybe<Scalars['ID']['input']>;
5485
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5486
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5374
5487
  };
5375
5488
  export declare type AgentWorkspaceUpdateScheduleInput = {
5376
5489
  agentIds: Array<Scalars['ID']['input']>;
@@ -5398,6 +5511,8 @@ export declare type AgentWorkspaceUpdateSchedulePayload = {
5398
5511
  export declare type AgentWorkspaceUpdateSkillProficiencyInput = {
5399
5512
  cloudId: Scalars['ID']['input'];
5400
5513
  proficiencyLevel: Scalars['Int']['input'];
5514
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5515
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5401
5516
  skillId: Scalars['ID']['input'];
5402
5517
  userId: Scalars['ID']['input'];
5403
5518
  };
@@ -5405,7 +5520,6 @@ export declare type AgentWorkspaceUpdateSkillProficiencyPayload = {
5405
5520
  __typename?: 'AgentWorkspaceUpdateSkillProficiencyPayload';
5406
5521
  error?: Maybe<Scalars['String']['output']>;
5407
5522
  success: Scalars['Boolean']['output'];
5408
- user?: Maybe<AgentWorkspaceAgent>;
5409
5523
  userSkill?: Maybe<AgentWorkspaceUserSkill>;
5410
5524
  };
5411
5525
  export declare type AgentWorkspaceUserConnection = {
@@ -5443,6 +5557,27 @@ export declare type AgentWorkspaceUserSkillFilterInput = {
5443
5557
  skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5444
5558
  userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5445
5559
  };
5560
+ export declare type AgentWorkspaceUserSkillInput = {
5561
+ cloudId: Scalars['ID']['input'];
5562
+ id: Scalars['ID']['input'];
5563
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5564
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5565
+ };
5566
+ export declare type AgentWorkspaceUserSkillsInput = {
5567
+ cloudId: Scalars['ID']['input'];
5568
+ filter?: InputMaybe<AgentWorkspaceUserSkillFilterInput>;
5569
+ pagination?: InputMaybe<AgentWorkspacePaginationInput>;
5570
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5571
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5572
+ };
5573
+ export declare type AgentWorkspaceUsersBySkillsInput = {
5574
+ cloudId: Scalars['ID']['input'];
5575
+ pagination?: InputMaybe<AgentWorkspacePaginationInput>;
5576
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5577
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5578
+ skillIds: Array<Scalars['ID']['input']>;
5579
+ skillMatchType?: InputMaybe<AgentWorkspaceSkillMatchType>;
5580
+ };
5446
5581
  export declare enum AiCoreApiQuestionType {
5447
5582
  DraftDocument = "DRAFT_DOCUMENT",
5448
5583
  KnowledgeBase = "KNOWLEDGE_BASE"
@@ -10178,6 +10313,9 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
10178
10313
  export declare type BlockServiceBatchCreateBlocksInput = {
10179
10314
  blocks: Array<BlockServiceCreateBlockInput>;
10180
10315
  };
10316
+ export declare type BlockServiceBatchDeleteBlocksInput = {
10317
+ blocks: Array<BlockServiceDeleteBlockInput>;
10318
+ };
10181
10319
  export declare type BlockServiceBatchRetrieveBlocksInput = {
10182
10320
  blockAris: Array<Scalars['String']['input']>;
10183
10321
  blockIdentifiers?: InputMaybe<Array<BlockServiceBlockIdentifierInput>>;
@@ -14177,8 +14315,7 @@ export declare type CommerceExpBillingPeriodDetails = {
14177
14315
  billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
14178
14316
  nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
14179
14317
  };
14180
- export declare type CommerceExpBillingPeriodItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
14181
- export declare type CommerceExpBillingScheduleItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByBillingPeriodLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
14318
+ export declare type CommerceExpBillingScheduleItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
14182
14319
  export declare type CommerceExpBuyCurrentTrialInput = {
14183
14320
  entitlementId: Scalars['String']['input'];
14184
14321
  };
@@ -14217,6 +14354,11 @@ export declare type CommerceExpCardPaymentMethodPaginatedEntitlementsArgs = {
14217
14354
  first?: InputMaybe<Scalars['Int']['input']>;
14218
14355
  last?: InputMaybe<Scalars['Int']['input']>;
14219
14356
  };
14357
+ export declare type CommerceExpCcpChargeElementTransition = {
14358
+ __typename?: 'CommerceExpCcpChargeElementTransition';
14359
+ from?: Maybe<Scalars['String']['output']>;
14360
+ to?: Maybe<Scalars['String']['output']>;
14361
+ };
14220
14362
  export declare type CommerceExpCcpCreditNote = {
14221
14363
  __typename?: 'CommerceExpCcpCreditNote';
14222
14364
  additionalNotes?: Maybe<Scalars['String']['output']>;
@@ -14556,6 +14698,11 @@ export declare type CommerceExpCcpMutationWithQuery = {
14556
14698
  ccp?: Maybe<CommerceExpCcpMutation>;
14557
14699
  query?: Maybe<Query>;
14558
14700
  };
14701
+ export declare type CommerceExpCcpOfferingEntityTransition = {
14702
+ __typename?: 'CommerceExpCcpOfferingEntityTransition';
14703
+ from?: Maybe<Scalars['ID']['output']>;
14704
+ to?: Maybe<Scalars['ID']['output']>;
14705
+ };
14559
14706
  export declare enum CommerceExpCcpOfferingRelationshipDirection {
14560
14707
  From = "FROM",
14561
14708
  To = "TO"
@@ -14666,6 +14813,13 @@ export declare type CommerceExpCcpPricingPlan = CommerceExpNode & {
14666
14813
  export declare type CommerceExpCcpPricingPlanItemsArgs = {
14667
14814
  chargeTypesFilter?: InputMaybe<Array<InputMaybe<CommerceExpPricingPlanItemChargeType>>>;
14668
14815
  };
14816
+ export declare type CommerceExpCcpPricingPlanEntityTransition = {
14817
+ __typename?: 'CommerceExpCcpPricingPlanEntityTransition';
14818
+ from?: Maybe<Scalars['ID']['output']>;
14819
+ fromPricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
14820
+ to?: Maybe<Scalars['ID']['output']>;
14821
+ toPricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
14822
+ };
14669
14823
  export declare enum CommerceExpCcpPricingType {
14670
14824
  External = "EXTERNAL",
14671
14825
  Free = "FREE",
@@ -14873,6 +15027,7 @@ export declare type CommerceExpCcpSubscription = {
14873
15027
  scheduledChanges?: Maybe<CommerceExpScheduledChanges>;
14874
15028
  startTimestamp?: Maybe<Scalars['Float']['output']>;
14875
15029
  status?: Maybe<CommerceExpSubscriptionStatus>;
15030
+ transition?: Maybe<CommerceExpCcpSubscriptionTransition>;
14876
15031
  trial?: Maybe<CommerceExpCcpSubscriptionTrial>;
14877
15032
  unpaidInvoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
14878
15033
  };
@@ -14882,6 +15037,18 @@ export declare type CommerceExpCcpSubscriptionIsInPreDunningArgs = {
14882
15037
  export declare type CommerceExpCcpSubscriptionIsInvoiceGenerationPendingArgs = {
14883
15038
  invoiceRequestStatus: CommerceExpInvoiceRequestStatusType;
14884
15039
  };
15040
+ export declare type CommerceExpCcpSubscriptionTransition = {
15041
+ __typename?: 'CommerceExpCcpSubscriptionTransition';
15042
+ chargeElementTransition?: Maybe<CommerceExpCcpChargeElementTransition>;
15043
+ expectedTransitionDate?: Maybe<Scalars['Float']['output']>;
15044
+ id?: Maybe<Scalars['ID']['output']>;
15045
+ offeringTransition?: Maybe<CommerceExpCcpOfferingEntityTransition>;
15046
+ orderId?: Maybe<Scalars['String']['output']>;
15047
+ orderItemId?: Maybe<Scalars['String']['output']>;
15048
+ postTransitionSubscriptionState?: Maybe<CommerceExpPostTransitionSubscriptionState>;
15049
+ pricingPlanTransition?: Maybe<CommerceExpCcpPricingPlanEntityTransition>;
15050
+ transitionRequestDate?: Maybe<Scalars['Float']['output']>;
15051
+ };
14885
15052
  export declare type CommerceExpCcpSubscriptionTrial = {
14886
15053
  __typename?: 'CommerceExpCcpSubscriptionTrial';
14887
15054
  endBehaviour?: Maybe<CommerceExpSubscriptionTrialEndBehaviour>;
@@ -15786,12 +15953,6 @@ export declare type CommerceExpGenericMutationPayload = CommerceExpMutationPaylo
15786
15953
  errors?: Maybe<Array<MutationError>>;
15787
15954
  success: Scalars['Boolean']['output'];
15788
15955
  };
15789
- export declare type CommerceExpGroupedByBillingPeriodLineItem = {
15790
- __typename?: 'CommerceExpGroupedByBillingPeriodLineItem';
15791
- billingPeriod?: Maybe<CommerceExpPeriodResponse>;
15792
- billingPeriodItems?: Maybe<Array<Maybe<CommerceExpBillingPeriodItem>>>;
15793
- type: CommerceExpQuoteLineItemContainerType;
15794
- };
15795
15956
  export declare type CommerceExpGroupedByBillingScheduleLineItem = {
15796
15957
  __typename?: 'CommerceExpGroupedByBillingScheduleLineItem';
15797
15958
  aggregatedDiscountTotal?: Maybe<Scalars['Float']['output']>;
@@ -15821,7 +15982,7 @@ export declare type CommerceExpGroupedBySiteQuoteLineItem = {
15821
15982
  siteItems?: Maybe<Array<Maybe<CommerceExpSiteItem>>>;
15822
15983
  type: CommerceExpQuoteLineItemContainerType;
15823
15984
  };
15824
- export declare type CommerceExpGroupedQuoteLineItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByBillingPeriodLineItem | CommerceExpGroupedByBillingScheduleLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
15985
+ export declare type CommerceExpGroupedQuoteLineItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByBillingScheduleLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
15825
15986
  export declare type CommerceExpGupsMutation = {
15826
15987
  __typename?: 'CommerceExpGupsMutation';
15827
15988
  createEntitlementProfile?: Maybe<CommerceExpCreateEntitlementProfilePayload>;
@@ -16701,6 +16862,31 @@ export declare type CommerceExpPlsQueryError = {
16701
16862
  error?: Maybe<CommerceExpPlsErrorType>;
16702
16863
  };
16703
16864
  export declare type CommerceExpPlsQueryResult = CommerceExpPlsOrgEntitlementConnection | CommerceExpPlsQueryError;
16865
+ export declare enum CommerceExpPoaErrorType {
16866
+ FetchFailed = "FETCH_FAILED",
16867
+ NoPermission = "NO_PERMISSION"
16868
+ }
16869
+ export declare type CommerceExpPoaQuery = {
16870
+ __typename?: 'CommerceExpPoaQuery';
16871
+ siteEntitlements?: Maybe<CommerceExpPoaQueryResult>;
16872
+ };
16873
+ export declare type CommerceExpPoaQuerySiteEntitlementsArgs = {
16874
+ siteAri: Scalars['String']['input'];
16875
+ };
16876
+ export declare type CommerceExpPoaQueryError = {
16877
+ __typename?: 'CommerceExpPoaQueryError';
16878
+ error?: Maybe<CommerceExpPoaErrorType>;
16879
+ };
16880
+ export declare type CommerceExpPoaQueryResult = CommerceExpPoaQueryError | CommerceExpPoaSiteEntitlementConnection;
16881
+ export declare type CommerceExpPoaSiteEntitlementConnection = {
16882
+ __typename?: 'CommerceExpPoaSiteEntitlementConnection';
16883
+ edges?: Maybe<Array<Maybe<CommerceExpCcpEntitlementEdge>>>;
16884
+ pageInfo: PageInfo;
16885
+ };
16886
+ export declare enum CommerceExpPostTransitionSubscriptionState {
16887
+ Cancel = "Cancel",
16888
+ Continue = "Continue"
16889
+ }
16704
16890
  export declare type CommerceExpPostalAddress = {
16705
16891
  __typename?: 'CommerceExpPostalAddress';
16706
16892
  city?: Maybe<Scalars['String']['output']>;
@@ -16927,7 +17113,6 @@ export declare type CommerceExpQuoteFilter = {
16927
17113
  status?: InputMaybe<CommerceExpQuoteStatusFilter>;
16928
17114
  };
16929
17115
  export declare enum CommerceExpQuoteLineItemContainerType {
16930
- BillingPeriod = "BILLING_PERIOD",
16931
17116
  BillingSchedule = "BILLING_SCHEDULE",
16932
17117
  Container = "CONTAINER",
16933
17118
  Org = "ORG",
@@ -25551,6 +25736,11 @@ export declare type ConfluenceNbmAddGlobalTransformerPayload = Payload & {
25551
25736
  errors?: Maybe<Array<MutationError>>;
25552
25737
  success: Scalars['Boolean']['output'];
25553
25738
  };
25739
+ export declare type ConfluenceNbmAddTransformerToConfigPayload = {
25740
+ __typename?: 'ConfluenceNbmAddTransformerToConfigPayload';
25741
+ errors?: Maybe<Array<MutationError>>;
25742
+ success: Scalars['Boolean']['output'];
25743
+ };
25554
25744
  export declare type ConfluenceNbmBulkUpdateVerificationEntryInput = {
25555
25745
  scanId: Scalars['ID']['input'];
25556
25746
  verificationEntries: Array<InputMaybe<ConfluenceNbmVerificationEntryInput>>;
@@ -25701,6 +25891,11 @@ export declare type ConfluenceNbmPerfTransformer = {
25701
25891
  status?: Maybe<Scalars['String']['output']>;
25702
25892
  transformerId?: Maybe<Scalars['String']['output']>;
25703
25893
  };
25894
+ export declare type ConfluenceNbmRemoveTransformerFromConfigPayload = {
25895
+ __typename?: 'ConfluenceNbmRemoveTransformerFromConfigPayload';
25896
+ errors?: Maybe<Array<MutationError>>;
25897
+ success: Scalars['Boolean']['output'];
25898
+ };
25704
25899
  export declare type ConfluenceNbmRetryPerfScanLongTaskInput = {
25705
25900
  scanId: Scalars['ID']['input'];
25706
25901
  };
@@ -25894,6 +26089,11 @@ export declare type ConfluenceNbmTransformer = {
25894
26089
  name: Scalars['String']['output'];
25895
26090
  transformedChain?: Maybe<Scalars['String']['output']>;
25896
26091
  };
26092
+ export declare type ConfluenceNbmTransformerConfig = {
26093
+ __typename?: 'ConfluenceNbmTransformerConfig';
26094
+ scanId: Scalars['String']['output'];
26095
+ transformerNames: Array<Maybe<Scalars['String']['output']>>;
26096
+ };
25897
26097
  export declare type ConfluenceNbmUploadTransformerConfigInput = {
25898
26098
  scanId: Scalars['ID']['input'];
25899
26099
  transformerNames: Array<InputMaybe<Scalars['String']['input']>>;
@@ -31790,6 +31990,17 @@ export declare type CplsUpdateViewSettingsPayload = Payload & {
31790
31990
  success: Scalars['Boolean']['output'];
31791
31991
  viewSettings?: Maybe<CplsViewSettings>;
31792
31992
  };
31993
+ export declare type CplsUpdateWorkResourcingEstimate = {
31994
+ cloudId: Scalars['ID']['input'];
31995
+ workDataId: Scalars['ID']['input'];
31996
+ workResourcingEstimateHours: Scalars['Float']['input'];
31997
+ };
31998
+ export declare type CplsUpdateWorkResourcingEstimatePayload = Payload & {
31999
+ __typename?: 'CplsUpdateWorkResourcingEstimatePayload';
32000
+ errors?: Maybe<Array<MutationError>>;
32001
+ resourceAllocated?: Maybe<CplsValueFormats>;
32002
+ success: Scalars['Boolean']['output'];
32003
+ };
31793
32004
  export declare type CplsValueFormats = {
31794
32005
  __typename?: 'CplsValueFormats';
31795
32006
  days?: Maybe<Scalars['Float']['output']>;
@@ -37980,6 +38191,17 @@ export declare enum DistributionStatus {
37980
38191
  Development = "DEVELOPMENT",
37981
38192
  Public = "PUBLIC"
37982
38193
  }
38194
+ export declare type DlpDetectionContentSummary = {
38195
+ __typename?: 'DlpDetectionContentSummary';
38196
+ containerCount?: Maybe<Scalars['Int']['output']>;
38197
+ detectorId?: Maybe<Scalars['String']['output']>;
38198
+ objectCount?: Maybe<Scalars['Int']['output']>;
38199
+ };
38200
+ export declare type DlpDetectionContentSummaryListResponse = {
38201
+ __typename?: 'DlpDetectionContentSummaryListResponse';
38202
+ cursor?: Maybe<Scalars['String']['output']>;
38203
+ detectionContentSummaries?: Maybe<Array<Maybe<DlpDetectionContentSummary>>>;
38204
+ };
37983
38205
  export declare type DlpDetectorClassificationMappingListResponse = {
37984
38206
  __typename?: 'DlpDetectorClassificationMappingListResponse';
37985
38207
  cursor?: Maybe<Scalars['String']['output']>;
@@ -43285,6 +43507,17 @@ export declare type GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload
43285
43507
  serverId?: Maybe<Scalars['ID']['output']>;
43286
43508
  success: Scalars['Boolean']['output'];
43287
43509
  };
43510
+ export declare type GraphIntegrationMcpAdminManagementUpdateMcpRegistrationInput = {
43511
+ autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
43512
+ cloudId: Scalars['ID']['input'];
43513
+ serverId: Scalars['ID']['input'];
43514
+ };
43515
+ export declare type GraphIntegrationMcpAdminManagementUpdateMcpRegistrationPayload = Payload & {
43516
+ __typename?: 'GraphIntegrationMcpAdminManagementUpdateMcpRegistrationPayload';
43517
+ errors?: Maybe<Array<MutationError>>;
43518
+ server?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
43519
+ success: Scalars['Boolean']['output'];
43520
+ };
43288
43521
  export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput = {
43289
43522
  cloudId: Scalars['ID']['input'];
43290
43523
  serverId: Scalars['ID']['input'];
@@ -93802,6 +94035,34 @@ export declare type GravityFieldRefMappingInput = {
93802
94035
  key: Scalars['String']['input'];
93803
94036
  ref: Scalars['VTRI']['input'];
93804
94037
  };
94038
+ export declare type GravityImportIdeasInput = {
94039
+ csvContent?: InputMaybe<Scalars['String']['input']>;
94040
+ imageContent?: InputMaybe<Scalars['String']['input']>;
94041
+ imageMimeType?: InputMaybe<Scalars['String']['input']>;
94042
+ pdfContent?: InputMaybe<Scalars['String']['input']>;
94043
+ projectId?: InputMaybe<Scalars['String']['input']>;
94044
+ sourceLabel?: InputMaybe<Scalars['String']['input']>;
94045
+ sourceType: GravityImportSourceType;
94046
+ textContent?: InputMaybe<Scalars['String']['input']>;
94047
+ };
94048
+ export declare type GravityImportIdeasMetadata = {
94049
+ __typename?: 'GravityImportIdeasMetadata';
94050
+ aiProcessingTimeMs: Scalars['Int']['output'];
94051
+ itemsProcessed: Scalars['Int']['output'];
94052
+ sourceType: GravityImportSourceType;
94053
+ };
94054
+ export declare type GravityImportIdeasResult = GravityImportIdeasSuccess | QueryError;
94055
+ export declare type GravityImportIdeasSuccess = {
94056
+ __typename?: 'GravityImportIdeasSuccess';
94057
+ metadata: GravityImportIdeasMetadata;
94058
+ suggestedIdeas: Array<GravitySuggestedIdea>;
94059
+ };
94060
+ export declare enum GravityImportSourceType {
94061
+ Csv = "CSV",
94062
+ Image = "IMAGE",
94063
+ Pdf = "PDF",
94064
+ Text = "TEXT"
94065
+ }
93805
94066
  export declare type GravityRefMappingProposals = {
93806
94067
  __typename?: 'GravityRefMappingProposals';
93807
94068
  fields: Array<GravityFieldMappingProposals>;
@@ -93820,6 +94081,12 @@ export declare enum GravitySortOrder {
93820
94081
  Asc = "ASC",
93821
94082
  Desc = "DESC"
93822
94083
  }
94084
+ export declare type GravitySuggestedIdea = {
94085
+ __typename?: 'GravitySuggestedIdea';
94086
+ description: Scalars['String']['output'];
94087
+ sourceReference: Scalars['String']['output'];
94088
+ title: Scalars['String']['output'];
94089
+ };
93823
94090
  export declare type GravityView = {
93824
94091
  __typename?: 'GravityView';
93825
94092
  config: GravityViewConfig;
@@ -93943,6 +94210,16 @@ export declare type GravityViewTemplateImage = {
93943
94210
  src: Scalars['String']['output'];
93944
94211
  srcDark?: Maybe<Scalars['String']['output']>;
93945
94212
  };
94213
+ export declare type GravityViewTemplateMappingProposalsResult = GravityViewTemplateMappingProposalsSuccess | QueryError;
94214
+ export declare type GravityViewTemplateMappingProposalsSuccess = {
94215
+ __typename?: 'GravityViewTemplateMappingProposalsSuccess';
94216
+ proposals: GravityRefMappingProposals;
94217
+ };
94218
+ export declare type GravityViewTemplatesResult = GravityViewTemplatesSuccess | QueryError;
94219
+ export declare type GravityViewTemplatesSuccess = {
94220
+ __typename?: 'GravityViewTemplatesSuccess';
94221
+ templates: Array<GravityViewTemplate>;
94222
+ };
93946
94223
  export declare enum GravityViewVisualizationType {
93947
94224
  Board = "BOARD",
93948
94225
  List = "LIST",
@@ -100194,6 +100471,7 @@ export declare type JiraBoardViewCell = Node & {
100194
100471
  id: Scalars['ID']['output'];
100195
100472
  issuePositions?: Maybe<Array<JiraBoardViewCellIssuePosition>>;
100196
100473
  issues?: Maybe<JiraIssueConnection>;
100474
+ swimlane?: Maybe<JiraBoardViewSwimlane>;
100197
100475
  workflows?: Maybe<JiraBoardViewWorkflowConnection>;
100198
100476
  };
100199
100477
  export declare type JiraBoardViewCellIssuePositionsArgs = {
@@ -112604,6 +112882,7 @@ export declare type JiraProject = Node & {
112604
112882
  isGlobalComponentsEnabled?: Maybe<Scalars['Boolean']['output']>;
112605
112883
  isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
112606
112884
  isPlaybooksEnabled?: Maybe<Scalars['Boolean']['output']>;
112885
+ isRootCauseAnalysisEnabled?: Maybe<Scalars['Boolean']['output']>;
112607
112886
  isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
112608
112887
  issueTypes?: Maybe<JiraIssueTypeConnection>;
112609
112888
  jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
@@ -122011,17 +122290,15 @@ export declare type JpdViewsServiceGlobalViewEdge = {
122011
122290
  cursor?: Maybe<Scalars['String']['output']>;
122012
122291
  node?: Maybe<JpdViewsServiceGlobalView>;
122013
122292
  };
122293
+ export declare type JpdViewsServiceGlobalViewProjectsResponse = {
122294
+ __typename?: 'JpdViewsServiceGlobalViewProjectsResponse';
122295
+ projectIds: Array<Scalars['ID']['output']>;
122296
+ projectsByIds?: Maybe<Array<Maybe<JiraProject>>>;
122297
+ totalCount?: Maybe<Scalars['Int']['output']>;
122298
+ };
122014
122299
  export declare type JpdViewsServiceGlobalViewsByCriteriaInput = {
122015
122300
  containsText: Scalars['String']['input'];
122016
122301
  };
122017
- export declare type JpdViewsServiceGlobalViewsHydrationExample = {
122018
- __typename?: 'JpdViewsServiceGlobalViewsHydrationExample';
122019
- cloudId: Scalars['ID']['output'];
122020
- viewsData?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
122021
- };
122022
- export declare type JpdViewsServiceGlobalViewsHydrationExampleViewsDataArgs = {
122023
- ids: Array<Scalars['ID']['input']>;
122024
- };
122025
122302
  export declare type JpdViewsServiceMatrixConfig = {
122026
122303
  __typename?: 'JpdViewsServiceMatrixConfig';
122027
122304
  axes: Array<JpdViewsServiceAxisConfig>;
@@ -122067,19 +122344,10 @@ export declare type JpdViewsServiceSort = {
122067
122344
  field: JpdViewsServiceField;
122068
122345
  order: Scalars['String']['output'];
122069
122346
  };
122070
- export declare type JpdViewsServiceSortByInput = {
122071
- key?: InputMaybe<Scalars['String']['input']>;
122072
- mode?: InputMaybe<JpdViewsServiceViewSortMode>;
122073
- order?: InputMaybe<JpdViewsServiceSortOrder>;
122074
- };
122075
122347
  export declare type JpdViewsServiceSortInput = {
122076
122348
  field: Scalars['String']['input'];
122077
122349
  order: Scalars['String']['input'];
122078
122350
  };
122079
- export declare enum JpdViewsServiceSortOrder {
122080
- Asc = "ASC",
122081
- Desc = "DESC"
122082
- }
122083
122351
  export declare type JpdViewsServiceTableColumnSize = {
122084
122352
  __typename?: 'JpdViewsServiceTableColumnSize';
122085
122353
  field: JpdViewsServiceField;
@@ -122106,6 +122374,16 @@ export declare type JpdViewsServiceTimelineConfigInput = {
122106
122374
  startTimestamp: Scalars['String']['input'];
122107
122375
  summaryCardField: Scalars['String']['input'];
122108
122376
  };
122377
+ export declare type JpdViewsServiceUnassociateGlobalViewInput = {
122378
+ containerId: Scalars['String']['input'];
122379
+ containerType: JpdViewsServiceGlobalViewAssociationContainerType;
122380
+ id: Scalars['ID']['input'];
122381
+ };
122382
+ export declare type JpdViewsServiceUnassociateGlobalViewPayload = Payload & {
122383
+ __typename?: 'JpdViewsServiceUnassociateGlobalViewPayload';
122384
+ errors?: Maybe<Array<MutationError>>;
122385
+ success: Scalars['Boolean']['output'];
122386
+ };
122109
122387
  export declare type JpdViewsServiceUpdateGlobalViewInput = {
122110
122388
  boldColors?: InputMaybe<Scalars['Boolean']['input']>;
122111
122389
  colorBy?: InputMaybe<JpdViewsServiceFieldInput>;
@@ -122157,11 +122435,6 @@ export declare type JpdViewsServiceViewBase = {
122157
122435
  rank?: Maybe<Scalars['Int']['output']>;
122158
122436
  visualizationType: JpdViewsServiceVisualizationType;
122159
122437
  };
122160
- export declare enum JpdViewsServiceViewSortMode {
122161
- FieldsSort = "FIELDS_SORT",
122162
- ProjectRank = "PROJECT_RANK",
122163
- ViewRank = "VIEW_RANK"
122164
- }
122165
122438
  export declare enum JpdViewsServiceVisualizationType {
122166
122439
  Board = "BOARD",
122167
122440
  Matrix = "MATRIX",
@@ -123542,7 +123815,10 @@ export declare type KitsuneFeedback = Node & {
123542
123815
  __typename?: 'KitsuneFeedback';
123543
123816
  chunks: KitsuneChunkConnection;
123544
123817
  content?: Maybe<Scalars['KitsuneADF']['output']>;
123818
+ creator?: Maybe<User>;
123819
+ creatorId?: Maybe<Scalars['ID']['output']>;
123545
123820
  id: Scalars['ID']['output'];
123821
+ sourceCategory: KitsuneSourceCategory;
123546
123822
  summary?: Maybe<KitsuneFeedbackSummary>;
123547
123823
  title?: Maybe<Scalars['String']['output']>;
123548
123824
  };
@@ -123835,6 +124111,7 @@ export declare type KitsuneSourceInputWeb = {
123835
124111
  };
123836
124112
  export declare type KitsuneSpace = Node & {
123837
124113
  __typename?: 'KitsuneSpace';
124114
+ description?: Maybe<Scalars['String']['output']>;
123838
124115
  feedbacks: KitsuneFeedbackConnection;
123839
124116
  fields: KitsuneFieldConnection;
123840
124117
  id: Scalars['ID']['output'];
@@ -130851,14 +131128,6 @@ export declare type MercuryFocusAreaLinks = {
130851
131128
  __typename?: 'MercuryFocusAreaLinks';
130852
131129
  links: Array<MercuryFocusAreaLink>;
130853
131130
  };
130854
- export declare type MercuryFocusAreaNode = {
130855
- __typename?: 'MercuryFocusAreaNode';
130856
- childCount?: Maybe<Scalars['Int']['output']>;
130857
- depth?: Maybe<Scalars['Int']['output']>;
130858
- focusArea?: Maybe<MercuryFocusArea>;
130859
- hasChildren?: Maybe<Scalars['Boolean']['output']>;
130860
- id: Scalars['ID']['output'];
130861
- };
130862
131131
  export declare enum MercuryFocusAreaPermission {
130863
131132
  Archive = "ARCHIVE",
130864
131133
  CreateGoalLink = "CREATE_GOAL_LINK",
@@ -131922,19 +132191,26 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
131922
132191
  countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
131923
132192
  totalCount?: Maybe<Scalars['Int']['output']>;
131924
132193
  };
131925
- export declare type MercuryNormalizedWork = {
132194
+ export declare type MercuryNormalizedWork = HasMercuryProjectFields & {
131926
132195
  __typename?: 'MercuryNormalizedWork';
131927
132196
  connectedFocusArea: Scalars['ID']['output'];
131928
132197
  depth?: Maybe<Scalars['Int']['output']>;
131929
132198
  externalOwner?: Maybe<MercuryExternalOwner>;
131930
132199
  id: Scalars['ID']['output'];
131931
- key?: Maybe<Scalars['String']['output']>;
131932
- name?: Maybe<Scalars['String']['output']>;
131933
- owner?: Maybe<User>;
131934
- sourceStatus?: Maybe<MercuryNormalizedWorkSourceStatus>;
131935
- status?: Maybe<MercuryNormalizedWorkStatus>;
131936
- targetDate?: Maybe<MercuryNormalizedWorkTargetDate>;
131937
- type?: Maybe<Scalars['String']['output']>;
132200
+ mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
132201
+ mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
132202
+ mercuryProjectKey?: Maybe<Scalars['String']['output']>;
132203
+ mercuryProjectName?: Maybe<Scalars['String']['output']>;
132204
+ mercuryProjectOwner?: Maybe<User>;
132205
+ mercuryProjectProviderName?: Maybe<Scalars['String']['output']>;
132206
+ mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
132207
+ mercuryProjectType?: Maybe<MercuryProjectType>;
132208
+ mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
132209
+ mercuryTargetDate?: Maybe<Scalars['String']['output']>;
132210
+ mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
132211
+ mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
132212
+ mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
132213
+ workId: Scalars['ID']['output'];
131938
132214
  };
131939
132215
  export declare type MercuryNormalizedWorkConnection = {
131940
132216
  __typename?: 'MercuryNormalizedWorkConnection';
@@ -131945,8 +132221,13 @@ export declare type MercuryNormalizedWorkConnection = {
131945
132221
  export declare type MercuryNormalizedWorkEdge = {
131946
132222
  __typename?: 'MercuryNormalizedWorkEdge';
131947
132223
  cursor: Scalars['String']['output'];
131948
- node?: Maybe<MercuryNormalizedWork>;
132224
+ node?: Maybe<MercuryNormalizedWorkResult>;
131949
132225
  };
132226
+ export declare type MercuryNormalizedWorkProjectType = MercuryProjectType & {
132227
+ __typename?: 'MercuryNormalizedWorkProjectType';
132228
+ mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
132229
+ };
132230
+ export declare type MercuryNormalizedWorkResult = MercuryNormalizedWork | MercuryRestrictedWork;
131950
132231
  export declare type MercuryNormalizedWorkSearchFiltersInput = {
131951
132232
  owner?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
131952
132233
  source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -131967,37 +132248,19 @@ export declare type MercuryNormalizedWorkSortInput = {
131967
132248
  field: MercuryNormalizedWorkSortField;
131968
132249
  order: SortOrder;
131969
132250
  };
131970
- export declare type MercuryNormalizedWorkSourceStatus = {
132251
+ export declare type MercuryNormalizedWorkSourceStatus = MercuryOriginalProjectStatus & {
131971
132252
  __typename?: 'MercuryNormalizedWorkSourceStatus';
131972
- color?: Maybe<MercuryNormalizedWorkStatusColor>;
131973
- name: Scalars['String']['output'];
132253
+ mercuryOriginalStatusName: Scalars['String']['output'];
131974
132254
  };
131975
- export declare type MercuryNormalizedWorkStatus = {
132255
+ export declare type MercuryNormalizedWorkStatus = MercuryProjectStatus & {
131976
132256
  __typename?: 'MercuryNormalizedWorkStatus';
131977
- color: MercuryNormalizedWorkStatusColor;
131978
- name: Scalars['String']['output'];
131979
- };
131980
- export declare enum MercuryNormalizedWorkStatusColor {
131981
- Blue = "BLUE",
131982
- Gray = "GRAY",
131983
- Green = "GREEN",
131984
- Red = "RED",
131985
- Yellow = "YELLOW"
131986
- }
131987
- export declare type MercuryNormalizedWorkTargetDate = {
131988
- __typename?: 'MercuryNormalizedWorkTargetDate';
131989
- targetDate?: Maybe<Scalars['String']['output']>;
131990
- targetDateType?: Maybe<MercuryNormalizedWorkTargetDateType>;
132257
+ mercuryColor: MercuryProjectStatusColor;
132258
+ mercuryName: Scalars['String']['output'];
131991
132259
  };
131992
132260
  export declare type MercuryNormalizedWorkTargetDateInput = {
131993
132261
  targetDate?: InputMaybe<Scalars['String']['input']>;
131994
- targetDateType?: InputMaybe<MercuryNormalizedWorkTargetDateType>;
132262
+ targetDateType?: InputMaybe<MercuryProjectTargetDateType>;
131995
132263
  };
131996
- export declare enum MercuryNormalizedWorkTargetDateType {
131997
- Day = "DAY",
131998
- Month = "MONTH",
131999
- Quarter = "QUARTER"
132000
- }
132001
132264
  export declare type MercuryNumberCustomField = MercuryCustomField & {
132002
132265
  __typename?: 'MercuryNumberCustomField';
132003
132266
  createdBy?: Maybe<User>;
@@ -132753,6 +133016,14 @@ export declare type MercuryRestrictedStrategicEventEdge = {
132753
133016
  cursor: Scalars['String']['output'];
132754
133017
  node?: Maybe<MercuryRestrictedStrategicEvent>;
132755
133018
  };
133019
+ export declare type MercuryRestrictedWork = {
133020
+ __typename?: 'MercuryRestrictedWork';
133021
+ connectedFocusArea: Scalars['ID']['output'];
133022
+ depth?: Maybe<Scalars['Int']['output']>;
133023
+ id: Scalars['ID']['output'];
133024
+ workErrorType: MercuryProviderWorkErrorType;
133025
+ workId: Scalars['ID']['output'];
133026
+ };
132756
133027
  export declare type MercuryRisk = Node & {
132757
133028
  __typename?: 'MercuryRisk';
132758
133029
  createdDate: Scalars['String']['output'];
@@ -132814,11 +133085,15 @@ export declare type MercuryRisksMutationApiUpdateRiskOwnerArgs = {
132814
133085
  export declare type MercuryRisksQueryApi = {
132815
133086
  __typename?: 'MercuryRisksQueryApi';
132816
133087
  risk?: Maybe<MercuryRisk>;
133088
+ riskStatuses: Array<MercuryRiskStatus>;
132817
133089
  risks?: Maybe<Array<Maybe<MercuryRisk>>>;
132818
133090
  };
132819
133091
  export declare type MercuryRisksQueryApiRiskArgs = {
132820
133092
  id: Scalars['ID']['input'];
132821
133093
  };
133094
+ export declare type MercuryRisksQueryApiRiskStatusesArgs = {
133095
+ cloudId: Scalars['ID']['input'];
133096
+ };
132822
133097
  export declare type MercuryRisksQueryApiRisksArgs = {
132823
133098
  ids: Array<Scalars['ID']['input']>;
132824
133099
  };
@@ -133867,7 +134142,6 @@ export declare enum MercuryViewType {
133867
134142
  export declare type MercuryWorkNormalizationQueryApi = {
133868
134143
  __typename?: 'MercuryWorkNormalizationQueryApi';
133869
134144
  linkedWorkByFocusAreas?: Maybe<MercuryNormalizedWorkConnection>;
133870
- workNormalizationByFocusAreaId?: Maybe<MercuryWorkNormalizationSearchConnection>;
133871
134145
  };
133872
134146
  export declare type MercuryWorkNormalizationQueryApiLinkedWorkByFocusAreasArgs = {
133873
134147
  after?: InputMaybe<Scalars['String']['input']>;
@@ -133877,21 +134151,6 @@ export declare type MercuryWorkNormalizationQueryApiLinkedWorkByFocusAreasArgs =
133877
134151
  sort?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
133878
134152
  textQuery?: InputMaybe<Scalars['String']['input']>;
133879
134153
  };
133880
- export declare type MercuryWorkNormalizationQueryApiWorkNormalizationByFocusAreaIdArgs = {
133881
- focusAreaId: Scalars['ID']['input'];
133882
- };
133883
- export declare type MercuryWorkNormalizationSearchConnection = {
133884
- __typename?: 'MercuryWorkNormalizationSearchConnection';
133885
- edges?: Maybe<Array<Maybe<MercuryWorkNormalizationSearchEdge>>>;
133886
- pageInfo: PageInfo;
133887
- totalCount?: Maybe<Scalars['Int']['output']>;
133888
- };
133889
- export declare type MercuryWorkNormalizationSearchEdge = {
133890
- __typename?: 'MercuryWorkNormalizationSearchEdge';
133891
- cursor: Scalars['String']['output'];
133892
- node?: Maybe<MercuryWorkNormalizationSearchResult>;
133893
- };
133894
- export declare type MercuryWorkNormalizationSearchResult = MercuryFocusAreaNode | MercuryNormalizedWork;
133895
134154
  export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
133896
134155
  export declare type MercuryWorkSuggestionsSearchItem = {
133897
134156
  __typename?: 'MercuryWorkSuggestionsSearchItem';
@@ -134319,6 +134578,7 @@ export declare type Mutation = {
134319
134578
  avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
134320
134579
  avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
134321
134580
  blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
134581
+ blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
134322
134582
  blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
134323
134583
  blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
134324
134584
  blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
@@ -134407,8 +134667,10 @@ export declare type Mutation = {
134407
134667
  confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
134408
134668
  confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
134409
134669
  confluence_nbmAddGlobalTransformer?: Maybe<ConfluenceNbmAddGlobalTransformerPayload>;
134670
+ confluence_nbmAddTransformerToConfig?: Maybe<ConfluenceNbmAddTransformerToConfigPayload>;
134410
134671
  confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
134411
134672
  confluence_nbmExecuteTestTransformation?: Maybe<ConfluenceNbmExecuteTestTransformationPayload>;
134673
+ confluence_nbmRemoveTransformerFromConfig?: Maybe<ConfluenceNbmRemoveTransformerFromConfigPayload>;
134412
134674
  confluence_nbmRetryPerfScanLongTask?: Maybe<ConfluenceNbmRetryPerfScanLongTaskPayload>;
134413
134675
  confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
134414
134676
  confluence_nbmSetChainReadyForTransformation?: Maybe<ConfluenceNbmSetChainReadyForTransformationPayload>;
@@ -134492,6 +134754,7 @@ export declare type Mutation = {
134492
134754
  cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
134493
134755
  cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
134494
134756
  cpls_updateViewSettings?: Maybe<CplsUpdateViewSettingsPayload>;
134757
+ cpls_updateWorkResourcingEstimate?: Maybe<CplsUpdateWorkResourcingEstimatePayload>;
134495
134758
  createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
134496
134759
  createApp?: Maybe<CreateAppResponse>;
134497
134760
  createAppContainer?: Maybe<CreateAppContainerPayload>;
@@ -134699,6 +134962,7 @@ export declare type Mutation = {
134699
134962
  graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
134700
134963
  graphIntegration_mcpAdminManagementTriggerToolSync?: Maybe<GraphIntegrationMcpAdminManagementTriggerToolSyncPayload>;
134701
134964
  graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
134965
+ graphIntegration_mcpAdminManagementUpdateMcpRegistration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpRegistrationPayload>;
134702
134966
  graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
134703
134967
  graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
134704
134968
  graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
@@ -134850,6 +135114,7 @@ export declare type Mutation = {
134850
135114
  jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
134851
135115
  jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
134852
135116
  jpdViewsService_rerankGlobalView?: Maybe<JpdViewsServiceRerankGlobalViewPayload>;
135117
+ jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
134853
135118
  jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
134854
135119
  jsmAgentWorkspace_updateLocations?: Maybe<Scalars['String']['output']>;
134855
135120
  jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
@@ -135479,19 +135744,16 @@ export declare type MutationAgentWorkspace_CreateSkillArgs = {
135479
135744
  input: AgentWorkspaceSkillCreateInput;
135480
135745
  };
135481
135746
  export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
135482
- cloudId: Scalars['ID']['input'];
135483
- id: Scalars['ID']['input'];
135747
+ input: AgentWorkspaceCatalogDeleteInput;
135484
135748
  };
135485
135749
  export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
135486
- cloudId: Scalars['ID']['input'];
135487
- id: Scalars['ID']['input'];
135750
+ input: AgentWorkspaceCatalogTypeDeleteInput;
135488
135751
  };
135489
135752
  export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
135490
135753
  input: AgentWorkspaceDeleteScheduleInput;
135491
135754
  };
135492
135755
  export declare type MutationAgentWorkspace_DeleteSkillArgs = {
135493
- cloudId: Scalars['ID']['input'];
135494
- id: Scalars['ID']['input'];
135756
+ input: AgentWorkspaceSkillDeleteInput;
135495
135757
  };
135496
135758
  export declare type MutationAgentWorkspace_DeleteUserSkillArgs = {
135497
135759
  input: AgentWorkspaceDeleteUserSkillInput;
@@ -135511,21 +135773,15 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
135511
135773
  cloudId: Scalars['ID']['input'];
135512
135774
  };
135513
135775
  export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
135514
- cloudId: Scalars['ID']['input'];
135515
- id: Scalars['ID']['input'];
135516
135776
  input: AgentWorkspaceUpdateCatalogInput;
135517
135777
  };
135518
135778
  export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
135519
- cloudId: Scalars['ID']['input'];
135520
- id: Scalars['ID']['input'];
135521
135779
  input: AgentWorkspaceUpdateCatalogTypeInput;
135522
135780
  };
135523
135781
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
135524
135782
  input: AgentWorkspaceUpdateScheduleInput;
135525
135783
  };
135526
135784
  export declare type MutationAgentWorkspace_UpdateSkillArgs = {
135527
- cloudId: Scalars['ID']['input'];
135528
- id: Scalars['ID']['input'];
135529
135785
  input: AgentWorkspaceSkillUpdateInput;
135530
135786
  };
135531
135787
  export declare type MutationAgentWorkspace_UpdateSkillProficiencyArgs = {
@@ -135929,6 +136185,9 @@ export declare type MutationAvpanalytics_CreateModelArgs = {
135929
136185
  export declare type MutationBlockService_BatchCreateBlocksArgs = {
135930
136186
  input: BlockServiceBatchCreateBlocksInput;
135931
136187
  };
136188
+ export declare type MutationBlockService_BatchDeleteBlocksArgs = {
136189
+ input: BlockServiceBatchDeleteBlocksInput;
136190
+ };
135932
136191
  export declare type MutationBlockService_BatchUpdateBlocksArgs = {
135933
136192
  input: BlockServiceBatchUpdateBlocksInput;
135934
136193
  };
@@ -136228,6 +136487,11 @@ export declare type MutationConfluence_NbmAddGlobalTransformerArgs = {
136228
136487
  cloudId: Scalars['ID']['input'];
136229
136488
  input: ConfluenceNbmAddGlobalTransformerInput;
136230
136489
  };
136490
+ export declare type MutationConfluence_NbmAddTransformerToConfigArgs = {
136491
+ cloudId: Scalars['ID']['input'];
136492
+ scanId: Scalars['ID']['input'];
136493
+ transformerId: Scalars['ID']['input'];
136494
+ };
136231
136495
  export declare type MutationConfluence_NbmBulkUpdateVerificationEntryArgs = {
136232
136496
  cloudId: Scalars['ID']['input'];
136233
136497
  input: ConfluenceNbmBulkUpdateVerificationEntryInput;
@@ -136236,6 +136500,11 @@ export declare type MutationConfluence_NbmExecuteTestTransformationArgs = {
136236
136500
  cloudId: Scalars['ID']['input'];
136237
136501
  input: ConfluenceNbmExecuteTestTransformationInput;
136238
136502
  };
136503
+ export declare type MutationConfluence_NbmRemoveTransformerFromConfigArgs = {
136504
+ cloudId: Scalars['ID']['input'];
136505
+ scanId: Scalars['ID']['input'];
136506
+ transformerId: Scalars['ID']['input'];
136507
+ };
136239
136508
  export declare type MutationConfluence_NbmRetryPerfScanLongTaskArgs = {
136240
136509
  cloudId: Scalars['ID']['input'];
136241
136510
  input: ConfluenceNbmRetryPerfScanLongTaskInput;
@@ -136554,6 +136823,9 @@ export declare type MutationCpls_UpdateFiltersArgs = {
136554
136823
  export declare type MutationCpls_UpdateViewSettingsArgs = {
136555
136824
  input: CplsUpdateViewSettingsInput;
136556
136825
  };
136826
+ export declare type MutationCpls_UpdateWorkResourcingEstimateArgs = {
136827
+ input: CplsUpdateWorkResourcingEstimate;
136828
+ };
136557
136829
  export declare type MutationCreateAdminAnnouncementBannerArgs = {
136558
136830
  announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
136559
136831
  };
@@ -137259,6 +137531,9 @@ export declare type MutationGraphIntegration_McpAdminManagementTriggerToolSyncAr
137259
137531
  export declare type MutationGraphIntegration_McpAdminManagementUnregisterMcpServerArgs = {
137260
137532
  input: GraphIntegrationMcpAdminManagementUnregisterMcpServerInput;
137261
137533
  };
137534
+ export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpRegistrationArgs = {
137535
+ input: GraphIntegrationMcpAdminManagementUpdateMcpRegistrationInput;
137536
+ };
137262
137537
  export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpToolConfigurationArgs = {
137263
137538
  input: GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput;
137264
137539
  };
@@ -137724,6 +137999,9 @@ export declare type MutationJpdViewsService_EchoArgs = {
137724
137999
  export declare type MutationJpdViewsService_RerankGlobalViewArgs = {
137725
138000
  input: JpdViewsServiceRerankGlobalViewInput;
137726
138001
  };
138002
+ export declare type MutationJpdViewsService_UnassociateGlobalViewArgs = {
138003
+ input: JpdViewsServiceUnassociateGlobalViewInput;
138004
+ };
137727
138005
  export declare type MutationJpdViewsService_UpdateGlobalViewArgs = {
137728
138006
  input: JpdViewsServiceUpdateGlobalViewInput;
137729
138007
  };
@@ -137800,7 +138078,7 @@ export declare type MutationKitsune_MoveSectionArgs = {
137800
138078
  };
137801
138079
  export declare type MutationKitsune_MoveViewArgs = {
137802
138080
  parentId?: InputMaybe<Scalars['ID']['input']>;
137803
- rank: KitsuneRankInput;
138081
+ rank?: InputMaybe<KitsuneRankInput>;
137804
138082
  viewAri: Scalars['ID']['input'];
137805
138083
  };
137806
138084
  export declare type MutationKitsune_RemoveFeedbackArgs = {
@@ -137828,6 +138106,7 @@ export declare type MutationKitsune_UpdateSectionArgs = {
137828
138106
  sectionAri: Scalars['ID']['input'];
137829
138107
  };
137830
138108
  export declare type MutationKitsune_UpdateSpaceArgs = {
138109
+ description?: InputMaybe<Scalars['String']['input']>;
137831
138110
  id: Scalars['ID']['input'];
137832
138111
  name?: InputMaybe<Scalars['String']['input']>;
137833
138112
  };
@@ -141325,6 +141604,7 @@ export declare enum PolarisVisualizationType {
141325
141604
  Section = "SECTION",
141326
141605
  Table = "TABLE",
141327
141606
  Timeline = "TIMELINE",
141607
+ Tree = "TREE",
141328
141608
  Twoxtwo = "TWOXTWO"
141329
141609
  }
141330
141610
  export declare type PolarisWhiteboardConfig = {
@@ -141361,6 +141641,7 @@ export declare type PostOfficeContextInput = {
141361
141641
  export declare type PostOfficeMessage = {
141362
141642
  __typename?: 'PostOfficeMessage';
141363
141643
  createdAt: Scalars['String']['output'];
141644
+ data?: Maybe<PostOfficeMessageData>;
141364
141645
  eventTime: Scalars['String']['output'];
141365
141646
  messageCategory: Scalars['String']['output'];
141366
141647
  messageCreationType?: Maybe<PostOfficeMessageCreationType>;
@@ -141373,10 +141654,31 @@ export declare enum PostOfficeMessageCreationType {
141373
141654
  Explicit = "explicit",
141374
141655
  Implicit = "implicit"
141375
141656
  }
141657
+ export declare type PostOfficeMessageData = PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
141658
+ export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
141659
+ __typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
141660
+ message: Scalars['String']['output'];
141661
+ title?: Maybe<Scalars['String']['output']>;
141662
+ };
141376
141663
  export declare type PostOfficeMessagePayload = {
141377
141664
  __typename?: 'PostOfficeMessagePayload';
141378
141665
  messages: Array<PostOfficeMessage>;
141379
141666
  };
141667
+ export declare type PostOfficeMessageRecommendationJpdData = {
141668
+ __typename?: 'PostOfficeMessageRecommendationJpdData';
141669
+ tenantId?: Maybe<Scalars['String']['output']>;
141670
+ };
141671
+ export declare type PostOfficeMessageRecommendationJsmData = {
141672
+ __typename?: 'PostOfficeMessageRecommendationJsmData';
141673
+ tenantId?: Maybe<Scalars['String']['output']>;
141674
+ };
141675
+ export declare type PostOfficeMessageRecommendationTwcData = {
141676
+ __typename?: 'PostOfficeMessageRecommendationTwcData';
141677
+ isAdmin: Scalars['Boolean']['output'];
141678
+ locale: Scalars['String']['output'];
141679
+ tenantId: Scalars['String']['output'];
141680
+ variation: Scalars['String']['output'];
141681
+ };
141380
141682
  export declare type PostOfficeRecommendationSession = {
141381
141683
  __typename?: 'PostOfficeRecommendationSession';
141382
141684
  entityId: Scalars['String']['output'];
@@ -141985,6 +142287,7 @@ export declare type Query = {
141985
142287
  avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
141986
142288
  avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
141987
142289
  avp_getFilterExpression?: Maybe<AvpFilterExpression>;
142290
+ avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
141988
142291
  avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
141989
142292
  avpanalytics_getModel?: Maybe<AvpAnalyticsModel>;
141990
142293
  avpanalytics_getModels?: Maybe<AvpAnalyticsModelConnection>;
@@ -142065,6 +142368,7 @@ export declare type Query = {
142065
142368
  commerceExp_intercom?: Maybe<CommerceExpIntercomQuery>;
142066
142369
  commerceExp_node?: Maybe<CommerceExpNode>;
142067
142370
  commerceExp_pls?: Maybe<CommerceExpPlsQuery>;
142371
+ commerceExp_poaQuery?: Maybe<CommerceExpPoaQuery>;
142068
142372
  commerceExp_taas?: Maybe<CommerceExpTaasQuery>;
142069
142373
  compass?: Maybe<CompassCatalogQueryApi>;
142070
142374
  confluence?: Maybe<ConfluenceQueryApi>;
@@ -142141,6 +142445,7 @@ export declare type Query = {
142141
142445
  confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
142142
142446
  confluence_nbmTransformationJobList?: Maybe<ConfluenceNbmTransformationJobConnection>;
142143
142447
  confluence_nbmTransformationList?: Maybe<ConfluenceNbmTransformationListConnection>;
142448
+ confluence_nbmTransformerConfig?: Maybe<ConfluenceNbmTransformerConfig>;
142144
142449
  confluence_nbmVerificationResult?: Maybe<ConfluenceNbmVerificationResultConnection>;
142145
142450
  confluence_ncsPdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
142146
142451
  confluence_note?: Maybe<NoteResponse>;
@@ -142165,6 +142470,7 @@ export declare type Query = {
142165
142470
  confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
142166
142471
  confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
142167
142472
  confluence_spacePermissionsByCombinationId?: Maybe<ConfluenceSpacePermissionConnection>;
142473
+ confluence_spacePermissionsForSpaceRole?: Maybe<Array<SpacePermissionInfo>>;
142168
142474
  confluence_spaceProperty?: Maybe<ConfluenceSpaceProperty>;
142169
142475
  confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
142170
142476
  confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
@@ -142325,6 +142631,7 @@ export declare type Query = {
142325
142631
  developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
142326
142632
  devopsmetrics_echo?: Maybe<Scalars['String']['output']>;
142327
142633
  diagnostics?: Maybe<Scalars['JSON']['output']>;
142634
+ dlp_getDetectionContentSummary?: Maybe<DlpDetectionContentSummaryListResponse>;
142328
142635
  dlp_getDetectorClassificationMapping?: Maybe<DlpDetectorClassificationMappingListResponse>;
142329
142636
  dvcs?: Maybe<DvcsQuery>;
142330
142637
  echo?: Maybe<Scalars['String']['output']>;
@@ -142401,9 +142708,10 @@ export declare type Query = {
142401
142708
  graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
142402
142709
  graphStore?: Maybe<GraphStore>;
142403
142710
  graphStoreV2?: Maybe<GraphStoreV2>;
142711
+ gravity_importIdeas: GravityImportIdeasResult;
142404
142712
  gravity_jpdImportIdeas?: Maybe<JpdImportIdeasPayload>;
142405
- gravity_viewTemplateMappingProposals: GravityRefMappingProposals;
142406
- gravity_viewTemplates: Array<GravityViewTemplate>;
142713
+ gravity_viewTemplateMappingProposals: GravityViewTemplateMappingProposalsResult;
142714
+ gravity_viewTemplates: GravityViewTemplatesResult;
142407
142715
  group?: Maybe<Group>;
142408
142716
  groupCounts?: Maybe<GraphQlGroupCountsResult>;
142409
142717
  groupMembers?: Maybe<PaginatedPersonList>;
@@ -142505,9 +142813,9 @@ export declare type Query = {
142505
142813
  jira_view?: Maybe<JiraViewResult>;
142506
142814
  jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
142507
142815
  jpdViewsService_globalView?: Maybe<JpdViewsServiceGlobalView>;
142816
+ jpdViewsService_globalViewSpaces?: Maybe<JpdViewsServiceGlobalViewProjectsResponse>;
142508
142817
  jpdViewsService_globalViewsByCriteria?: Maybe<JpdViewsServiceGlobalViewConnection>;
142509
142818
  jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
142510
- jpdViewsService_hydrateGlobalViews?: Maybe<JpdViewsServiceGlobalViewsHydrationExample>;
142511
142819
  jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
142512
142820
  jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
142513
142821
  jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
@@ -143411,6 +143719,8 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
143411
143719
  containerAri: Scalars['ID']['input'];
143412
143720
  };
143413
143721
  export declare type QueryAgentWorkspace_AvailabilityArgs = {
143722
+ after?: InputMaybe<Scalars['String']['input']>;
143723
+ first?: InputMaybe<Scalars['Int']['input']>;
143414
143724
  input: AgentWorkspaceAvailabilityInput;
143415
143725
  };
143416
143726
  export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
@@ -143426,23 +143736,16 @@ export declare type QueryAgentWorkspace_CapacitySummaryArgs = {
143426
143736
  input: AgentWorkspaceCapacityInput;
143427
143737
  };
143428
143738
  export declare type QueryAgentWorkspace_CatalogArgs = {
143429
- cloudId: Scalars['ID']['input'];
143430
- id: Scalars['ID']['input'];
143431
- maxDepth?: InputMaybe<Scalars['Int']['input']>;
143739
+ input: AgentWorkspaceCatalogInput;
143432
143740
  };
143433
143741
  export declare type QueryAgentWorkspace_CatalogTypeArgs = {
143434
- cloudId: Scalars['ID']['input'];
143435
- id: Scalars['ID']['input'];
143742
+ input: AgentWorkspaceCatalogTypeInput;
143436
143743
  };
143437
143744
  export declare type QueryAgentWorkspace_CatalogTypesArgs = {
143438
- cloudId: Scalars['ID']['input'];
143439
- filter?: InputMaybe<AgentWorkspaceCatalogTypeFilterInput>;
143440
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143745
+ input: AgentWorkspaceCatalogTypesInput;
143441
143746
  };
143442
143747
  export declare type QueryAgentWorkspace_CatalogsArgs = {
143443
- cloudId: Scalars['ID']['input'];
143444
- filter?: InputMaybe<AgentWorkspaceCatalogFilterInput>;
143445
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143748
+ input: AgentWorkspaceCatalogsInput;
143446
143749
  };
143447
143750
  export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
143448
143751
  cloudId: Scalars['ID']['input'];
@@ -143465,32 +143768,22 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
143465
143768
  input: AgentWorkspaceShiftsQueryInput;
143466
143769
  };
143467
143770
  export declare type QueryAgentWorkspace_SkillArgs = {
143468
- cloudId: Scalars['ID']['input'];
143469
- id: Scalars['ID']['input'];
143771
+ input: AgentWorkspaceSkillInput;
143470
143772
  };
143471
143773
  export declare type QueryAgentWorkspace_SkillGapsArgs = {
143472
- cloudId: Scalars['ID']['input'];
143473
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143774
+ input: AgentWorkspaceSkillGapsInput;
143474
143775
  };
143475
143776
  export declare type QueryAgentWorkspace_SkillsArgs = {
143476
- cloudId: Scalars['ID']['input'];
143477
- filter?: InputMaybe<AgentWorkspaceSkillFilterInput>;
143478
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143777
+ input: AgentWorkspaceSkillsInput;
143479
143778
  };
143480
143779
  export declare type QueryAgentWorkspace_UserSkillArgs = {
143481
- cloudId: Scalars['ID']['input'];
143482
- id: Scalars['ID']['input'];
143780
+ input: AgentWorkspaceUserSkillInput;
143483
143781
  };
143484
143782
  export declare type QueryAgentWorkspace_UserSkillsArgs = {
143485
- cloudId: Scalars['ID']['input'];
143486
- filter?: InputMaybe<AgentWorkspaceUserSkillFilterInput>;
143487
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143783
+ input: AgentWorkspaceUserSkillsInput;
143488
143784
  };
143489
143785
  export declare type QueryAgentWorkspace_UsersBySkillsArgs = {
143490
- cloudId: Scalars['ID']['input'];
143491
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143492
- skillIds: Array<Scalars['ID']['input']>;
143493
- skillMatchType?: InputMaybe<AgentWorkspaceSkillMatchType>;
143786
+ input: AgentWorkspaceUsersBySkillsInput;
143494
143787
  };
143495
143788
  export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
143496
143789
  projectAri: Scalars['ID']['input'];
@@ -144071,6 +144364,9 @@ export declare type QueryAvp_GetDashboardsByArisArgs = {
144071
144364
  export declare type QueryAvp_GetFilterExpressionArgs = {
144072
144365
  dashboardAri: Scalars['ID']['input'];
144073
144366
  };
144367
+ export declare type QueryAvpanalytics_GetDataSourceArgs = {
144368
+ input: AvpAnalyticsGetDataSourceInput;
144369
+ };
144074
144370
  export declare type QueryAvpanalytics_GetDataSourcesArgs = {
144075
144371
  cloudId: Scalars['ID']['input'];
144076
144372
  searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
@@ -144297,6 +144593,7 @@ export declare type QueryClassificationLevelArgs = {
144297
144593
  id: Scalars['String']['input'];
144298
144594
  };
144299
144595
  export declare type QueryClassificationLevelsArgs = {
144596
+ contentId?: InputMaybe<Scalars['ID']['input']>;
144300
144597
  reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
144301
144598
  spaceKey?: InputMaybe<Scalars['String']['input']>;
144302
144599
  };
@@ -144360,6 +144657,9 @@ export declare type QueryCommerceExp_NodeArgs = {
144360
144657
  export declare type QueryCommerceExp_PlsArgs = {
144361
144658
  id?: InputMaybe<Scalars['ID']['input']>;
144362
144659
  };
144660
+ export declare type QueryCommerceExp_PoaQueryArgs = {
144661
+ id?: InputMaybe<Scalars['ID']['input']>;
144662
+ };
144363
144663
  export declare type QueryCommerceExp_TaasArgs = {
144364
144664
  id?: InputMaybe<Scalars['ID']['input']>;
144365
144665
  };
@@ -144720,6 +145020,10 @@ export declare type QueryConfluence_NbmTransformationListArgs = {
144720
145020
  first?: InputMaybe<Scalars['Int']['input']>;
144721
145021
  scanId: Scalars['ID']['input'];
144722
145022
  };
145023
+ export declare type QueryConfluence_NbmTransformerConfigArgs = {
145024
+ cloudId: Scalars['ID']['input'];
145025
+ scanId: Scalars['ID']['input'];
145026
+ };
144723
145027
  export declare type QueryConfluence_NbmVerificationResultArgs = {
144724
145028
  after?: InputMaybe<Scalars['String']['input']>;
144725
145029
  cloudId: Scalars['ID']['input'];
@@ -144854,6 +145158,10 @@ export declare type QueryConfluence_SpacePermissionsByCombinationIdArgs = {
144854
145158
  combinationId: Scalars['String']['input'];
144855
145159
  first?: InputMaybe<Scalars['Int']['input']>;
144856
145160
  };
145161
+ export declare type QueryConfluence_SpacePermissionsForSpaceRoleArgs = {
145162
+ cloudId: Scalars['ID']['input'];
145163
+ roleId: Scalars['ID']['input'];
145164
+ };
144857
145165
  export declare type QueryConfluence_SpacePropertyArgs = {
144858
145166
  cloudId: Scalars['ID']['input'];
144859
145167
  key: Scalars['String']['input'];
@@ -145626,6 +145934,12 @@ export declare type QueryDevelopmentInformationArgs = {
145626
145934
  export declare type QueryDevopsmetrics_EchoArgs = {
145627
145935
  message: Scalars['String']['input'];
145628
145936
  };
145937
+ export declare type QueryDlp_GetDetectionContentSummaryArgs = {
145938
+ cursor?: InputMaybe<Scalars['String']['input']>;
145939
+ orgId?: InputMaybe<Scalars['String']['input']>;
145940
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
145941
+ scope?: InputMaybe<DlpScopeInput>;
145942
+ };
145629
145943
  export declare type QueryDlp_GetDetectorClassificationMappingArgs = {
145630
145944
  cursor?: InputMaybe<Scalars['String']['input']>;
145631
145945
  orgId?: InputMaybe<Scalars['String']['input']>;
@@ -145902,6 +146216,10 @@ export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs =
145902
146216
  first?: InputMaybe<Scalars['Int']['input']>;
145903
146217
  last?: InputMaybe<Scalars['Int']['input']>;
145904
146218
  };
146219
+ export declare type QueryGravity_ImportIdeasArgs = {
146220
+ cloudId: Scalars['ID']['input'];
146221
+ input: GravityImportIdeasInput;
146222
+ };
145905
146223
  export declare type QueryGravity_JpdImportIdeasArgs = {
145906
146224
  cloudId?: InputMaybe<Scalars['ID']['input']>;
145907
146225
  input: JpdImportIdeasInput;
@@ -146271,19 +146589,18 @@ export declare type QueryJpdViewsService_EchoArgs = {
146271
146589
  export declare type QueryJpdViewsService_GlobalViewArgs = {
146272
146590
  id: Scalars['ID']['input'];
146273
146591
  };
146592
+ export declare type QueryJpdViewsService_GlobalViewSpacesArgs = {
146593
+ id: Scalars['ID']['input'];
146594
+ };
146274
146595
  export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
146275
146596
  cloudId: Scalars['ID']['input'];
146276
146597
  filter: JpdViewsServiceGlobalViewsByCriteriaInput;
146277
146598
  pagination: JpdViewsServicePaginationInput;
146278
- sortBy?: InputMaybe<JpdViewsServiceSortByInput>;
146279
146599
  };
146280
146600
  export declare type QueryJpdViewsService_GlobalViewsByIdArgs = {
146281
146601
  cloudId: Scalars['ID']['input'];
146282
146602
  ids: Array<Scalars['ID']['input']>;
146283
146603
  };
146284
- export declare type QueryJpdViewsService_HydrateGlobalViewsArgs = {
146285
- cloudId: Scalars['ID']['input'];
146286
- };
146287
146604
  export declare type QueryJpdViewsService_HydrateUserArgs = {
146288
146605
  cloudId: Scalars['ID']['input'];
146289
146606
  };
@@ -148550,6 +148867,7 @@ export declare enum RateLimitingCurrency {
148550
148867
  HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
148551
148868
  HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
148552
148869
  JpdContainerQueryCurrency = "JPD_CONTAINER_QUERY_CURRENCY",
148870
+ JpdContainerWriteCurrency = "JPD_CONTAINER_WRITE_CURRENCY",
148553
148871
  KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
148554
148872
  PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
148555
148873
  PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
@@ -150574,6 +150892,7 @@ export declare type SearchItemConnection = {
150574
150892
  interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
150575
150893
  pageInfo: PageInfo;
150576
150894
  queryInfo?: Maybe<SearchQueryInfo>;
150895
+ searchSessionId?: Maybe<Scalars['String']['output']>;
150577
150896
  totalCount?: Maybe<Scalars['Int']['output']>;
150578
150897
  totalCounts: Array<SearchProductCount>;
150579
150898
  };
@@ -150644,6 +150963,7 @@ export declare type SearchLinkedResult = SearchResult & {
150644
150963
  url: Scalars['String']['output'];
150645
150964
  };
150646
150965
  export declare enum SearchLinkedResultCategory {
150966
+ Child = "child",
150647
150967
  MentionedBy = "mentionedBy",
150648
150968
  Mentions = "mentions",
150649
150969
  Similar = "similar"
@@ -150708,6 +151028,7 @@ export declare type SearchQueryApiAsyncSearchArgs = {
150708
151028
  };
150709
151029
  export declare type SearchQueryApiConfigurationArgs = {
150710
151030
  cloudId: Scalars['ID']['input'];
151031
+ experience?: InputMaybe<Scalars['String']['input']>;
150711
151032
  };
150712
151033
  export declare type SearchQueryApiRecentArgs = {
150713
151034
  analytics?: InputMaybe<SearchAnalyticsInput>;
@@ -151324,8 +151645,15 @@ export declare enum SearchResultType {
151324
151645
  Tag = "tag",
151325
151646
  Type = "type",
151326
151647
  Unrecognised = "unrecognised",
151648
+ Video = "video",
151327
151649
  Whiteboard = "whiteboard"
151328
151650
  }
151651
+ export declare type SearchSalesforceFilters = {
151652
+ closeDate?: InputMaybe<Scalars['String']['input']>;
151653
+ isClosed?: InputMaybe<Scalars['Boolean']['input']>;
151654
+ owners?: InputMaybe<Array<Scalars['String']['input']>>;
151655
+ stage?: InputMaybe<Array<Scalars['String']['input']>>;
151656
+ };
151329
151657
  export declare type SearchSortInput = {
151330
151658
  field: Scalars['String']['input'];
151331
151659
  key?: InputMaybe<Scalars['String']['input']>;
@@ -151361,6 +151689,7 @@ export declare type SearchThirdPartyFilter = {
151361
151689
  labels?: InputMaybe<Array<Scalars['String']['input']>>;
151362
151690
  lastUpdatedBy?: InputMaybe<Array<Scalars['String']['input']>>;
151363
151691
  range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
151692
+ salesforceFilters?: InputMaybe<SearchSalesforceFilters>;
151364
151693
  subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
151365
151694
  teamsFilters?: InputMaybe<SearchTeamsFilters>;
151366
151695
  thirdPartyProducts?: InputMaybe<Array<SearchThirdPartyProduct>>;
@@ -151371,9 +151700,12 @@ export declare type SearchThirdPartyMetadata = {
151371
151700
  __typename?: 'SearchThirdPartyMetadata';
151372
151701
  connectionId?: Maybe<Scalars['String']['output']>;
151373
151702
  datasourceId?: Maybe<Scalars['String']['output']>;
151703
+ entityTypes?: Maybe<Array<Scalars['String']['output']>>;
151704
+ environmentType?: Maybe<Scalars['String']['output']>;
151374
151705
  integrationARI: Scalars['String']['output'];
151375
151706
  isImpersonationAuthEnabled?: Maybe<Scalars['Boolean']['output']>;
151376
151707
  isUserOAuthed: Scalars['Boolean']['output'];
151708
+ lightIcon?: Maybe<Scalars['String']['output']>;
151377
151709
  name: Scalars['String']['output'];
151378
151710
  outboundAuthUrl: Scalars['String']['output'];
151379
151711
  providerId?: Maybe<Scalars['String']['output']>;
@@ -176433,6 +176765,7 @@ export declare type TownsquareGoalCustomFieldsArgs = {
176433
176765
  export declare type TownsquareGoalFocusAreasArgs = {
176434
176766
  after?: InputMaybe<Scalars['String']['input']>;
176435
176767
  first?: InputMaybe<Scalars['Int']['input']>;
176768
+ queryContext?: InputMaybe<Scalars['String']['input']>;
176436
176769
  };
176437
176770
  export declare type TownsquareGoalHighlightsArgs = {
176438
176771
  after?: InputMaybe<Scalars['String']['input']>;
@@ -177808,6 +178141,7 @@ export declare type TownsquareProjectDependenciesArgs = {
177808
178141
  export declare type TownsquareProjectFocusAreasArgs = {
177809
178142
  after?: InputMaybe<Scalars['String']['input']>;
177810
178143
  first?: InputMaybe<Scalars['Int']['input']>;
178144
+ queryContext?: InputMaybe<Scalars['String']['input']>;
177811
178145
  };
177812
178146
  export declare type TownsquareProjectGoalsArgs = {
177813
178147
  after?: InputMaybe<Scalars['String']['input']>;
@@ -177825,6 +178159,7 @@ export declare type TownsquareProjectHighlightsArgs = {
177825
178159
  export declare type TownsquareProjectLinkedJiraWorkItemsArgs = {
177826
178160
  after?: InputMaybe<Scalars['String']['input']>;
177827
178161
  first?: InputMaybe<Scalars['Int']['input']>;
178162
+ queryContext?: InputMaybe<Scalars['String']['input']>;
177828
178163
  sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
177829
178164
  };
177830
178165
  export declare type TownsquareProjectLinksArgs = {
@@ -181862,6 +182197,7 @@ export declare type TrelloMutationApi = {
181862
182197
  createMemberAiRule?: Maybe<TrelloCreateMemberAiRulePayload>;
181863
182198
  createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
181864
182199
  createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
182200
+ createWorkOverviewDashboard?: Maybe<TrelloWorkOverviewDashboardPayload>;
181865
182201
  createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
181866
182202
  deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
181867
182203
  deleteBoardBackground?: Maybe<TrelloDeleteBoardBackgroundPayload>;
@@ -181968,6 +182304,9 @@ export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
181968
182304
  export declare type TrelloMutationApiCreatePlannerCalendarEventArgs = {
181969
182305
  input: TrelloCreatePlannerCalendarEventInput;
181970
182306
  };
182307
+ export declare type TrelloMutationApiCreateWorkOverviewDashboardArgs = {
182308
+ input: TrelloWorkOverviewDashboardInput;
182309
+ };
181971
182310
  export declare type TrelloMutationApiCreateWorkspaceTagArgs = {
181972
182311
  input: TrelloCreateWorkspaceTagInput;
181973
182312
  };
@@ -182703,6 +183042,7 @@ export declare type TrelloPlannerPrimaryCalendarUpdated = {
182703
183042
  isPrimary?: Maybe<Scalars['Boolean']['output']>;
182704
183043
  objectId?: Maybe<Scalars['ID']['output']>;
182705
183044
  providerCalendarId?: Maybe<Scalars['ID']['output']>;
183045
+ readOnly?: Maybe<Scalars['Boolean']['output']>;
182706
183046
  timezone?: Maybe<Scalars['String']['output']>;
182707
183047
  title?: Maybe<Scalars['String']['output']>;
182708
183048
  type?: Maybe<TrelloSupportedPlannerProviders>;
@@ -182772,6 +183112,7 @@ export declare type TrelloPlannerUpdated = {
182772
183112
  __typename?: 'TrelloPlannerUpdated';
182773
183113
  accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
182774
183114
  cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnectionUpdated>;
183115
+ dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettings>;
182775
183116
  id: Scalars['ID']['output'];
182776
183117
  onBoardWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateBoardDeleted>>;
182777
183118
  onCardWithDueDateDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateDeleted>>;
@@ -182980,6 +183321,7 @@ export declare type TrelloQueryApi = {
182980
183321
  userUnrestrictedAccessSummary?: Maybe<TrelloUserUnrestrictedAccessSummary>;
182981
183322
  userWorkspaceAccessSummary?: Maybe<TrelloWorkspaceAccessSummary>;
182982
183323
  usersById?: Maybe<Array<Maybe<TrelloMember>>>;
183324
+ workOverviewDashboardJob?: Maybe<TrelloWorkOverviewDashboardJob>;
182983
183325
  workspace?: Maybe<TrelloWorkspace>;
182984
183326
  };
182985
183327
  export declare type TrelloQueryApiApplicationArgs = {
@@ -183101,6 +183443,9 @@ export declare type TrelloQueryApiUserWorkspaceAccessSummaryArgs = {
183101
183443
  export declare type TrelloQueryApiUsersByIdArgs = {
183102
183444
  ids: Array<Scalars['ID']['input']>;
183103
183445
  };
183446
+ export declare type TrelloQueryApiWorkOverviewDashboardJobArgs = {
183447
+ id: Scalars['ID']['input'];
183448
+ };
183104
183449
  export declare type TrelloQueryApiWorkspaceArgs = {
183105
183450
  id: Scalars['ID']['input'];
183106
183451
  };
@@ -183373,6 +183718,7 @@ export declare type TrelloSubscriptionApi = {
183373
183718
  onInboxUpdated?: Maybe<TrelloInboxUpdated>;
183374
183719
  onMemberPlannerEventCardsUpdated?: Maybe<TrelloMemberPlannerEventCardsUpdated>;
183375
183720
  onMemberUpdated?: Maybe<TrelloMemberUpdated>;
183721
+ onWorkOverviewDashboardJobUpdated?: Maybe<TrelloWorkOverviewDashboardJob>;
183376
183722
  onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
183377
183723
  };
183378
183724
  export declare type TrelloSubscriptionApiOnBoardCardSetUpdatedArgs = {
@@ -183395,6 +183741,9 @@ export declare type TrelloSubscriptionApiOnMemberPlannerEventCardsUpdatedArgs =
183395
183741
  export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
183396
183742
  id: Scalars['ID']['input'];
183397
183743
  };
183744
+ export declare type TrelloSubscriptionApiOnWorkOverviewDashboardJobUpdatedArgs = {
183745
+ id: Scalars['ID']['input'];
183746
+ };
183398
183747
  export declare type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
183399
183748
  id: Scalars['ID']['input'];
183400
183749
  };
@@ -183692,6 +184041,7 @@ export declare type TrelloUpdateCardNameInput = {
183692
184041
  export declare type TrelloUpdateCardNamePayload = Payload & {
183693
184042
  __typename?: 'TrelloUpdateCardNamePayload';
183694
184043
  card?: Maybe<TrelloCard>;
184044
+ cardOrInboxCard?: Maybe<TrelloBaseCard>;
183695
184045
  errors?: Maybe<Array<MutationError>>;
183696
184046
  success: Scalars['Boolean']['output'];
183697
184047
  };
@@ -183907,6 +184257,27 @@ export declare type TrelloWatchCardPayload = Payload & {
183907
184257
  errors?: Maybe<Array<MutationError>>;
183908
184258
  success: Scalars['Boolean']['output'];
183909
184259
  };
184260
+ export declare type TrelloWorkOverviewDashboardInput = {
184261
+ workspaceId: Scalars['ID']['input'];
184262
+ };
184263
+ export declare type TrelloWorkOverviewDashboardJob = {
184264
+ __typename?: 'TrelloWorkOverviewDashboardJob';
184265
+ board?: Maybe<TrelloBoard>;
184266
+ objectId: Scalars['ID']['output'];
184267
+ status?: Maybe<TrelloWorkOverviewDashboardJobStatus>;
184268
+ };
184269
+ export declare enum TrelloWorkOverviewDashboardJobStatus {
184270
+ Completed = "COMPLETED",
184271
+ Creating = "CREATING",
184272
+ Failed = "FAILED",
184273
+ Pending = "PENDING"
184274
+ }
184275
+ export declare type TrelloWorkOverviewDashboardPayload = Payload & {
184276
+ __typename?: 'TrelloWorkOverviewDashboardPayload';
184277
+ errors?: Maybe<Array<MutationError>>;
184278
+ job?: Maybe<TrelloWorkOverviewDashboardJob>;
184279
+ success: Scalars['Boolean']['output'];
184280
+ };
183910
184281
  export declare type TrelloWorkspace = Node & {
183911
184282
  __typename?: 'TrelloWorkspace';
183912
184283
  aiEligible?: Maybe<Scalars['Boolean']['output']>;