@forge/cli-shared 8.15.3-next.3-experimental-bf21d1e → 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>;
@@ -1390,6 +1416,16 @@ export declare type AvpToggleCanvasElementExpandedPayload = Payload & {
1390
1416
  errors?: Maybe<Array<MutationError>>;
1391
1417
  success: Scalars['Boolean']['output'];
1392
1418
  };
1419
+ export declare type AvpTrackDashboardViewInput = {
1420
+ dashboardAri: Scalars['ID']['input'];
1421
+ hostingProduct: Scalars['String']['input'];
1422
+ workspaceId: Scalars['String']['input'];
1423
+ };
1424
+ export declare type AvpTrackDashboardViewPayload = Payload & {
1425
+ __typename?: 'AVPTrackDashboardViewPayload';
1426
+ errors?: Maybe<Array<MutationError>>;
1427
+ success: Scalars['Boolean']['output'];
1428
+ };
1393
1429
  export declare type AvpUpdateChartInput = {
1394
1430
  chart: AvpChartInput;
1395
1431
  chartAri: Scalars['ID']['input'];
@@ -4826,6 +4862,22 @@ export declare type AgentWorkspaceAgentAvailability = {
4826
4862
  teamNames: Array<Scalars['String']['output']>;
4827
4863
  teams?: Maybe<Array<TeamV2>>;
4828
4864
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
4865
+ updatedBy?: Maybe<Scalars['ID']['output']>;
4866
+ };
4867
+ export declare type AgentWorkspaceAgentCapacity = {
4868
+ __typename?: 'AgentWorkspaceAgentCapacity';
4869
+ agent: AgentWorkspaceAgent;
4870
+ availableSlots: Scalars['Int']['output'];
4871
+ currentLoad: Scalars['Int']['output'];
4872
+ maxCapacity: Scalars['Int']['output'];
4873
+ status: AgentWorkspaceCapacityStatus;
4874
+ updatedAt: Scalars['DateTime']['output'];
4875
+ utilizationPercent: Scalars['Float']['output'];
4876
+ };
4877
+ export declare type AgentWorkspaceAgentCapacityEdge = {
4878
+ __typename?: 'AgentWorkspaceAgentCapacityEdge';
4879
+ cursor: Scalars['String']['output'];
4880
+ node: AgentWorkspaceAgentCapacity;
4829
4881
  };
4830
4882
  export declare type AgentWorkspaceAgentShifts = {
4831
4883
  __typename?: 'AgentWorkspaceAgentShifts';
@@ -4850,6 +4902,8 @@ export declare type AgentWorkspaceAgentsPageInfo = {
4850
4902
  export declare type AgentWorkspaceAssignSkillInput = {
4851
4903
  cloudId: Scalars['ID']['input'];
4852
4904
  proficiencyLevel: Scalars['Int']['input'];
4905
+ projectId?: InputMaybe<Scalars['ID']['input']>;
4906
+ projectKey?: InputMaybe<Scalars['String']['input']>;
4853
4907
  skillId: Scalars['ID']['input'];
4854
4908
  userId: Scalars['ID']['input'];
4855
4909
  };
@@ -4857,15 +4911,20 @@ export declare type AgentWorkspaceAssignSkillPayload = {
4857
4911
  __typename?: 'AgentWorkspaceAssignSkillPayload';
4858
4912
  error?: Maybe<Scalars['String']['output']>;
4859
4913
  success: Scalars['Boolean']['output'];
4860
- user?: Maybe<AgentWorkspaceAgent>;
4861
4914
  userSkill?: Maybe<AgentWorkspaceUserSkill>;
4862
4915
  };
4863
4916
  export declare type AgentWorkspaceAvailabilityConnection = {
4864
4917
  __typename?: 'AgentWorkspaceAvailabilityConnection';
4918
+ edges: Array<AgentWorkspaceAvailabilityEdge>;
4865
4919
  nodes: Array<AgentWorkspaceAgentAvailability>;
4866
4920
  pageInfo: AgentWorkspaceAvailabilityPageInfo;
4867
4921
  summary: AgentWorkspaceAvailabilitySummary;
4868
4922
  };
4923
+ export declare type AgentWorkspaceAvailabilityEdge = {
4924
+ __typename?: 'AgentWorkspaceAvailabilityEdge';
4925
+ cursor: Scalars['String']['output'];
4926
+ node: AgentWorkspaceAgentAvailability;
4927
+ };
4869
4928
  export declare type AgentWorkspaceAvailabilityError = {
4870
4929
  __typename?: 'AgentWorkspaceAvailabilityError';
4871
4930
  code: Scalars['String']['output'];
@@ -4885,9 +4944,11 @@ export declare type AgentWorkspaceAvailabilityInput = {
4885
4944
  export declare type AgentWorkspaceAvailabilityPageInfo = {
4886
4945
  __typename?: 'AgentWorkspaceAvailabilityPageInfo';
4887
4946
  currentPage: Scalars['Int']['output'];
4947
+ endCursor?: Maybe<Scalars['String']['output']>;
4888
4948
  hasNextPage: Scalars['Boolean']['output'];
4889
4949
  hasPreviousPage: Scalars['Boolean']['output'];
4890
4950
  pageSize: Scalars['Int']['output'];
4951
+ startCursor?: Maybe<Scalars['String']['output']>;
4891
4952
  totalCount: Scalars['Int']['output'];
4892
4953
  totalPages: Scalars['Int']['output'];
4893
4954
  };
@@ -4913,6 +4974,11 @@ export declare type AgentWorkspaceAvailabilitySummary = {
4913
4974
  onBreak: Scalars['Int']['output'];
4914
4975
  onDuty: Scalars['Int']['output'];
4915
4976
  };
4977
+ export declare type AgentWorkspaceCapacityConnection = {
4978
+ __typename?: 'AgentWorkspaceCapacityConnection';
4979
+ edges: Array<AgentWorkspaceAgentCapacityEdge>;
4980
+ pageInfo: AgentWorkspaceCapacityPageInfo;
4981
+ };
4916
4982
  export declare type AgentWorkspaceCapacityError = {
4917
4983
  __typename?: 'AgentWorkspaceCapacityError';
4918
4984
  code: Scalars['String']['output'];
@@ -4922,12 +4988,18 @@ export declare type AgentWorkspaceCapacityError = {
4922
4988
  export declare type AgentWorkspaceCapacityInput = {
4923
4989
  agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4924
4990
  cloudId: Scalars['ID']['input'];
4925
- page?: InputMaybe<Scalars['Int']['input']>;
4926
- pageSize?: InputMaybe<Scalars['Int']['input']>;
4927
4991
  projectKey: Scalars['String']['input'];
4928
4992
  statuses?: InputMaybe<Array<AgentWorkspaceCapacityStatus>>;
4929
4993
  teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4930
4994
  };
4995
+ export declare type AgentWorkspaceCapacityPageInfo = {
4996
+ __typename?: 'AgentWorkspaceCapacityPageInfo';
4997
+ endCursor?: Maybe<Scalars['String']['output']>;
4998
+ hasNextPage: Scalars['Boolean']['output'];
4999
+ hasPreviousPage: Scalars['Boolean']['output'];
5000
+ startCursor?: Maybe<Scalars['String']['output']>;
5001
+ totalCount: Scalars['Int']['output'];
5002
+ };
4931
5003
  export declare enum AgentWorkspaceCapacityStatus {
4932
5004
  High = "HIGH",
4933
5005
  Idle = "IDLE",
@@ -4974,6 +5046,12 @@ export declare type AgentWorkspaceCatalogCreateResponse = {
4974
5046
  error?: Maybe<Scalars['String']['output']>;
4975
5047
  success: Scalars['Boolean']['output'];
4976
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
+ };
4977
5055
  export declare type AgentWorkspaceCatalogDeleteResponse = {
4978
5056
  __typename?: 'AgentWorkspaceCatalogDeleteResponse';
4979
5057
  deletedCatalogId?: Maybe<Scalars['ID']['output']>;
@@ -4990,6 +5068,13 @@ export declare type AgentWorkspaceCatalogFilterInput = {
4990
5068
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
4991
5069
  nameContains?: InputMaybe<Scalars['String']['input']>;
4992
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
+ };
4993
5078
  export declare type AgentWorkspaceCatalogType = {
4994
5079
  __typename?: 'AgentWorkspaceCatalogType';
4995
5080
  catalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
@@ -5019,6 +5104,12 @@ export declare type AgentWorkspaceCatalogTypeCreateResponse = {
5019
5104
  error?: Maybe<Scalars['String']['output']>;
5020
5105
  success: Scalars['Boolean']['output'];
5021
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
+ };
5022
5113
  export declare type AgentWorkspaceCatalogTypeDeleteResponse = {
5023
5114
  __typename?: 'AgentWorkspaceCatalogTypeDeleteResponse';
5024
5115
  deletedCatalogTypeId?: Maybe<Scalars['ID']['output']>;
@@ -5034,18 +5125,38 @@ export declare type AgentWorkspaceCatalogTypeFilterInput = {
5034
5125
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
5035
5126
  nameContains?: InputMaybe<Scalars['String']['input']>;
5036
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
+ };
5037
5134
  export declare type AgentWorkspaceCatalogTypeUpdateResponse = {
5038
5135
  __typename?: 'AgentWorkspaceCatalogTypeUpdateResponse';
5039
5136
  catalogType?: Maybe<AgentWorkspaceCatalogType>;
5040
5137
  error?: Maybe<Scalars['String']['output']>;
5041
5138
  success: Scalars['Boolean']['output'];
5042
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
+ };
5043
5147
  export declare type AgentWorkspaceCatalogUpdateResponse = {
5044
5148
  __typename?: 'AgentWorkspaceCatalogUpdateResponse';
5045
5149
  catalog?: Maybe<AgentWorkspaceCatalog>;
5046
5150
  error?: Maybe<Scalars['String']['output']>;
5047
5151
  success: Scalars['Boolean']['output'];
5048
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
+ };
5049
5160
  export declare type AgentWorkspaceCreateCatalogInput = {
5050
5161
  catalogTypeId: Scalars['ID']['input'];
5051
5162
  cloudId: Scalars['ID']['input'];
@@ -5053,12 +5164,16 @@ export declare type AgentWorkspaceCreateCatalogInput = {
5053
5164
  name: Scalars['String']['input'];
5054
5165
  parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5055
5166
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5167
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5168
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5056
5169
  };
5057
5170
  export declare type AgentWorkspaceCreateCatalogTypeInput = {
5058
5171
  cloudId: Scalars['ID']['input'];
5059
5172
  description?: InputMaybe<Scalars['String']['input']>;
5060
5173
  name: Scalars['String']['input'];
5061
5174
  parentTypeId?: InputMaybe<Scalars['ID']['input']>;
5175
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5176
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5062
5177
  };
5063
5178
  export declare type AgentWorkspaceCreateScheduleInput = {
5064
5179
  agentIds: Array<Scalars['ID']['input']>;
@@ -5072,6 +5187,7 @@ export declare type AgentWorkspaceCreateScheduleInput = {
5072
5187
  recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
5073
5188
  startTime: Scalars['DateTime']['input'];
5074
5189
  teamId?: InputMaybe<Scalars['ID']['input']>;
5190
+ timezone?: InputMaybe<Scalars['String']['input']>;
5075
5191
  };
5076
5192
  export declare type AgentWorkspaceCreateSchedulePayload = {
5077
5193
  __typename?: 'AgentWorkspaceCreateSchedulePayload';
@@ -5109,6 +5225,8 @@ export declare type AgentWorkspaceDeleteSchedulePayload = {
5109
5225
  };
5110
5226
  export declare type AgentWorkspaceDeleteUserSkillInput = {
5111
5227
  cloudId: Scalars['ID']['input'];
5228
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5229
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5112
5230
  skillId: Scalars['ID']['input'];
5113
5231
  userId: Scalars['ID']['input'];
5114
5232
  };
@@ -5117,7 +5235,6 @@ export declare type AgentWorkspaceDeleteUserSkillPayload = {
5117
5235
  deletedUserSkillId?: Maybe<Scalars['ID']['output']>;
5118
5236
  error?: Maybe<Scalars['String']['output']>;
5119
5237
  success: Scalars['Boolean']['output'];
5120
- user?: Maybe<AgentWorkspaceAgent>;
5121
5238
  };
5122
5239
  export declare type AgentWorkspacePageInfo = {
5123
5240
  __typename?: 'AgentWorkspacePageInfo';
@@ -5173,6 +5290,7 @@ export declare type AgentWorkspaceSchedule = {
5173
5290
  recurring: Scalars['Boolean']['output'];
5174
5291
  startTime: Scalars['DateTime']['output'];
5175
5292
  teamId?: Maybe<Scalars['ID']['output']>;
5293
+ timezone: Scalars['String']['output'];
5176
5294
  updatedAt: Scalars['DateTime']['output'];
5177
5295
  };
5178
5296
  export declare type AgentWorkspaceScheduleError = {
@@ -5260,7 +5378,6 @@ export declare type AgentWorkspaceSkill = {
5260
5378
  name: Scalars['String']['output'];
5261
5379
  parentCatalogs: Array<AgentWorkspaceCatalog>;
5262
5380
  proficiencyDefinitions: Array<Scalars['String']['output']>;
5263
- userSkillIds: Array<Scalars['ID']['output']>;
5264
5381
  userSkills?: Maybe<Array<AgentWorkspaceUserSkill>>;
5265
5382
  };
5266
5383
  export declare type AgentWorkspaceSkillUserSkillsArgs = {
@@ -5278,6 +5395,8 @@ export declare type AgentWorkspaceSkillCreateInput = {
5278
5395
  name: Scalars['String']['input'];
5279
5396
  parentCatalogIds: Array<Scalars['ID']['input']>;
5280
5397
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5398
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5399
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5281
5400
  };
5282
5401
  export declare type AgentWorkspaceSkillCreatePayload = {
5283
5402
  __typename?: 'AgentWorkspaceSkillCreatePayload';
@@ -5285,6 +5404,12 @@ export declare type AgentWorkspaceSkillCreatePayload = {
5285
5404
  skill?: Maybe<AgentWorkspaceSkill>;
5286
5405
  success: Scalars['Boolean']['output'];
5287
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
+ };
5288
5413
  export declare type AgentWorkspaceSkillDeletePayload = {
5289
5414
  __typename?: 'AgentWorkspaceSkillDeletePayload';
5290
5415
  deletedSkillId?: Maybe<Scalars['ID']['output']>;
@@ -5301,15 +5426,31 @@ export declare type AgentWorkspaceSkillFilterInput = {
5301
5426
  nameContains?: InputMaybe<Scalars['String']['input']>;
5302
5427
  parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5303
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
+ };
5304
5441
  export declare enum AgentWorkspaceSkillMatchType {
5305
5442
  All = "ALL",
5306
5443
  Any = "ANY"
5307
5444
  }
5308
5445
  export declare type AgentWorkspaceSkillUpdateInput = {
5446
+ cloudId: Scalars['ID']['input'];
5309
5447
  description?: InputMaybe<Scalars['String']['input']>;
5448
+ id: Scalars['ID']['input'];
5310
5449
  name?: InputMaybe<Scalars['String']['input']>;
5311
5450
  parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5312
5451
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5452
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5453
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5313
5454
  };
5314
5455
  export declare type AgentWorkspaceSkillUpdatePayload = {
5315
5456
  __typename?: 'AgentWorkspaceSkillUpdatePayload';
@@ -5317,17 +5458,32 @@ export declare type AgentWorkspaceSkillUpdatePayload = {
5317
5458
  skill?: Maybe<AgentWorkspaceSkill>;
5318
5459
  success: Scalars['Boolean']['output'];
5319
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
+ };
5320
5468
  export declare type AgentWorkspaceUpdateCatalogInput = {
5321
5469
  catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
5470
+ cloudId: Scalars['ID']['input'];
5322
5471
  description?: InputMaybe<Scalars['String']['input']>;
5472
+ id: Scalars['ID']['input'];
5323
5473
  name?: InputMaybe<Scalars['String']['input']>;
5324
5474
  parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5325
5475
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5476
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5477
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5326
5478
  };
5327
5479
  export declare type AgentWorkspaceUpdateCatalogTypeInput = {
5480
+ cloudId: Scalars['ID']['input'];
5328
5481
  description?: InputMaybe<Scalars['String']['input']>;
5482
+ id: Scalars['ID']['input'];
5329
5483
  name?: InputMaybe<Scalars['String']['input']>;
5330
5484
  parentTypeId?: InputMaybe<Scalars['ID']['input']>;
5485
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5486
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5331
5487
  };
5332
5488
  export declare type AgentWorkspaceUpdateScheduleInput = {
5333
5489
  agentIds: Array<Scalars['ID']['input']>;
@@ -5343,6 +5499,7 @@ export declare type AgentWorkspaceUpdateScheduleInput = {
5343
5499
  scheduleId: Scalars['ID']['input'];
5344
5500
  startTime: Scalars['DateTime']['input'];
5345
5501
  teamId?: InputMaybe<Scalars['ID']['input']>;
5502
+ timezone?: InputMaybe<Scalars['String']['input']>;
5346
5503
  };
5347
5504
  export declare type AgentWorkspaceUpdateSchedulePayload = {
5348
5505
  __typename?: 'AgentWorkspaceUpdateSchedulePayload';
@@ -5354,6 +5511,8 @@ export declare type AgentWorkspaceUpdateSchedulePayload = {
5354
5511
  export declare type AgentWorkspaceUpdateSkillProficiencyInput = {
5355
5512
  cloudId: Scalars['ID']['input'];
5356
5513
  proficiencyLevel: Scalars['Int']['input'];
5514
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5515
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5357
5516
  skillId: Scalars['ID']['input'];
5358
5517
  userId: Scalars['ID']['input'];
5359
5518
  };
@@ -5361,7 +5520,6 @@ export declare type AgentWorkspaceUpdateSkillProficiencyPayload = {
5361
5520
  __typename?: 'AgentWorkspaceUpdateSkillProficiencyPayload';
5362
5521
  error?: Maybe<Scalars['String']['output']>;
5363
5522
  success: Scalars['Boolean']['output'];
5364
- user?: Maybe<AgentWorkspaceAgent>;
5365
5523
  userSkill?: Maybe<AgentWorkspaceUserSkill>;
5366
5524
  };
5367
5525
  export declare type AgentWorkspaceUserConnection = {
@@ -5399,6 +5557,27 @@ export declare type AgentWorkspaceUserSkillFilterInput = {
5399
5557
  skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5400
5558
  userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5401
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
+ };
5402
5581
  export declare enum AiCoreApiQuestionType {
5403
5582
  DraftDocument = "DRAFT_DOCUMENT",
5404
5583
  KnowledgeBase = "KNOWLEDGE_BASE"
@@ -9748,6 +9927,27 @@ export declare type AssetsUserValueData = {
9748
9927
  key?: Maybe<Scalars['String']['output']>;
9749
9928
  name?: Maybe<Scalars['String']['output']>;
9750
9929
  };
9930
+ export declare type AssetsVerticalBundle = {
9931
+ __typename?: 'AssetsVerticalBundle';
9932
+ id: Scalars['ID']['output'];
9933
+ name: Scalars['String']['output'];
9934
+ schemas?: Maybe<Array<AssetsVerticalSchemaTemplate>>;
9935
+ type: AssetsVerticalBundleType;
9936
+ };
9937
+ export declare enum AssetsVerticalBundleType {
9938
+ Cdm = "CDM",
9939
+ Osc = "OSC"
9940
+ }
9941
+ export declare type AssetsVerticalSchemaTemplate = {
9942
+ __typename?: 'AssetsVerticalSchemaTemplate';
9943
+ description?: Maybe<Scalars['String']['output']>;
9944
+ displayName: Scalars['String']['output'];
9945
+ id: Scalars['ID']['output'];
9946
+ key: Scalars['String']['output'];
9947
+ name: Scalars['String']['output'];
9948
+ objectTypeCount?: Maybe<Scalars['Int']['output']>;
9949
+ type: Scalars['String']['output'];
9950
+ };
9751
9951
  export declare type AssignIssueParentInput = {
9752
9952
  boardId: Scalars['ID']['input'];
9753
9953
  issueIds: Array<Scalars['ID']['input']>;
@@ -10113,6 +10313,9 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
10113
10313
  export declare type BlockServiceBatchCreateBlocksInput = {
10114
10314
  blocks: Array<BlockServiceCreateBlockInput>;
10115
10315
  };
10316
+ export declare type BlockServiceBatchDeleteBlocksInput = {
10317
+ blocks: Array<BlockServiceDeleteBlockInput>;
10318
+ };
10116
10319
  export declare type BlockServiceBatchRetrieveBlocksInput = {
10117
10320
  blockAris: Array<Scalars['String']['input']>;
10118
10321
  blockIdentifiers?: InputMaybe<Array<BlockServiceBlockIdentifierInput>>;
@@ -12960,6 +13163,7 @@ export declare type CcpUsageUpdateCadence = {
12960
13163
  };
12961
13164
  export declare type ChangeManagementGlobalRiskAssessmentSettingsPayload = {
12962
13165
  __typename?: 'ChangeManagementGlobalRiskAssessmentSettingsPayload';
13166
+ aiRiskAssessmentEnabled?: Maybe<Scalars['Boolean']['output']>;
12963
13167
  isEnabled?: Maybe<Scalars['Boolean']['output']>;
12964
13168
  };
12965
13169
  export declare type ChangeManagementLastRovoRiskAssessmentPayload = {
@@ -12976,6 +13180,7 @@ export declare type ChangeManagementRovoRiskAssessmentSettingsPayload = {
12976
13180
  knowledgeBases?: Maybe<Array<Scalars['String']['output']>>;
12977
13181
  };
12978
13182
  export declare type ChangeManagementUpdateGlobalRiskAssessmentSettingsInput = {
13183
+ aiRiskAssessmentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
12979
13184
  cloudId: Scalars['ID']['input'];
12980
13185
  isEnabled: Scalars['Boolean']['input'];
12981
13186
  projectId: Scalars['String']['input'];
@@ -14110,8 +14315,7 @@ export declare type CommerceExpBillingPeriodDetails = {
14110
14315
  billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
14111
14316
  nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
14112
14317
  };
14113
- export declare type CommerceExpBillingPeriodItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
14114
- export declare type CommerceExpBillingScheduleItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByBillingPeriodLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
14318
+ export declare type CommerceExpBillingScheduleItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
14115
14319
  export declare type CommerceExpBuyCurrentTrialInput = {
14116
14320
  entitlementId: Scalars['String']['input'];
14117
14321
  };
@@ -14150,6 +14354,11 @@ export declare type CommerceExpCardPaymentMethodPaginatedEntitlementsArgs = {
14150
14354
  first?: InputMaybe<Scalars['Int']['input']>;
14151
14355
  last?: InputMaybe<Scalars['Int']['input']>;
14152
14356
  };
14357
+ export declare type CommerceExpCcpChargeElementTransition = {
14358
+ __typename?: 'CommerceExpCcpChargeElementTransition';
14359
+ from?: Maybe<Scalars['String']['output']>;
14360
+ to?: Maybe<Scalars['String']['output']>;
14361
+ };
14153
14362
  export declare type CommerceExpCcpCreditNote = {
14154
14363
  __typename?: 'CommerceExpCcpCreditNote';
14155
14364
  additionalNotes?: Maybe<Scalars['String']['output']>;
@@ -14489,6 +14698,11 @@ export declare type CommerceExpCcpMutationWithQuery = {
14489
14698
  ccp?: Maybe<CommerceExpCcpMutation>;
14490
14699
  query?: Maybe<Query>;
14491
14700
  };
14701
+ export declare type CommerceExpCcpOfferingEntityTransition = {
14702
+ __typename?: 'CommerceExpCcpOfferingEntityTransition';
14703
+ from?: Maybe<Scalars['ID']['output']>;
14704
+ to?: Maybe<Scalars['ID']['output']>;
14705
+ };
14492
14706
  export declare enum CommerceExpCcpOfferingRelationshipDirection {
14493
14707
  From = "FROM",
14494
14708
  To = "TO"
@@ -14599,6 +14813,13 @@ export declare type CommerceExpCcpPricingPlan = CommerceExpNode & {
14599
14813
  export declare type CommerceExpCcpPricingPlanItemsArgs = {
14600
14814
  chargeTypesFilter?: InputMaybe<Array<InputMaybe<CommerceExpPricingPlanItemChargeType>>>;
14601
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
+ };
14602
14823
  export declare enum CommerceExpCcpPricingType {
14603
14824
  External = "EXTERNAL",
14604
14825
  Free = "FREE",
@@ -14803,10 +15024,10 @@ export declare type CommerceExpCcpSubscription = {
14803
15024
  isInvoiceGenerationPending?: Maybe<Scalars['Boolean']['output']>;
14804
15025
  orderItemId?: Maybe<Scalars['ID']['output']>;
14805
15026
  pauseBilling?: Maybe<CommerceExpPauseBilling>;
14806
- relatedQuoteForNextCycleScheduledChange?: Maybe<CommerceExpCcpQuote>;
14807
15027
  scheduledChanges?: Maybe<CommerceExpScheduledChanges>;
14808
15028
  startTimestamp?: Maybe<Scalars['Float']['output']>;
14809
15029
  status?: Maybe<CommerceExpSubscriptionStatus>;
15030
+ transition?: Maybe<CommerceExpCcpSubscriptionTransition>;
14810
15031
  trial?: Maybe<CommerceExpCcpSubscriptionTrial>;
14811
15032
  unpaidInvoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
14812
15033
  };
@@ -14816,6 +15037,18 @@ export declare type CommerceExpCcpSubscriptionIsInPreDunningArgs = {
14816
15037
  export declare type CommerceExpCcpSubscriptionIsInvoiceGenerationPendingArgs = {
14817
15038
  invoiceRequestStatus: CommerceExpInvoiceRequestStatusType;
14818
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
+ };
14819
15052
  export declare type CommerceExpCcpSubscriptionTrial = {
14820
15053
  __typename?: 'CommerceExpCcpSubscriptionTrial';
14821
15054
  endBehaviour?: Maybe<CommerceExpSubscriptionTrialEndBehaviour>;
@@ -15085,8 +15318,15 @@ export declare type CommerceExpContractEntitlement = {
15085
15318
  latestModification?: Maybe<CommerceExpContractModification>;
15086
15319
  latestModificationVersion?: Maybe<Scalars['Int']['output']>;
15087
15320
  modifications?: Maybe<Array<Maybe<CommerceExpContractModification>>>;
15088
- status?: Maybe<CommerceExpEntitlementStatus>;
15321
+ status?: Maybe<CommerceExpContractEntitlementStatus>;
15089
15322
  };
15323
+ export declare enum CommerceExpContractEntitlementStatus {
15324
+ Active = "ACTIVE",
15325
+ Cancelled = "CANCELLED",
15326
+ Expired = "EXPIRED",
15327
+ Inactive = "INACTIVE",
15328
+ Superseded = "SUPERSEDED"
15329
+ }
15090
15330
  export declare type CommerceExpContractInvoiceItem = {
15091
15331
  __typename?: 'CommerceExpContractInvoiceItem';
15092
15332
  invoice?: Maybe<CommerceExpCcpInvoice>;
@@ -15713,12 +15953,6 @@ export declare type CommerceExpGenericMutationPayload = CommerceExpMutationPaylo
15713
15953
  errors?: Maybe<Array<MutationError>>;
15714
15954
  success: Scalars['Boolean']['output'];
15715
15955
  };
15716
- export declare type CommerceExpGroupedByBillingPeriodLineItem = {
15717
- __typename?: 'CommerceExpGroupedByBillingPeriodLineItem';
15718
- billingPeriod?: Maybe<CommerceExpPeriodResponse>;
15719
- billingPeriodItems?: Maybe<Array<Maybe<CommerceExpBillingPeriodItem>>>;
15720
- type: CommerceExpQuoteLineItemContainerType;
15721
- };
15722
15956
  export declare type CommerceExpGroupedByBillingScheduleLineItem = {
15723
15957
  __typename?: 'CommerceExpGroupedByBillingScheduleLineItem';
15724
15958
  aggregatedDiscountTotal?: Maybe<Scalars['Float']['output']>;
@@ -15748,7 +15982,7 @@ export declare type CommerceExpGroupedBySiteQuoteLineItem = {
15748
15982
  siteItems?: Maybe<Array<Maybe<CommerceExpSiteItem>>>;
15749
15983
  type: CommerceExpQuoteLineItemContainerType;
15750
15984
  };
15751
- export declare type CommerceExpGroupedQuoteLineItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByBillingPeriodLineItem | CommerceExpGroupedByBillingScheduleLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
15985
+ export declare type CommerceExpGroupedQuoteLineItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByBillingScheduleLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
15752
15986
  export declare type CommerceExpGupsMutation = {
15753
15987
  __typename?: 'CommerceExpGupsMutation';
15754
15988
  createEntitlementProfile?: Maybe<CommerceExpCreateEntitlementProfilePayload>;
@@ -15973,6 +16207,7 @@ export declare type CommerceExpLineItemResponse = {
15973
16207
  entitlement?: Maybe<CommerceExpCcpEntitlement>;
15974
16208
  entitlementVersion?: Maybe<Scalars['String']['output']>;
15975
16209
  isMultiYear?: Maybe<Scalars['Boolean']['output']>;
16210
+ isProvisionedOrReserved?: Maybe<Scalars['Boolean']['output']>;
15976
16211
  lineItemId?: Maybe<Scalars['String']['output']>;
15977
16212
  lineItemTermType?: Maybe<CommerceExpLineItemTermType>;
15978
16213
  lineItemType?: Maybe<CommerceExpLineItemType>;
@@ -15981,7 +16216,7 @@ export declare type CommerceExpLineItemResponse = {
15981
16216
  offeringId?: Maybe<Scalars['ID']['output']>;
15982
16217
  period?: Maybe<CommerceExpPeriodResponse>;
15983
16218
  pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
15984
- promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
16219
+ promotions?: Maybe<Array<Maybe<CommerceExpQuotesPromotion>>>;
15985
16220
  rampPricingLineItems?: Maybe<Array<Maybe<CommerceExpLineItemResponse>>>;
15986
16221
  relatesFromEntitlements?: Maybe<Array<Maybe<CommerceExpRelatesFromEntitlementDetails>>>;
15987
16222
  reservedOrgAndSite?: Maybe<CommerceExpReservedSiteAndOrg>;
@@ -16627,6 +16862,31 @@ export declare type CommerceExpPlsQueryError = {
16627
16862
  error?: Maybe<CommerceExpPlsErrorType>;
16628
16863
  };
16629
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
+ }
16630
16890
  export declare type CommerceExpPostalAddress = {
16631
16891
  __typename?: 'CommerceExpPostalAddress';
16632
16892
  city?: Maybe<Scalars['String']['output']>;
@@ -16774,6 +17034,7 @@ export declare type CommerceExpPromotionBenefitDto = {
16774
17034
  value?: Maybe<Scalars['Int']['output']>;
16775
17035
  };
16776
17036
  export declare enum CommerceExpPromotionBenefitDtoDuration {
17037
+ AlignToPhase = "ALIGN_TO_PHASE",
16777
17038
  Forever = "FOREVER",
16778
17039
  Once = "ONCE",
16779
17040
  Repeating = "REPEATING",
@@ -16811,6 +17072,9 @@ export declare enum CommerceExpPromotionStatus {
16811
17072
  Inactive = "INACTIVE",
16812
17073
  Withdrawn = "WITHDRAWN"
16813
17074
  }
17075
+ export declare enum CommerceExpPromotionTermType {
17076
+ PromotionLockForAmendment = "PROMOTION_LOCK_FOR_AMENDMENT"
17077
+ }
16814
17078
  export declare enum CommerceExpPromotionType {
16815
17079
  DealRegistrationMargin = "DEAL_REGISTRATION_MARGIN",
16816
17080
  DiscretionaryDiscount = "DISCRETIONARY_DISCOUNT",
@@ -16849,7 +17113,6 @@ export declare type CommerceExpQuoteFilter = {
16849
17113
  status?: InputMaybe<CommerceExpQuoteStatusFilter>;
16850
17114
  };
16851
17115
  export declare enum CommerceExpQuoteLineItemContainerType {
16852
- BillingPeriod = "BILLING_PERIOD",
16853
17116
  BillingSchedule = "BILLING_SCHEDULE",
16854
17117
  Container = "CONTAINER",
16855
17118
  Org = "ORG",
@@ -16892,6 +17155,45 @@ export declare type CommerceExpQuoteStatusFilter = {
16892
17155
  exclude?: InputMaybe<Array<CommerceExpQuoteStatus>>;
16893
17156
  include?: InputMaybe<Array<CommerceExpQuoteStatus>>;
16894
17157
  };
17158
+ export declare type CommerceExpQuotesApplicationContext = {
17159
+ __typename?: 'CommerceExpQuotesApplicationContext';
17160
+ promotionLock?: Maybe<Scalars['Boolean']['output']>;
17161
+ };
17162
+ export declare type CommerceExpQuotesBenefit = {
17163
+ __typename?: 'CommerceExpQuotesBenefit';
17164
+ duration?: Maybe<CommerceExpQuotesBenefitDuration>;
17165
+ iterations?: Maybe<Scalars['Int']['output']>;
17166
+ lineItemId?: Maybe<Scalars['String']['output']>;
17167
+ value?: Maybe<Scalars['Float']['output']>;
17168
+ };
17169
+ export declare enum CommerceExpQuotesBenefitDuration {
17170
+ AlignToQuoteLine = "ALIGN_TO_QUOTE_LINE",
17171
+ Forever = "FOREVER",
17172
+ Once = "ONCE",
17173
+ Repeating = "REPEATING"
17174
+ }
17175
+ export declare type CommerceExpQuotesCustomisedValues = {
17176
+ __typename?: 'CommerceExpQuotesCustomisedValues';
17177
+ applicationReason?: Maybe<CommerceExpApplicationReasonDto>;
17178
+ benefits?: Maybe<Array<Maybe<CommerceExpQuotesBenefit>>>;
17179
+ };
17180
+ export declare type CommerceExpQuotesPromotion = {
17181
+ __typename?: 'CommerceExpQuotesPromotion';
17182
+ promotionDefinition?: Maybe<CommerceExpQuotesPromotionDefinition>;
17183
+ promotionInstanceId?: Maybe<Scalars['String']['output']>;
17184
+ promotionTerm?: Maybe<CommerceExpQuotesPromotionTerm>;
17185
+ };
17186
+ export declare type CommerceExpQuotesPromotionDefinition = {
17187
+ __typename?: 'CommerceExpQuotesPromotionDefinition';
17188
+ applicationContext?: Maybe<CommerceExpQuotesApplicationContext>;
17189
+ customisedValues?: Maybe<CommerceExpQuotesCustomisedValues>;
17190
+ promotionCode?: Maybe<Scalars['String']['output']>;
17191
+ promotionId?: Maybe<Scalars['String']['output']>;
17192
+ };
17193
+ export declare type CommerceExpQuotesPromotionTerm = {
17194
+ __typename?: 'CommerceExpQuotesPromotionTerm';
17195
+ promotionTermType?: Maybe<CommerceExpPromotionTermType>;
17196
+ };
16895
17197
  export declare type CommerceExpRange = {
16896
17198
  __typename?: 'CommerceExpRange';
16897
17199
  lowerBound?: Maybe<Scalars['Int']['output']>;
@@ -25434,6 +25736,11 @@ export declare type ConfluenceNbmAddGlobalTransformerPayload = Payload & {
25434
25736
  errors?: Maybe<Array<MutationError>>;
25435
25737
  success: Scalars['Boolean']['output'];
25436
25738
  };
25739
+ export declare type ConfluenceNbmAddTransformerToConfigPayload = {
25740
+ __typename?: 'ConfluenceNbmAddTransformerToConfigPayload';
25741
+ errors?: Maybe<Array<MutationError>>;
25742
+ success: Scalars['Boolean']['output'];
25743
+ };
25437
25744
  export declare type ConfluenceNbmBulkUpdateVerificationEntryInput = {
25438
25745
  scanId: Scalars['ID']['input'];
25439
25746
  verificationEntries: Array<InputMaybe<ConfluenceNbmVerificationEntryInput>>;
@@ -25584,6 +25891,11 @@ export declare type ConfluenceNbmPerfTransformer = {
25584
25891
  status?: Maybe<Scalars['String']['output']>;
25585
25892
  transformerId?: Maybe<Scalars['String']['output']>;
25586
25893
  };
25894
+ export declare type ConfluenceNbmRemoveTransformerFromConfigPayload = {
25895
+ __typename?: 'ConfluenceNbmRemoveTransformerFromConfigPayload';
25896
+ errors?: Maybe<Array<MutationError>>;
25897
+ success: Scalars['Boolean']['output'];
25898
+ };
25587
25899
  export declare type ConfluenceNbmRetryPerfScanLongTaskInput = {
25588
25900
  scanId: Scalars['ID']['input'];
25589
25901
  };
@@ -25777,6 +26089,11 @@ export declare type ConfluenceNbmTransformer = {
25777
26089
  name: Scalars['String']['output'];
25778
26090
  transformedChain?: Maybe<Scalars['String']['output']>;
25779
26091
  };
26092
+ export declare type ConfluenceNbmTransformerConfig = {
26093
+ __typename?: 'ConfluenceNbmTransformerConfig';
26094
+ scanId: Scalars['String']['output'];
26095
+ transformerNames: Array<Maybe<Scalars['String']['output']>>;
26096
+ };
25780
26097
  export declare type ConfluenceNbmUploadTransformerConfigInput = {
25781
26098
  scanId: Scalars['ID']['input'];
25782
26099
  transformerNames: Array<InputMaybe<Scalars['String']['input']>>;
@@ -29206,6 +29523,7 @@ export declare type ContentDataClassificationLevel = {
29206
29523
  color?: Maybe<Scalars['String']['output']>;
29207
29524
  description?: Maybe<Scalars['String']['output']>;
29208
29525
  guideline?: Maybe<Scalars['String']['output']>;
29526
+ guidelineADF?: Maybe<Scalars['String']['output']>;
29209
29527
  id: Scalars['String']['output'];
29210
29528
  name: Scalars['String']['output'];
29211
29529
  order?: Maybe<Scalars['Int']['output']>;
@@ -31672,6 +31990,17 @@ export declare type CplsUpdateViewSettingsPayload = Payload & {
31672
31990
  success: Scalars['Boolean']['output'];
31673
31991
  viewSettings?: Maybe<CplsViewSettings>;
31674
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
+ };
31675
32004
  export declare type CplsValueFormats = {
31676
32005
  __typename?: 'CplsValueFormats';
31677
32006
  days?: Maybe<Scalars['Float']['output']>;
@@ -32435,10 +32764,6 @@ export declare type CreatePolarisViewSetPayload = Payload & {
32435
32764
  node?: Maybe<PolarisViewSet>;
32436
32765
  success: Scalars['Boolean']['output'];
32437
32766
  };
32438
- export declare type CreateRankingListInput = {
32439
- items?: InputMaybe<Array<Scalars['String']['input']>>;
32440
- listId: Scalars['ID']['input'];
32441
- };
32442
32767
  export declare type CreateSpaceAdditionalSettingsInput = {
32443
32768
  jiraProject?: InputMaybe<CreateSpaceJiraProjectInput>;
32444
32769
  spaceTypeSettings?: InputMaybe<SpaceTypeSettingsInput>;
@@ -37866,6 +38191,17 @@ export declare enum DistributionStatus {
37866
38191
  Development = "DEVELOPMENT",
37867
38192
  Public = "PUBLIC"
37868
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
+ };
37869
38205
  export declare type DlpDetectorClassificationMappingListResponse = {
37870
38206
  __typename?: 'DlpDetectorClassificationMappingListResponse';
37871
38207
  cursor?: Maybe<Scalars['String']['output']>;
@@ -43171,6 +43507,17 @@ export declare type GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload
43171
43507
  serverId?: Maybe<Scalars['ID']['output']>;
43172
43508
  success: Scalars['Boolean']['output'];
43173
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
+ };
43174
43521
  export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput = {
43175
43522
  cloudId: Scalars['ID']['input'];
43176
43523
  serverId: Scalars['ID']['input'];
@@ -46899,6 +47246,8 @@ export declare type GraphStore = {
46899
47246
  userUpdatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection>;
46900
47247
  userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
46901
47248
  userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
47249
+ userUpdatedComponent?: Maybe<GraphStoreSimplifiedUserUpdatedComponentConnection>;
47250
+ userUpdatedComponentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedComponentInverseConnection>;
46902
47251
  userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
46903
47252
  userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
46904
47253
  userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
@@ -53912,6 +54261,22 @@ export declare type GraphStoreUserUpdatedAtlasProjectInverseArgs = {
53912
54261
  queryContext?: InputMaybe<Scalars['String']['input']>;
53913
54262
  sort?: InputMaybe<GraphStoreUserUpdatedAtlasProjectSortInput>;
53914
54263
  };
54264
+ export declare type GraphStoreUserUpdatedComponentArgs = {
54265
+ after?: InputMaybe<Scalars['String']['input']>;
54266
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
54267
+ first?: InputMaybe<Scalars['Int']['input']>;
54268
+ id: Scalars['ID']['input'];
54269
+ queryContext?: InputMaybe<Scalars['String']['input']>;
54270
+ sort?: InputMaybe<GraphStoreUserUpdatedComponentSortInput>;
54271
+ };
54272
+ export declare type GraphStoreUserUpdatedComponentInverseArgs = {
54273
+ after?: InputMaybe<Scalars['String']['input']>;
54274
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
54275
+ first?: InputMaybe<Scalars['Int']['input']>;
54276
+ id: Scalars['ID']['input'];
54277
+ queryContext?: InputMaybe<Scalars['String']['input']>;
54278
+ sort?: InputMaybe<GraphStoreUserUpdatedComponentSortInput>;
54279
+ };
53915
54280
  export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
53916
54281
  after?: InputMaybe<Scalars['String']['input']>;
53917
54282
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -72553,6 +72918,34 @@ export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge = {
72553
72918
  };
72554
72919
  export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
72555
72920
  export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectUnion = TownsquareProject;
72921
+ export declare type GraphStoreSimplifiedUserUpdatedComponentConnection = HasPageInfo & {
72922
+ __typename?: 'GraphStoreSimplifiedUserUpdatedComponentConnection';
72923
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedComponentEdge>>>;
72924
+ pageInfo: PageInfo;
72925
+ };
72926
+ export declare type GraphStoreSimplifiedUserUpdatedComponentEdge = {
72927
+ __typename?: 'GraphStoreSimplifiedUserUpdatedComponentEdge';
72928
+ createdAt: Scalars['DateTime']['output'];
72929
+ cursor?: Maybe<Scalars['String']['output']>;
72930
+ id: Scalars['ID']['output'];
72931
+ lastUpdated: Scalars['DateTime']['output'];
72932
+ node?: Maybe<GraphStoreSimplifiedUserUpdatedComponentUnion>;
72933
+ };
72934
+ export declare type GraphStoreSimplifiedUserUpdatedComponentInverseConnection = HasPageInfo & {
72935
+ __typename?: 'GraphStoreSimplifiedUserUpdatedComponentInverseConnection';
72936
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedComponentInverseEdge>>>;
72937
+ pageInfo: PageInfo;
72938
+ };
72939
+ export declare type GraphStoreSimplifiedUserUpdatedComponentInverseEdge = {
72940
+ __typename?: 'GraphStoreSimplifiedUserUpdatedComponentInverseEdge';
72941
+ createdAt: Scalars['DateTime']['output'];
72942
+ cursor?: Maybe<Scalars['String']['output']>;
72943
+ id: Scalars['ID']['output'];
72944
+ lastUpdated: Scalars['DateTime']['output'];
72945
+ node?: Maybe<GraphStoreSimplifiedUserUpdatedComponentInverseUnion>;
72946
+ };
72947
+ export declare type GraphStoreSimplifiedUserUpdatedComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
72948
+ export declare type GraphStoreSimplifiedUserUpdatedComponentUnion = CompassComponent;
72556
72949
  export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
72557
72950
  __typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
72558
72951
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
@@ -74450,6 +74843,9 @@ export declare type GraphStoreUserUpdatedAtlasGoalSortInput = {
74450
74843
  export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
74451
74844
  lastModified?: InputMaybe<GraphStoreSortInput>;
74452
74845
  };
74846
+ export declare type GraphStoreUserUpdatedComponentSortInput = {
74847
+ lastModified?: InputMaybe<GraphStoreSortInput>;
74848
+ };
74453
74849
  export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
74454
74850
  lastModified?: InputMaybe<GraphStoreSortInput>;
74455
74851
  };
@@ -74724,6 +75120,8 @@ export declare type GraphStoreV2 = {
74724
75120
  atlassianUserUpdatedAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianGoalInverseConnection>;
74725
75121
  atlassianUserUpdatedAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianProjectConnection>;
74726
75122
  atlassianUserUpdatedAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianProjectInverseConnection>;
75123
+ atlassianUserUpdatedCompassComponent?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentConnection>;
75124
+ atlassianUserUpdatedCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseConnection>;
74727
75125
  atlassianUserUpdatedConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceBlogpostConnection>;
74728
75126
  atlassianUserUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceBlogpostInverseConnection>;
74729
75127
  atlassianUserUpdatedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluencePageConnection>;
@@ -76567,6 +76965,20 @@ export declare type GraphStoreV2AtlassianUserUpdatedAtlassianProjectInverseArgs
76567
76965
  id: Scalars['ID']['input'];
76568
76966
  sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedAtlassianProjectSortInput>;
76569
76967
  };
76968
+ export declare type GraphStoreV2AtlassianUserUpdatedCompassComponentArgs = {
76969
+ after?: InputMaybe<Scalars['String']['input']>;
76970
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
76971
+ first?: InputMaybe<Scalars['Int']['input']>;
76972
+ id: Scalars['ID']['input'];
76973
+ sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedCompassComponentSortInput>;
76974
+ };
76975
+ export declare type GraphStoreV2AtlassianUserUpdatedCompassComponentInverseArgs = {
76976
+ after?: InputMaybe<Scalars['String']['input']>;
76977
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
76978
+ first?: InputMaybe<Scalars['Int']['input']>;
76979
+ id: Scalars['ID']['input'];
76980
+ sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedCompassComponentSortInput>;
76981
+ };
76570
76982
  export declare type GraphStoreV2AtlassianUserUpdatedConfluenceBlogpostArgs = {
76571
76983
  after?: InputMaybe<Scalars['String']['input']>;
76572
76984
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -80505,6 +80917,9 @@ export declare type GraphStoreV2AtlassianUserUpdatedAtlassianGoalSortInput = {
80505
80917
  export declare type GraphStoreV2AtlassianUserUpdatedAtlassianProjectSortInput = {
80506
80918
  lastModified?: InputMaybe<GraphStoreSortInput>;
80507
80919
  };
80920
+ export declare type GraphStoreV2AtlassianUserUpdatedCompassComponentSortInput = {
80921
+ lastModified?: InputMaybe<GraphStoreSortInput>;
80922
+ };
80508
80923
  export declare type GraphStoreV2AtlassianUserUpdatedConfluenceBlogpostSortInput = {
80509
80924
  lastModified?: InputMaybe<GraphStoreSortInput>;
80510
80925
  };
@@ -86222,6 +86637,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianProjectIn
86222
86637
  };
86223
86638
  export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
86224
86639
  export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianProjectUnion = TownsquareProject;
86640
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentConnection = HasPageInfo & {
86641
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentConnection';
86642
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentEdge>>>;
86643
+ pageInfo: PageInfo;
86644
+ };
86645
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentEdge = {
86646
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentEdge';
86647
+ createdAt: Scalars['DateTime']['output'];
86648
+ cursor?: Maybe<Scalars['String']['output']>;
86649
+ id: Scalars['ID']['output'];
86650
+ lastUpdated: Scalars['DateTime']['output'];
86651
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentUnion>;
86652
+ };
86653
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseConnection = HasPageInfo & {
86654
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseConnection';
86655
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseEdge>>>;
86656
+ pageInfo: PageInfo;
86657
+ };
86658
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseEdge = {
86659
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseEdge';
86660
+ createdAt: Scalars['DateTime']['output'];
86661
+ cursor?: Maybe<Scalars['String']['output']>;
86662
+ id: Scalars['ID']['output'];
86663
+ lastUpdated: Scalars['DateTime']['output'];
86664
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseUnion>;
86665
+ };
86666
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
86667
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentUnion = CompassComponent;
86225
86668
  export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
86226
86669
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceBlogpostConnection';
86227
86670
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceBlogpostEdge>>>;
@@ -93592,6 +94035,34 @@ export declare type GravityFieldRefMappingInput = {
93592
94035
  key: Scalars['String']['input'];
93593
94036
  ref: Scalars['VTRI']['input'];
93594
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
+ }
93595
94066
  export declare type GravityRefMappingProposals = {
93596
94067
  __typename?: 'GravityRefMappingProposals';
93597
94068
  fields: Array<GravityFieldMappingProposals>;
@@ -93610,6 +94081,12 @@ export declare enum GravitySortOrder {
93610
94081
  Asc = "ASC",
93611
94082
  Desc = "DESC"
93612
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
+ };
93613
94090
  export declare type GravityView = {
93614
94091
  __typename?: 'GravityView';
93615
94092
  config: GravityViewConfig;
@@ -93733,6 +94210,16 @@ export declare type GravityViewTemplateImage = {
93733
94210
  src: Scalars['String']['output'];
93734
94211
  srcDark?: Maybe<Scalars['String']['output']>;
93735
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
+ };
93736
94223
  export declare enum GravityViewVisualizationType {
93737
94224
  Board = "BOARD",
93738
94225
  List = "LIST",
@@ -99984,6 +100471,7 @@ export declare type JiraBoardViewCell = Node & {
99984
100471
  id: Scalars['ID']['output'];
99985
100472
  issuePositions?: Maybe<Array<JiraBoardViewCellIssuePosition>>;
99986
100473
  issues?: Maybe<JiraIssueConnection>;
100474
+ swimlane?: Maybe<JiraBoardViewSwimlane>;
99987
100475
  workflows?: Maybe<JiraBoardViewWorkflowConnection>;
99988
100476
  };
99989
100477
  export declare type JiraBoardViewCellIssuePositionsArgs = {
@@ -112364,6 +112852,7 @@ export declare type JiraProject = Node & {
112364
112852
  associatedServices?: Maybe<GraphProjectServiceConnection>;
112365
112853
  availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
112366
112854
  availableFieldSchemes?: Maybe<JiraFieldSchemesConnection>;
112855
+ availableIssueTypes?: Maybe<JiraIssueTypeConnection>;
112367
112856
  avatar?: Maybe<JiraAvatar>;
112368
112857
  background?: Maybe<JiraActiveBackgroundDetailsResult>;
112369
112858
  boards?: Maybe<JiraBoardConnection>;
@@ -112393,6 +112882,7 @@ export declare type JiraProject = Node & {
112393
112882
  isGlobalComponentsEnabled?: Maybe<Scalars['Boolean']['output']>;
112394
112883
  isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
112395
112884
  isPlaybooksEnabled?: Maybe<Scalars['Boolean']['output']>;
112885
+ isRootCauseAnalysisEnabled?: Maybe<Scalars['Boolean']['output']>;
112396
112886
  isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
112397
112887
  issueTypes?: Maybe<JiraIssueTypeConnection>;
112398
112888
  jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
@@ -112477,6 +112967,11 @@ export declare type JiraProjectAvailableFieldSchemesArgs = {
112477
112967
  first?: InputMaybe<Scalars['Int']['input']>;
112478
112968
  input?: InputMaybe<JiraFieldSchemesInput>;
112479
112969
  };
112970
+ export declare type JiraProjectAvailableIssueTypesArgs = {
112971
+ after?: InputMaybe<Scalars['String']['input']>;
112972
+ first?: InputMaybe<Scalars['Int']['input']>;
112973
+ input?: InputMaybe<JiraProjectAvailableIssueTypesInput>;
112974
+ };
112480
112975
  export declare type JiraProjectBoardsArgs = {
112481
112976
  after?: InputMaybe<Scalars['String']['input']>;
112482
112977
  before?: InputMaybe<Scalars['String']['input']>;
@@ -112702,6 +113197,9 @@ export declare type JiraProjectAvailableFieldsInput = {
112702
113197
  fieldTypeGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
112703
113198
  filterContains?: InputMaybe<Scalars['String']['input']>;
112704
113199
  };
113200
+ export declare type JiraProjectAvailableIssueTypesInput = {
113201
+ nameFilter?: InputMaybe<Scalars['String']['input']>;
113202
+ };
112705
113203
  export declare type JiraProjectCategory = Node & {
112706
113204
  __typename?: 'JiraProjectCategory';
112707
113205
  description?: Maybe<Scalars['String']['output']>;
@@ -121792,17 +122290,15 @@ export declare type JpdViewsServiceGlobalViewEdge = {
121792
122290
  cursor?: Maybe<Scalars['String']['output']>;
121793
122291
  node?: Maybe<JpdViewsServiceGlobalView>;
121794
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
+ };
121795
122299
  export declare type JpdViewsServiceGlobalViewsByCriteriaInput = {
121796
122300
  containsText: Scalars['String']['input'];
121797
122301
  };
121798
- export declare type JpdViewsServiceGlobalViewsHydrationExample = {
121799
- __typename?: 'JpdViewsServiceGlobalViewsHydrationExample';
121800
- cloudId: Scalars['ID']['output'];
121801
- viewsData?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
121802
- };
121803
- export declare type JpdViewsServiceGlobalViewsHydrationExampleViewsDataArgs = {
121804
- ids: Array<Scalars['ID']['input']>;
121805
- };
121806
122302
  export declare type JpdViewsServiceMatrixConfig = {
121807
122303
  __typename?: 'JpdViewsServiceMatrixConfig';
121808
122304
  axes: Array<JpdViewsServiceAxisConfig>;
@@ -121848,19 +122344,10 @@ export declare type JpdViewsServiceSort = {
121848
122344
  field: JpdViewsServiceField;
121849
122345
  order: Scalars['String']['output'];
121850
122346
  };
121851
- export declare type JpdViewsServiceSortByInput = {
121852
- key?: InputMaybe<Scalars['String']['input']>;
121853
- mode?: InputMaybe<JpdViewsServiceViewSortMode>;
121854
- order?: InputMaybe<JpdViewsServiceSortOrder>;
121855
- };
121856
122347
  export declare type JpdViewsServiceSortInput = {
121857
122348
  field: Scalars['String']['input'];
121858
122349
  order: Scalars['String']['input'];
121859
122350
  };
121860
- export declare enum JpdViewsServiceSortOrder {
121861
- Asc = "ASC",
121862
- Desc = "DESC"
121863
- }
121864
122351
  export declare type JpdViewsServiceTableColumnSize = {
121865
122352
  __typename?: 'JpdViewsServiceTableColumnSize';
121866
122353
  field: JpdViewsServiceField;
@@ -121887,6 +122374,16 @@ export declare type JpdViewsServiceTimelineConfigInput = {
121887
122374
  startTimestamp: Scalars['String']['input'];
121888
122375
  summaryCardField: Scalars['String']['input'];
121889
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
+ };
121890
122387
  export declare type JpdViewsServiceUpdateGlobalViewInput = {
121891
122388
  boldColors?: InputMaybe<Scalars['Boolean']['input']>;
121892
122389
  colorBy?: InputMaybe<JpdViewsServiceFieldInput>;
@@ -121938,11 +122435,6 @@ export declare type JpdViewsServiceViewBase = {
121938
122435
  rank?: Maybe<Scalars['Int']['output']>;
121939
122436
  visualizationType: JpdViewsServiceVisualizationType;
121940
122437
  };
121941
- export declare enum JpdViewsServiceViewSortMode {
121942
- FieldsSort = "FIELDS_SORT",
121943
- ProjectRank = "PROJECT_RANK",
121944
- ViewRank = "VIEW_RANK"
121945
- }
121946
122438
  export declare enum JpdViewsServiceVisualizationType {
121947
122439
  Board = "BOARD",
121948
122440
  Matrix = "MATRIX",
@@ -123323,7 +123815,10 @@ export declare type KitsuneFeedback = Node & {
123323
123815
  __typename?: 'KitsuneFeedback';
123324
123816
  chunks: KitsuneChunkConnection;
123325
123817
  content?: Maybe<Scalars['KitsuneADF']['output']>;
123818
+ creator?: Maybe<User>;
123819
+ creatorId?: Maybe<Scalars['ID']['output']>;
123326
123820
  id: Scalars['ID']['output'];
123821
+ sourceCategory: KitsuneSourceCategory;
123327
123822
  summary?: Maybe<KitsuneFeedbackSummary>;
123328
123823
  title?: Maybe<Scalars['String']['output']>;
123329
123824
  };
@@ -123616,6 +124111,7 @@ export declare type KitsuneSourceInputWeb = {
123616
124111
  };
123617
124112
  export declare type KitsuneSpace = Node & {
123618
124113
  __typename?: 'KitsuneSpace';
124114
+ description?: Maybe<Scalars['String']['output']>;
123619
124115
  feedbacks: KitsuneFeedbackConnection;
123620
124116
  fields: KitsuneFieldConnection;
123621
124117
  id: Scalars['ID']['output'];
@@ -130632,14 +131128,6 @@ export declare type MercuryFocusAreaLinks = {
130632
131128
  __typename?: 'MercuryFocusAreaLinks';
130633
131129
  links: Array<MercuryFocusAreaLink>;
130634
131130
  };
130635
- export declare type MercuryFocusAreaNode = {
130636
- __typename?: 'MercuryFocusAreaNode';
130637
- childCount?: Maybe<Scalars['Int']['output']>;
130638
- depth?: Maybe<Scalars['Int']['output']>;
130639
- focusArea?: Maybe<MercuryFocusArea>;
130640
- hasChildren?: Maybe<Scalars['Boolean']['output']>;
130641
- id: Scalars['ID']['output'];
130642
- };
130643
131131
  export declare enum MercuryFocusAreaPermission {
130644
131132
  Archive = "ARCHIVE",
130645
131133
  CreateGoalLink = "CREATE_GOAL_LINK",
@@ -131703,20 +132191,43 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
131703
132191
  countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
131704
132192
  totalCount?: Maybe<Scalars['Int']['output']>;
131705
132193
  };
131706
- export declare type MercuryNormalizedWork = {
132194
+ export declare type MercuryNormalizedWork = HasMercuryProjectFields & {
131707
132195
  __typename?: 'MercuryNormalizedWork';
131708
132196
  connectedFocusArea: Scalars['ID']['output'];
131709
132197
  depth?: Maybe<Scalars['Int']['output']>;
131710
132198
  externalOwner?: Maybe<MercuryExternalOwner>;
131711
132199
  id: Scalars['ID']['output'];
131712
- key?: Maybe<Scalars['String']['output']>;
131713
- name?: Maybe<Scalars['String']['output']>;
131714
- owner?: Maybe<User>;
131715
- sourceStatus?: Maybe<MercuryNormalizedWorkSourceStatus>;
131716
- status?: Maybe<MercuryNormalizedWorkStatus>;
131717
- targetDate?: Maybe<MercuryNormalizedWorkTargetDate>;
131718
- 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'];
132214
+ };
132215
+ export declare type MercuryNormalizedWorkConnection = {
132216
+ __typename?: 'MercuryNormalizedWorkConnection';
132217
+ edges?: Maybe<Array<MercuryNormalizedWorkEdge>>;
132218
+ pageInfo: PageInfo;
132219
+ totalCount?: Maybe<Scalars['Int']['output']>;
132220
+ };
132221
+ export declare type MercuryNormalizedWorkEdge = {
132222
+ __typename?: 'MercuryNormalizedWorkEdge';
132223
+ cursor: Scalars['String']['output'];
132224
+ node?: Maybe<MercuryNormalizedWorkResult>;
131719
132225
  };
132226
+ export declare type MercuryNormalizedWorkProjectType = MercuryProjectType & {
132227
+ __typename?: 'MercuryNormalizedWorkProjectType';
132228
+ mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
132229
+ };
132230
+ export declare type MercuryNormalizedWorkResult = MercuryNormalizedWork | MercuryRestrictedWork;
131720
132231
  export declare type MercuryNormalizedWorkSearchFiltersInput = {
131721
132232
  owner?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
131722
132233
  source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -131724,41 +132235,32 @@ export declare type MercuryNormalizedWorkSearchFiltersInput = {
131724
132235
  targetDate?: InputMaybe<MercuryNormalizedWorkTargetDateInput>;
131725
132236
  type?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
131726
132237
  };
132238
+ export declare enum MercuryNormalizedWorkSortField {
132239
+ FocusAreaId = "FOCUS_AREA_ID",
132240
+ Key = "KEY",
132241
+ Name = "NAME",
132242
+ Source = "SOURCE",
132243
+ Status = "STATUS",
132244
+ TargetDate = "TARGET_DATE",
132245
+ Type = "TYPE"
132246
+ }
131727
132247
  export declare type MercuryNormalizedWorkSortInput = {
131728
- fieldKey?: InputMaybe<Scalars['String']['input']>;
132248
+ field: MercuryNormalizedWorkSortField;
131729
132249
  order: SortOrder;
131730
132250
  };
131731
- export declare type MercuryNormalizedWorkSourceStatus = {
132251
+ export declare type MercuryNormalizedWorkSourceStatus = MercuryOriginalProjectStatus & {
131732
132252
  __typename?: 'MercuryNormalizedWorkSourceStatus';
131733
- color?: Maybe<MercuryNormalizedWorkStatusColor>;
131734
- name: Scalars['String']['output'];
132253
+ mercuryOriginalStatusName: Scalars['String']['output'];
131735
132254
  };
131736
- export declare type MercuryNormalizedWorkStatus = {
132255
+ export declare type MercuryNormalizedWorkStatus = MercuryProjectStatus & {
131737
132256
  __typename?: 'MercuryNormalizedWorkStatus';
131738
- color: MercuryNormalizedWorkStatusColor;
131739
- name: Scalars['String']['output'];
131740
- };
131741
- export declare enum MercuryNormalizedWorkStatusColor {
131742
- Blue = "BLUE",
131743
- Gray = "GRAY",
131744
- Green = "GREEN",
131745
- Red = "RED",
131746
- Yellow = "YELLOW"
131747
- }
131748
- export declare type MercuryNormalizedWorkTargetDate = {
131749
- __typename?: 'MercuryNormalizedWorkTargetDate';
131750
- targetDate?: Maybe<Scalars['String']['output']>;
131751
- targetDateType?: Maybe<MercuryNormalizedWorkTargetDateType>;
132257
+ mercuryColor: MercuryProjectStatusColor;
132258
+ mercuryName: Scalars['String']['output'];
131752
132259
  };
131753
132260
  export declare type MercuryNormalizedWorkTargetDateInput = {
131754
132261
  targetDate?: InputMaybe<Scalars['String']['input']>;
131755
- targetDateType?: InputMaybe<MercuryNormalizedWorkTargetDateType>;
132262
+ targetDateType?: InputMaybe<MercuryProjectTargetDateType>;
131756
132263
  };
131757
- export declare enum MercuryNormalizedWorkTargetDateType {
131758
- Day = "DAY",
131759
- Month = "MONTH",
131760
- Quarter = "QUARTER"
131761
- }
131762
132264
  export declare type MercuryNumberCustomField = MercuryCustomField & {
131763
132265
  __typename?: 'MercuryNumberCustomField';
131764
132266
  createdBy?: Maybe<User>;
@@ -131797,7 +132299,18 @@ export declare type MercuryPassionfruitContext = {
131797
132299
  __typename?: 'MercuryPassionfruitContext';
131798
132300
  activationId: Scalars['String']['output'];
131799
132301
  mediaClientId?: Maybe<Scalars['String']['output']>;
131800
- };
132302
+ userPermissions?: Maybe<Array<MercuryPassionfruitPermission>>;
132303
+ };
132304
+ export declare enum MercuryPassionfruitPermission {
132305
+ CreateAsk = "CREATE_ASK",
132306
+ CreatePlan = "CREATE_PLAN",
132307
+ DeleteAsk = "DELETE_ASK",
132308
+ DeletePlan = "DELETE_PLAN",
132309
+ EditAsk = "EDIT_ASK",
132310
+ EditPlan = "EDIT_PLAN",
132311
+ ViewAsk = "VIEW_ASK",
132312
+ ViewPlan = "VIEW_PLAN"
132313
+ }
131801
132314
  export declare enum MercuryPermission {
131802
132315
  ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
131803
132316
  CreateFocusArea = "CREATE_FOCUS_AREA",
@@ -132503,6 +133016,14 @@ export declare type MercuryRestrictedStrategicEventEdge = {
132503
133016
  cursor: Scalars['String']['output'];
132504
133017
  node?: Maybe<MercuryRestrictedStrategicEvent>;
132505
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
+ };
132506
133027
  export declare type MercuryRisk = Node & {
132507
133028
  __typename?: 'MercuryRisk';
132508
133029
  createdDate: Scalars['String']['output'];
@@ -132511,6 +133032,7 @@ export declare type MercuryRisk = Node & {
132511
133032
  name: Scalars['String']['output'];
132512
133033
  owner?: Maybe<Scalars['ID']['output']>;
132513
133034
  status?: Maybe<MercuryRiskStatus>;
133035
+ submitter: Scalars['ID']['output'];
132514
133036
  updatedDate: Scalars['String']['output'];
132515
133037
  };
132516
133038
  export declare type MercuryRiskStatus = {
@@ -132563,11 +133085,15 @@ export declare type MercuryRisksMutationApiUpdateRiskOwnerArgs = {
132563
133085
  export declare type MercuryRisksQueryApi = {
132564
133086
  __typename?: 'MercuryRisksQueryApi';
132565
133087
  risk?: Maybe<MercuryRisk>;
133088
+ riskStatuses: Array<MercuryRiskStatus>;
132566
133089
  risks?: Maybe<Array<Maybe<MercuryRisk>>>;
132567
133090
  };
132568
133091
  export declare type MercuryRisksQueryApiRiskArgs = {
132569
133092
  id: Scalars['ID']['input'];
132570
133093
  };
133094
+ export declare type MercuryRisksQueryApiRiskStatusesArgs = {
133095
+ cloudId: Scalars['ID']['input'];
133096
+ };
132571
133097
  export declare type MercuryRisksQueryApiRisksArgs = {
132572
133098
  ids: Array<Scalars['ID']['input']>;
132573
133099
  };
@@ -133615,32 +134141,16 @@ export declare enum MercuryViewType {
133615
134141
  }
133616
134142
  export declare type MercuryWorkNormalizationQueryApi = {
133617
134143
  __typename?: 'MercuryWorkNormalizationQueryApi';
133618
- linkedWorkByFocusArea?: Maybe<MercuryWorkNormalizationSearchConnection>;
133619
- workNormalizationByFocusAreaId?: Maybe<MercuryWorkNormalizationSearchConnection>;
134144
+ linkedWorkByFocusAreas?: Maybe<MercuryNormalizedWorkConnection>;
133620
134145
  };
133621
- export declare type MercuryWorkNormalizationQueryApiLinkedWorkByFocusAreaArgs = {
134146
+ export declare type MercuryWorkNormalizationQueryApiLinkedWorkByFocusAreasArgs = {
133622
134147
  after?: InputMaybe<Scalars['String']['input']>;
133623
134148
  filter?: InputMaybe<MercuryNormalizedWorkSearchFiltersInput>;
133624
134149
  first?: InputMaybe<Scalars['Int']['input']>;
133625
- parentFocusAreaId: Scalars['ID']['input'];
133626
- sortOptions?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
134150
+ focusAreaIds: Array<InputMaybe<Scalars['ID']['input']>>;
134151
+ sort?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
133627
134152
  textQuery?: InputMaybe<Scalars['String']['input']>;
133628
134153
  };
133629
- export declare type MercuryWorkNormalizationQueryApiWorkNormalizationByFocusAreaIdArgs = {
133630
- focusAreaId: Scalars['ID']['input'];
133631
- };
133632
- export declare type MercuryWorkNormalizationSearchConnection = {
133633
- __typename?: 'MercuryWorkNormalizationSearchConnection';
133634
- edges?: Maybe<Array<Maybe<MercuryWorkNormalizationSearchEdge>>>;
133635
- pageInfo: PageInfo;
133636
- totalCount?: Maybe<Scalars['Int']['output']>;
133637
- };
133638
- export declare type MercuryWorkNormalizationSearchEdge = {
133639
- __typename?: 'MercuryWorkNormalizationSearchEdge';
133640
- cursor: Scalars['String']['output'];
133641
- node?: Maybe<MercuryWorkNormalizationSearchResult>;
133642
- };
133643
- export declare type MercuryWorkNormalizationSearchResult = MercuryFocusAreaNode | MercuryNormalizedWork;
133644
134154
  export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
133645
134155
  export declare type MercuryWorkSuggestionsSearchItem = {
133646
134156
  __typename?: 'MercuryWorkSuggestionsSearchItem';
@@ -134056,6 +134566,7 @@ export declare type Mutation = {
134056
134566
  avp_removeDashboardElement?: Maybe<AvpRemoveDashboardElementPayload>;
134057
134567
  avp_removeDashboardRow?: Maybe<AvpRemoveDashboardRowPayload>;
134058
134568
  avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
134569
+ avp_trackDashboardView?: Maybe<AvpTrackDashboardViewPayload>;
134059
134570
  avp_updateChart?: Maybe<AvpUpdateChartPayload>;
134060
134571
  avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
134061
134572
  avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
@@ -134067,6 +134578,7 @@ export declare type Mutation = {
134067
134578
  avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
134068
134579
  avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
134069
134580
  blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
134581
+ blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
134070
134582
  blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
134071
134583
  blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
134072
134584
  blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
@@ -134155,8 +134667,10 @@ export declare type Mutation = {
134155
134667
  confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
134156
134668
  confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
134157
134669
  confluence_nbmAddGlobalTransformer?: Maybe<ConfluenceNbmAddGlobalTransformerPayload>;
134670
+ confluence_nbmAddTransformerToConfig?: Maybe<ConfluenceNbmAddTransformerToConfigPayload>;
134158
134671
  confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
134159
134672
  confluence_nbmExecuteTestTransformation?: Maybe<ConfluenceNbmExecuteTestTransformationPayload>;
134673
+ confluence_nbmRemoveTransformerFromConfig?: Maybe<ConfluenceNbmRemoveTransformerFromConfigPayload>;
134160
134674
  confluence_nbmRetryPerfScanLongTask?: Maybe<ConfluenceNbmRetryPerfScanLongTaskPayload>;
134161
134675
  confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
134162
134676
  confluence_nbmSetChainReadyForTransformation?: Maybe<ConfluenceNbmSetChainReadyForTransformationPayload>;
@@ -134240,6 +134754,7 @@ export declare type Mutation = {
134240
134754
  cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
134241
134755
  cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
134242
134756
  cpls_updateViewSettings?: Maybe<CplsUpdateViewSettingsPayload>;
134757
+ cpls_updateWorkResourcingEstimate?: Maybe<CplsUpdateWorkResourcingEstimatePayload>;
134243
134758
  createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
134244
134759
  createApp?: Maybe<CreateAppResponse>;
134245
134760
  createAppContainer?: Maybe<CreateAppContainerPayload>;
@@ -134447,6 +134962,7 @@ export declare type Mutation = {
134447
134962
  graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
134448
134963
  graphIntegration_mcpAdminManagementTriggerToolSync?: Maybe<GraphIntegrationMcpAdminManagementTriggerToolSyncPayload>;
134449
134964
  graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
134965
+ graphIntegration_mcpAdminManagementUpdateMcpRegistration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpRegistrationPayload>;
134450
134966
  graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
134451
134967
  graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
134452
134968
  graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
@@ -134598,6 +135114,7 @@ export declare type Mutation = {
134598
135114
  jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
134599
135115
  jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
134600
135116
  jpdViewsService_rerankGlobalView?: Maybe<JpdViewsServiceRerankGlobalViewPayload>;
135117
+ jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
134601
135118
  jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
134602
135119
  jsmAgentWorkspace_updateLocations?: Maybe<Scalars['String']['output']>;
134603
135120
  jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
@@ -134674,7 +135191,6 @@ export declare type Mutation = {
134674
135191
  playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
134675
135192
  playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
134676
135193
  playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
134677
- polaris?: Maybe<PolarisMutationNamespace>;
134678
135194
  polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
134679
135195
  polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
134680
135196
  projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
@@ -135228,19 +135744,16 @@ export declare type MutationAgentWorkspace_CreateSkillArgs = {
135228
135744
  input: AgentWorkspaceSkillCreateInput;
135229
135745
  };
135230
135746
  export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
135231
- cloudId: Scalars['ID']['input'];
135232
- id: Scalars['ID']['input'];
135747
+ input: AgentWorkspaceCatalogDeleteInput;
135233
135748
  };
135234
135749
  export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
135235
- cloudId: Scalars['ID']['input'];
135236
- id: Scalars['ID']['input'];
135750
+ input: AgentWorkspaceCatalogTypeDeleteInput;
135237
135751
  };
135238
135752
  export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
135239
135753
  input: AgentWorkspaceDeleteScheduleInput;
135240
135754
  };
135241
135755
  export declare type MutationAgentWorkspace_DeleteSkillArgs = {
135242
- cloudId: Scalars['ID']['input'];
135243
- id: Scalars['ID']['input'];
135756
+ input: AgentWorkspaceSkillDeleteInput;
135244
135757
  };
135245
135758
  export declare type MutationAgentWorkspace_DeleteUserSkillArgs = {
135246
135759
  input: AgentWorkspaceDeleteUserSkillInput;
@@ -135260,21 +135773,15 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
135260
135773
  cloudId: Scalars['ID']['input'];
135261
135774
  };
135262
135775
  export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
135263
- cloudId: Scalars['ID']['input'];
135264
- id: Scalars['ID']['input'];
135265
135776
  input: AgentWorkspaceUpdateCatalogInput;
135266
135777
  };
135267
135778
  export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
135268
- cloudId: Scalars['ID']['input'];
135269
- id: Scalars['ID']['input'];
135270
135779
  input: AgentWorkspaceUpdateCatalogTypeInput;
135271
135780
  };
135272
135781
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
135273
135782
  input: AgentWorkspaceUpdateScheduleInput;
135274
135783
  };
135275
135784
  export declare type MutationAgentWorkspace_UpdateSkillArgs = {
135276
- cloudId: Scalars['ID']['input'];
135277
- id: Scalars['ID']['input'];
135278
135785
  input: AgentWorkspaceSkillUpdateInput;
135279
135786
  };
135280
135787
  export declare type MutationAgentWorkspace_UpdateSkillProficiencyArgs = {
@@ -135642,6 +136149,9 @@ export declare type MutationAvp_RemoveDashboardRowArgs = {
135642
136149
  export declare type MutationAvp_ToggleCanvasElementExpandedArgs = {
135643
136150
  input: AvpToggleCanvasElementExpandedInput;
135644
136151
  };
136152
+ export declare type MutationAvp_TrackDashboardViewArgs = {
136153
+ input: AvpTrackDashboardViewInput;
136154
+ };
135645
136155
  export declare type MutationAvp_UpdateChartArgs = {
135646
136156
  input: AvpUpdateChartInput;
135647
136157
  };
@@ -135675,6 +136185,9 @@ export declare type MutationAvpanalytics_CreateModelArgs = {
135675
136185
  export declare type MutationBlockService_BatchCreateBlocksArgs = {
135676
136186
  input: BlockServiceBatchCreateBlocksInput;
135677
136187
  };
136188
+ export declare type MutationBlockService_BatchDeleteBlocksArgs = {
136189
+ input: BlockServiceBatchDeleteBlocksInput;
136190
+ };
135678
136191
  export declare type MutationBlockService_BatchUpdateBlocksArgs = {
135679
136192
  input: BlockServiceBatchUpdateBlocksInput;
135680
136193
  };
@@ -135974,6 +136487,11 @@ export declare type MutationConfluence_NbmAddGlobalTransformerArgs = {
135974
136487
  cloudId: Scalars['ID']['input'];
135975
136488
  input: ConfluenceNbmAddGlobalTransformerInput;
135976
136489
  };
136490
+ export declare type MutationConfluence_NbmAddTransformerToConfigArgs = {
136491
+ cloudId: Scalars['ID']['input'];
136492
+ scanId: Scalars['ID']['input'];
136493
+ transformerId: Scalars['ID']['input'];
136494
+ };
135977
136495
  export declare type MutationConfluence_NbmBulkUpdateVerificationEntryArgs = {
135978
136496
  cloudId: Scalars['ID']['input'];
135979
136497
  input: ConfluenceNbmBulkUpdateVerificationEntryInput;
@@ -135982,6 +136500,11 @@ export declare type MutationConfluence_NbmExecuteTestTransformationArgs = {
135982
136500
  cloudId: Scalars['ID']['input'];
135983
136501
  input: ConfluenceNbmExecuteTestTransformationInput;
135984
136502
  };
136503
+ export declare type MutationConfluence_NbmRemoveTransformerFromConfigArgs = {
136504
+ cloudId: Scalars['ID']['input'];
136505
+ scanId: Scalars['ID']['input'];
136506
+ transformerId: Scalars['ID']['input'];
136507
+ };
135985
136508
  export declare type MutationConfluence_NbmRetryPerfScanLongTaskArgs = {
135986
136509
  cloudId: Scalars['ID']['input'];
135987
136510
  input: ConfluenceNbmRetryPerfScanLongTaskInput;
@@ -136300,6 +136823,9 @@ export declare type MutationCpls_UpdateFiltersArgs = {
136300
136823
  export declare type MutationCpls_UpdateViewSettingsArgs = {
136301
136824
  input: CplsUpdateViewSettingsInput;
136302
136825
  };
136826
+ export declare type MutationCpls_UpdateWorkResourcingEstimateArgs = {
136827
+ input: CplsUpdateWorkResourcingEstimate;
136828
+ };
136303
136829
  export declare type MutationCreateAdminAnnouncementBannerArgs = {
136304
136830
  announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
136305
136831
  };
@@ -137005,6 +137531,9 @@ export declare type MutationGraphIntegration_McpAdminManagementTriggerToolSyncAr
137005
137531
  export declare type MutationGraphIntegration_McpAdminManagementUnregisterMcpServerArgs = {
137006
137532
  input: GraphIntegrationMcpAdminManagementUnregisterMcpServerInput;
137007
137533
  };
137534
+ export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpRegistrationArgs = {
137535
+ input: GraphIntegrationMcpAdminManagementUpdateMcpRegistrationInput;
137536
+ };
137008
137537
  export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpToolConfigurationArgs = {
137009
137538
  input: GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput;
137010
137539
  };
@@ -137470,6 +137999,9 @@ export declare type MutationJpdViewsService_EchoArgs = {
137470
137999
  export declare type MutationJpdViewsService_RerankGlobalViewArgs = {
137471
138000
  input: JpdViewsServiceRerankGlobalViewInput;
137472
138001
  };
138002
+ export declare type MutationJpdViewsService_UnassociateGlobalViewArgs = {
138003
+ input: JpdViewsServiceUnassociateGlobalViewInput;
138004
+ };
137473
138005
  export declare type MutationJpdViewsService_UpdateGlobalViewArgs = {
137474
138006
  input: JpdViewsServiceUpdateGlobalViewInput;
137475
138007
  };
@@ -137546,7 +138078,7 @@ export declare type MutationKitsune_MoveSectionArgs = {
137546
138078
  };
137547
138079
  export declare type MutationKitsune_MoveViewArgs = {
137548
138080
  parentId?: InputMaybe<Scalars['ID']['input']>;
137549
- rank: KitsuneRankInput;
138081
+ rank?: InputMaybe<KitsuneRankInput>;
137550
138082
  viewAri: Scalars['ID']['input'];
137551
138083
  };
137552
138084
  export declare type MutationKitsune_RemoveFeedbackArgs = {
@@ -137574,6 +138106,7 @@ export declare type MutationKitsune_UpdateSectionArgs = {
137574
138106
  sectionAri: Scalars['ID']['input'];
137575
138107
  };
137576
138108
  export declare type MutationKitsune_UpdateSpaceArgs = {
138109
+ description?: InputMaybe<Scalars['String']['input']>;
137577
138110
  id: Scalars['ID']['input'];
137578
138111
  name?: InputMaybe<Scalars['String']['input']>;
137579
138112
  };
@@ -138836,7 +139369,7 @@ export declare type NewPageInput = {
138836
139369
  };
138837
139370
  export declare type NewPagePayload = {
138838
139371
  __typename?: 'NewPagePayload';
138839
- content?: Maybe<Content>;
139372
+ content: Content;
138840
139373
  contentId: Scalars['ID']['output'];
138841
139374
  page?: Maybe<Page>;
138842
139375
  pageId: Scalars['ID']['output'];
@@ -140686,10 +141219,6 @@ export declare type PolarisMatrixConfig = {
140686
141219
  __typename?: 'PolarisMatrixConfig';
140687
141220
  axes?: Maybe<Array<PolarisMatrixAxis>>;
140688
141221
  };
140689
- export declare type PolarisMutationNamespace = {
140690
- __typename?: 'PolarisMutationNamespace';
140691
- ranking?: Maybe<PolarisRankingMutationNamespace>;
140692
- };
140693
141222
  export declare type PolarisPlay = {
140694
141223
  __typename?: 'PolarisPlay';
140695
141224
  contribution?: Maybe<PolarisPlayContribution>;
@@ -140768,52 +141297,6 @@ export declare type PolarisProjectTemplate = {
140768
141297
  export declare type PolarisQueryNamespace = {
140769
141298
  __typename?: 'PolarisQueryNamespace';
140770
141299
  insights?: Maybe<PolarisInsightsQueryNamespace>;
140771
- ranking?: Maybe<PolarisRankingQueryNamespace>;
140772
- };
140773
- export declare type PolarisRankingMutationNamespace = {
140774
- __typename?: 'PolarisRankingMutationNamespace';
140775
- createList?: Maybe<RankingDiffPayload>;
140776
- deleteList?: Maybe<RankingDiffPayload>;
140777
- makeAfter?: Maybe<RankingDiffPayload>;
140778
- makeBefore?: Maybe<RankingDiffPayload>;
140779
- makeFirst?: Maybe<RankingDiffPayload>;
140780
- makeLast?: Maybe<RankingDiffPayload>;
140781
- makeUnranked?: Maybe<RankingDiffPayload>;
140782
- };
140783
- export declare type PolarisRankingMutationNamespaceCreateListArgs = {
140784
- input: CreateRankingListInput;
140785
- };
140786
- export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
140787
- listId: Scalars['ID']['input'];
140788
- };
140789
- export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
140790
- items?: InputMaybe<Array<Scalars['ID']['input']>>;
140791
- listId: Scalars['ID']['input'];
140792
- refId: Scalars['ID']['input'];
140793
- };
140794
- export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
140795
- items?: InputMaybe<Array<Scalars['ID']['input']>>;
140796
- listId: Scalars['ID']['input'];
140797
- refId: Scalars['ID']['input'];
140798
- };
140799
- export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
140800
- items?: InputMaybe<Array<Scalars['ID']['input']>>;
140801
- listId: Scalars['ID']['input'];
140802
- };
140803
- export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
140804
- items?: InputMaybe<Array<Scalars['ID']['input']>>;
140805
- listId: Scalars['ID']['input'];
140806
- };
140807
- export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
140808
- items?: InputMaybe<Array<Scalars['ID']['input']>>;
140809
- listId: Scalars['ID']['input'];
140810
- };
140811
- export declare type PolarisRankingQueryNamespace = {
140812
- __typename?: 'PolarisRankingQueryNamespace';
140813
- list?: Maybe<Array<Maybe<RankItem>>>;
140814
- };
140815
- export declare type PolarisRankingQueryNamespaceListArgs = {
140816
- listId: Scalars['ID']['input'];
140817
141300
  };
140818
141301
  export declare type PolarisReaction = {
140819
141302
  __typename?: 'PolarisReaction';
@@ -141121,6 +141604,7 @@ export declare enum PolarisVisualizationType {
141121
141604
  Section = "SECTION",
141122
141605
  Table = "TABLE",
141123
141606
  Timeline = "TIMELINE",
141607
+ Tree = "TREE",
141124
141608
  Twoxtwo = "TWOXTWO"
141125
141609
  }
141126
141610
  export declare type PolarisWhiteboardConfig = {
@@ -141157,6 +141641,7 @@ export declare type PostOfficeContextInput = {
141157
141641
  export declare type PostOfficeMessage = {
141158
141642
  __typename?: 'PostOfficeMessage';
141159
141643
  createdAt: Scalars['String']['output'];
141644
+ data?: Maybe<PostOfficeMessageData>;
141160
141645
  eventTime: Scalars['String']['output'];
141161
141646
  messageCategory: Scalars['String']['output'];
141162
141647
  messageCreationType?: Maybe<PostOfficeMessageCreationType>;
@@ -141169,10 +141654,31 @@ export declare enum PostOfficeMessageCreationType {
141169
141654
  Explicit = "explicit",
141170
141655
  Implicit = "implicit"
141171
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
+ };
141172
141663
  export declare type PostOfficeMessagePayload = {
141173
141664
  __typename?: 'PostOfficeMessagePayload';
141174
141665
  messages: Array<PostOfficeMessage>;
141175
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
+ };
141176
141682
  export declare type PostOfficeRecommendationSession = {
141177
141683
  __typename?: 'PostOfficeRecommendationSession';
141178
141684
  entityId: Scalars['String']['output'];
@@ -141651,7 +142157,8 @@ export declare type Query = {
141651
142157
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
141652
142158
  agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
141653
142159
  agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
141654
- agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacitySummary>;
142160
+ agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
142161
+ agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
141655
142162
  agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
141656
142163
  agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
141657
142164
  agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
@@ -141754,6 +142261,7 @@ export declare type Query = {
141754
142261
  assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
141755
142262
  assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
141756
142263
  assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
142264
+ assetsVertical_bundles?: Maybe<Array<AssetsVerticalBundle>>;
141757
142265
  assets_objectById?: Maybe<AssetsObjectNode>;
141758
142266
  assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
141759
142267
  assets_objectTypeAttributesForServices?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
@@ -141779,6 +142287,7 @@ export declare type Query = {
141779
142287
  avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
141780
142288
  avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
141781
142289
  avp_getFilterExpression?: Maybe<AvpFilterExpression>;
142290
+ avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
141782
142291
  avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
141783
142292
  avpanalytics_getModel?: Maybe<AvpAnalyticsModel>;
141784
142293
  avpanalytics_getModels?: Maybe<AvpAnalyticsModelConnection>;
@@ -141859,6 +142368,7 @@ export declare type Query = {
141859
142368
  commerceExp_intercom?: Maybe<CommerceExpIntercomQuery>;
141860
142369
  commerceExp_node?: Maybe<CommerceExpNode>;
141861
142370
  commerceExp_pls?: Maybe<CommerceExpPlsQuery>;
142371
+ commerceExp_poaQuery?: Maybe<CommerceExpPoaQuery>;
141862
142372
  commerceExp_taas?: Maybe<CommerceExpTaasQuery>;
141863
142373
  compass?: Maybe<CompassCatalogQueryApi>;
141864
142374
  confluence?: Maybe<ConfluenceQueryApi>;
@@ -141925,6 +142435,7 @@ export declare type Query = {
141925
142435
  confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
141926
142436
  confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
141927
142437
  confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
142438
+ confluence_mutablePrincipalTypesByCombinationId?: Maybe<Array<Maybe<ConfluencePermissionTransitionMutationPrincipalType>>>;
141928
142439
  confluence_nbmChainsForTransformation?: Maybe<ConfluenceNbmChainsForTransformationConnection>;
141929
142440
  confluence_nbmEligibleTransformersForChain?: Maybe<Array<Maybe<ConfluenceNbmTransformer>>>;
141930
142441
  confluence_nbmMostRecentVerificationJob?: Maybe<ConfluenceNbmVerificationJob>;
@@ -141934,6 +142445,7 @@ export declare type Query = {
141934
142445
  confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
141935
142446
  confluence_nbmTransformationJobList?: Maybe<ConfluenceNbmTransformationJobConnection>;
141936
142447
  confluence_nbmTransformationList?: Maybe<ConfluenceNbmTransformationListConnection>;
142448
+ confluence_nbmTransformerConfig?: Maybe<ConfluenceNbmTransformerConfig>;
141937
142449
  confluence_nbmVerificationResult?: Maybe<ConfluenceNbmVerificationResultConnection>;
141938
142450
  confluence_ncsPdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
141939
142451
  confluence_note?: Maybe<NoteResponse>;
@@ -141958,6 +142470,7 @@ export declare type Query = {
141958
142470
  confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
141959
142471
  confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
141960
142472
  confluence_spacePermissionsByCombinationId?: Maybe<ConfluenceSpacePermissionConnection>;
142473
+ confluence_spacePermissionsForSpaceRole?: Maybe<Array<SpacePermissionInfo>>;
141961
142474
  confluence_spaceProperty?: Maybe<ConfluenceSpaceProperty>;
141962
142475
  confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
141963
142476
  confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
@@ -142118,6 +142631,7 @@ export declare type Query = {
142118
142631
  developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
142119
142632
  devopsmetrics_echo?: Maybe<Scalars['String']['output']>;
142120
142633
  diagnostics?: Maybe<Scalars['JSON']['output']>;
142634
+ dlp_getDetectionContentSummary?: Maybe<DlpDetectionContentSummaryListResponse>;
142121
142635
  dlp_getDetectorClassificationMapping?: Maybe<DlpDetectorClassificationMappingListResponse>;
142122
142636
  dvcs?: Maybe<DvcsQuery>;
142123
142637
  echo?: Maybe<Scalars['String']['output']>;
@@ -142194,9 +142708,10 @@ export declare type Query = {
142194
142708
  graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
142195
142709
  graphStore?: Maybe<GraphStore>;
142196
142710
  graphStoreV2?: Maybe<GraphStoreV2>;
142711
+ gravity_importIdeas: GravityImportIdeasResult;
142197
142712
  gravity_jpdImportIdeas?: Maybe<JpdImportIdeasPayload>;
142198
- gravity_viewTemplateMappingProposals: GravityRefMappingProposals;
142199
- gravity_viewTemplates: Array<GravityViewTemplate>;
142713
+ gravity_viewTemplateMappingProposals: GravityViewTemplateMappingProposalsResult;
142714
+ gravity_viewTemplates: GravityViewTemplatesResult;
142200
142715
  group?: Maybe<Group>;
142201
142716
  groupCounts?: Maybe<GraphQlGroupCountsResult>;
142202
142717
  groupMembers?: Maybe<PaginatedPersonList>;
@@ -142298,9 +142813,9 @@ export declare type Query = {
142298
142813
  jira_view?: Maybe<JiraViewResult>;
142299
142814
  jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
142300
142815
  jpdViewsService_globalView?: Maybe<JpdViewsServiceGlobalView>;
142816
+ jpdViewsService_globalViewSpaces?: Maybe<JpdViewsServiceGlobalViewProjectsResponse>;
142301
142817
  jpdViewsService_globalViewsByCriteria?: Maybe<JpdViewsServiceGlobalViewConnection>;
142302
142818
  jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
142303
- jpdViewsService_hydrateGlobalViews?: Maybe<JpdViewsServiceGlobalViewsHydrationExample>;
142304
142819
  jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
142305
142820
  jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
142306
142821
  jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
@@ -142622,6 +143137,10 @@ export declare type Query = {
142622
143137
  stakeholderComms_listSubscribers?: Maybe<StakeholderCommsListSubscriberResponse>;
142623
143138
  stakeholderComms_listSubscribersConnection?: Maybe<StakeholderCommsSubscriberConnection>;
142624
143139
  stakeholderComms_subscriptionStats?: Maybe<StakeholderCommsSubscriptionStatsResponse>;
143140
+ stakeholderComms_testAPIEnterpriseOnly?: Maybe<Scalars['String']['output']>;
143141
+ stakeholderComms_testAPIFreeOnly?: Maybe<Scalars['String']['output']>;
143142
+ stakeholderComms_testAPIPremiumPlusOnly?: Maybe<Scalars['String']['output']>;
143143
+ stakeholderComms_testAPIStandardPlusOnly?: Maybe<Scalars['String']['output']>;
142625
143144
  stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
142626
143145
  stalePages?: Maybe<PaginatedStalePagePayloadList>;
142627
143146
  suggest?: Maybe<QuerySuggestionApi>;
@@ -143200,6 +143719,8 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
143200
143719
  containerAri: Scalars['ID']['input'];
143201
143720
  };
143202
143721
  export declare type QueryAgentWorkspace_AvailabilityArgs = {
143722
+ after?: InputMaybe<Scalars['String']['input']>;
143723
+ first?: InputMaybe<Scalars['Int']['input']>;
143203
143724
  input: AgentWorkspaceAvailabilityInput;
143204
143725
  };
143205
143726
  export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
@@ -143207,26 +143728,24 @@ export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
143207
143728
  projectKey: Scalars['String']['input'];
143208
143729
  };
143209
143730
  export declare type QueryAgentWorkspace_CapacityArgs = {
143731
+ after?: InputMaybe<Scalars['String']['input']>;
143732
+ first?: InputMaybe<Scalars['Int']['input']>;
143733
+ input: AgentWorkspaceCapacityInput;
143734
+ };
143735
+ export declare type QueryAgentWorkspace_CapacitySummaryArgs = {
143210
143736
  input: AgentWorkspaceCapacityInput;
143211
143737
  };
143212
143738
  export declare type QueryAgentWorkspace_CatalogArgs = {
143213
- cloudId: Scalars['ID']['input'];
143214
- id: Scalars['ID']['input'];
143215
- maxDepth?: InputMaybe<Scalars['Int']['input']>;
143739
+ input: AgentWorkspaceCatalogInput;
143216
143740
  };
143217
143741
  export declare type QueryAgentWorkspace_CatalogTypeArgs = {
143218
- cloudId: Scalars['ID']['input'];
143219
- id: Scalars['ID']['input'];
143742
+ input: AgentWorkspaceCatalogTypeInput;
143220
143743
  };
143221
143744
  export declare type QueryAgentWorkspace_CatalogTypesArgs = {
143222
- cloudId: Scalars['ID']['input'];
143223
- filter?: InputMaybe<AgentWorkspaceCatalogTypeFilterInput>;
143224
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143745
+ input: AgentWorkspaceCatalogTypesInput;
143225
143746
  };
143226
143747
  export declare type QueryAgentWorkspace_CatalogsArgs = {
143227
- cloudId: Scalars['ID']['input'];
143228
- filter?: InputMaybe<AgentWorkspaceCatalogFilterInput>;
143229
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143748
+ input: AgentWorkspaceCatalogsInput;
143230
143749
  };
143231
143750
  export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
143232
143751
  cloudId: Scalars['ID']['input'];
@@ -143249,32 +143768,22 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
143249
143768
  input: AgentWorkspaceShiftsQueryInput;
143250
143769
  };
143251
143770
  export declare type QueryAgentWorkspace_SkillArgs = {
143252
- cloudId: Scalars['ID']['input'];
143253
- id: Scalars['ID']['input'];
143771
+ input: AgentWorkspaceSkillInput;
143254
143772
  };
143255
143773
  export declare type QueryAgentWorkspace_SkillGapsArgs = {
143256
- cloudId: Scalars['ID']['input'];
143257
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143774
+ input: AgentWorkspaceSkillGapsInput;
143258
143775
  };
143259
143776
  export declare type QueryAgentWorkspace_SkillsArgs = {
143260
- cloudId: Scalars['ID']['input'];
143261
- filter?: InputMaybe<AgentWorkspaceSkillFilterInput>;
143262
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143777
+ input: AgentWorkspaceSkillsInput;
143263
143778
  };
143264
143779
  export declare type QueryAgentWorkspace_UserSkillArgs = {
143265
- cloudId: Scalars['ID']['input'];
143266
- id: Scalars['ID']['input'];
143780
+ input: AgentWorkspaceUserSkillInput;
143267
143781
  };
143268
143782
  export declare type QueryAgentWorkspace_UserSkillsArgs = {
143269
- cloudId: Scalars['ID']['input'];
143270
- filter?: InputMaybe<AgentWorkspaceUserSkillFilterInput>;
143271
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143783
+ input: AgentWorkspaceUserSkillsInput;
143272
143784
  };
143273
143785
  export declare type QueryAgentWorkspace_UsersBySkillsArgs = {
143274
- cloudId: Scalars['ID']['input'];
143275
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
143276
- skillIds: Array<Scalars['ID']['input']>;
143277
- skillMatchType?: InputMaybe<AgentWorkspaceSkillMatchType>;
143786
+ input: AgentWorkspaceUsersBySkillsInput;
143278
143787
  };
143279
143788
  export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
143280
143789
  projectAri: Scalars['ID']['input'];
@@ -143766,6 +144275,10 @@ export declare type QueryAssetsDm_TransformedDataArgs = {
143766
144275
  pagination?: InputMaybe<AssetsDmPaginationInput>;
143767
144276
  workspaceId: Scalars['ID']['input'];
143768
144277
  };
144278
+ export declare type QueryAssetsVertical_BundlesArgs = {
144279
+ cloudId: Scalars['ID']['input'];
144280
+ type?: InputMaybe<AssetsVerticalBundleType>;
144281
+ };
143769
144282
  export declare type QueryAssets_ObjectByIdArgs = {
143770
144283
  id: Scalars['ID']['input'];
143771
144284
  };
@@ -143851,6 +144364,9 @@ export declare type QueryAvp_GetDashboardsByArisArgs = {
143851
144364
  export declare type QueryAvp_GetFilterExpressionArgs = {
143852
144365
  dashboardAri: Scalars['ID']['input'];
143853
144366
  };
144367
+ export declare type QueryAvpanalytics_GetDataSourceArgs = {
144368
+ input: AvpAnalyticsGetDataSourceInput;
144369
+ };
143854
144370
  export declare type QueryAvpanalytics_GetDataSourcesArgs = {
143855
144371
  cloudId: Scalars['ID']['input'];
143856
144372
  searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
@@ -144077,6 +144593,7 @@ export declare type QueryClassificationLevelArgs = {
144077
144593
  id: Scalars['String']['input'];
144078
144594
  };
144079
144595
  export declare type QueryClassificationLevelsArgs = {
144596
+ contentId?: InputMaybe<Scalars['ID']['input']>;
144080
144597
  reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
144081
144598
  spaceKey?: InputMaybe<Scalars['String']['input']>;
144082
144599
  };
@@ -144140,6 +144657,9 @@ export declare type QueryCommerceExp_NodeArgs = {
144140
144657
  export declare type QueryCommerceExp_PlsArgs = {
144141
144658
  id?: InputMaybe<Scalars['ID']['input']>;
144142
144659
  };
144660
+ export declare type QueryCommerceExp_PoaQueryArgs = {
144661
+ id?: InputMaybe<Scalars['ID']['input']>;
144662
+ };
144143
144663
  export declare type QueryCommerceExp_TaasArgs = {
144144
144664
  id?: InputMaybe<Scalars['ID']['input']>;
144145
144665
  };
@@ -144451,6 +144971,10 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
144451
144971
  export declare type QueryConfluence_MediaTokenDataArgs = {
144452
144972
  noteId: Scalars['ID']['input'];
144453
144973
  };
144974
+ export declare type QueryConfluence_MutablePrincipalTypesByCombinationIdArgs = {
144975
+ cloudId: Scalars['ID']['input'];
144976
+ combinationId: Scalars['String']['input'];
144977
+ };
144454
144978
  export declare type QueryConfluence_NbmChainsForTransformationArgs = {
144455
144979
  after?: InputMaybe<Scalars['String']['input']>;
144456
144980
  cloudId: Scalars['ID']['input'];
@@ -144496,6 +145020,10 @@ export declare type QueryConfluence_NbmTransformationListArgs = {
144496
145020
  first?: InputMaybe<Scalars['Int']['input']>;
144497
145021
  scanId: Scalars['ID']['input'];
144498
145022
  };
145023
+ export declare type QueryConfluence_NbmTransformerConfigArgs = {
145024
+ cloudId: Scalars['ID']['input'];
145025
+ scanId: Scalars['ID']['input'];
145026
+ };
144499
145027
  export declare type QueryConfluence_NbmVerificationResultArgs = {
144500
145028
  after?: InputMaybe<Scalars['String']['input']>;
144501
145029
  cloudId: Scalars['ID']['input'];
@@ -144630,6 +145158,10 @@ export declare type QueryConfluence_SpacePermissionsByCombinationIdArgs = {
144630
145158
  combinationId: Scalars['String']['input'];
144631
145159
  first?: InputMaybe<Scalars['Int']['input']>;
144632
145160
  };
145161
+ export declare type QueryConfluence_SpacePermissionsForSpaceRoleArgs = {
145162
+ cloudId: Scalars['ID']['input'];
145163
+ roleId: Scalars['ID']['input'];
145164
+ };
144633
145165
  export declare type QueryConfluence_SpacePropertyArgs = {
144634
145166
  cloudId: Scalars['ID']['input'];
144635
145167
  key: Scalars['String']['input'];
@@ -145402,6 +145934,12 @@ export declare type QueryDevelopmentInformationArgs = {
145402
145934
  export declare type QueryDevopsmetrics_EchoArgs = {
145403
145935
  message: Scalars['String']['input'];
145404
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
+ };
145405
145943
  export declare type QueryDlp_GetDetectorClassificationMappingArgs = {
145406
145944
  cursor?: InputMaybe<Scalars['String']['input']>;
145407
145945
  orgId?: InputMaybe<Scalars['String']['input']>;
@@ -145678,6 +146216,10 @@ export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs =
145678
146216
  first?: InputMaybe<Scalars['Int']['input']>;
145679
146217
  last?: InputMaybe<Scalars['Int']['input']>;
145680
146218
  };
146219
+ export declare type QueryGravity_ImportIdeasArgs = {
146220
+ cloudId: Scalars['ID']['input'];
146221
+ input: GravityImportIdeasInput;
146222
+ };
145681
146223
  export declare type QueryGravity_JpdImportIdeasArgs = {
145682
146224
  cloudId?: InputMaybe<Scalars['ID']['input']>;
145683
146225
  input: JpdImportIdeasInput;
@@ -146047,19 +146589,18 @@ export declare type QueryJpdViewsService_EchoArgs = {
146047
146589
  export declare type QueryJpdViewsService_GlobalViewArgs = {
146048
146590
  id: Scalars['ID']['input'];
146049
146591
  };
146592
+ export declare type QueryJpdViewsService_GlobalViewSpacesArgs = {
146593
+ id: Scalars['ID']['input'];
146594
+ };
146050
146595
  export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
146051
146596
  cloudId: Scalars['ID']['input'];
146052
146597
  filter: JpdViewsServiceGlobalViewsByCriteriaInput;
146053
146598
  pagination: JpdViewsServicePaginationInput;
146054
- sortBy?: InputMaybe<JpdViewsServiceSortByInput>;
146055
146599
  };
146056
146600
  export declare type QueryJpdViewsService_GlobalViewsByIdArgs = {
146057
146601
  cloudId: Scalars['ID']['input'];
146058
146602
  ids: Array<Scalars['ID']['input']>;
146059
146603
  };
146060
- export declare type QueryJpdViewsService_HydrateGlobalViewsArgs = {
146061
- cloudId: Scalars['ID']['input'];
146062
- };
146063
146604
  export declare type QueryJpdViewsService_HydrateUserArgs = {
146064
146605
  cloudId: Scalars['ID']['input'];
146065
146606
  };
@@ -147228,6 +147769,18 @@ export declare type QueryStakeholderComms_SubscriptionStatsArgs = {
147228
147769
  itemId: Scalars['ID']['input'];
147229
147770
  type: StakeholderCommsSubscriberItemType;
147230
147771
  };
147772
+ export declare type QueryStakeholderComms_TestApiEnterpriseOnlyArgs = {
147773
+ id: Scalars['String']['input'];
147774
+ };
147775
+ export declare type QueryStakeholderComms_TestApiFreeOnlyArgs = {
147776
+ id: Scalars['String']['input'];
147777
+ };
147778
+ export declare type QueryStakeholderComms_TestApiPremiumPlusOnlyArgs = {
147779
+ id: Scalars['String']['input'];
147780
+ };
147781
+ export declare type QueryStakeholderComms_TestApiStandardPlusOnlyArgs = {
147782
+ id: Scalars['String']['input'];
147783
+ };
147231
147784
  export declare type QueryStakeholderComms_UnifiedSearchArgs = {
147232
147785
  input: StakeholderCommsUnifiedSearchInput;
147233
147786
  };
@@ -148290,17 +148843,6 @@ export declare type RankCustomFilterInput = {
148290
148843
  customFilterIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
148291
148844
  id: Scalars['String']['input'];
148292
148845
  };
148293
- export declare type RankItem = {
148294
- __typename?: 'RankItem';
148295
- id: Scalars['ID']['output'];
148296
- rank: Scalars['Float']['output'];
148297
- };
148298
- export declare type RankingDiffPayload = {
148299
- __typename?: 'RankingDiffPayload';
148300
- added?: Maybe<Array<RankItem>>;
148301
- changed?: Maybe<Array<RankItem>>;
148302
- deleted?: Maybe<Array<RankItem>>;
148303
- };
148304
148846
  export declare type RateLimitPolicyProperty = {
148305
148847
  argumentPath: Scalars['String']['input'];
148306
148848
  useCloudIdFromARI?: Scalars['Boolean']['input'];
@@ -148325,6 +148867,7 @@ export declare enum RateLimitingCurrency {
148325
148867
  HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
148326
148868
  HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
148327
148869
  JpdContainerQueryCurrency = "JPD_CONTAINER_QUERY_CURRENCY",
148870
+ JpdContainerWriteCurrency = "JPD_CONTAINER_WRITE_CURRENCY",
148328
148871
  KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
148329
148872
  PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
148330
148873
  PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
@@ -149645,6 +150188,7 @@ export declare enum Scope {
149645
150188
  DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
149646
150189
  DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
149647
150190
  DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
150191
+ DeleteInsightJpd = "DELETE_INSIGHT_JPD",
149648
150192
  DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
149649
150193
  DeleteJswSprint = "DELETE_JSW_SPRINT",
149650
150194
  DeleteOrganization = "DELETE_ORGANIZATION",
@@ -149660,6 +150204,7 @@ export declare enum Scope {
149660
150204
  DeleteStakeholderCommsPage = "DELETE_STAKEHOLDER_COMMS_PAGE",
149661
150205
  DeleteStakeholderCommsStakeholder = "DELETE_STAKEHOLDER_COMMS_STAKEHOLDER",
149662
150206
  DeleteStakeholderCommsSubscriber = "DELETE_STAKEHOLDER_COMMS_SUBSCRIBER",
150207
+ DeleteViewJpd = "DELETE_VIEW_JPD",
149663
150208
  DeployAppEnvironment = "DEPLOY_APP_ENVIRONMENT",
149664
150209
  DevelopAppEnvironment = "DEVELOP_APP_ENVIRONMENT",
149665
150210
  FieldConfigurationDelete = "FIELD_CONFIGURATION_DELETE",
@@ -149841,6 +150386,7 @@ export declare enum Scope {
149841
150386
  ReadDesign = "READ_DESIGN",
149842
150387
  ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
149843
150388
  ReadFeedbackFeedback = "READ_FEEDBACK_FEEDBACK",
150389
+ ReadInsightJpd = "READ_INSIGHT_JPD",
149844
150390
  ReadJiraUser = "READ_JIRA_USER",
149845
150391
  ReadJiraWork = "READ_JIRA_WORK",
149846
150392
  ReadJswBoardScope = "READ_JSW_BOARD_SCOPE",
@@ -149891,6 +150437,7 @@ export declare enum Scope {
149891
150437
  ReadTownsquareGoal = "READ_TOWNSQUARE_GOAL",
149892
150438
  ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
149893
150439
  ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
150440
+ ReadViewJpd = "READ_VIEW_JPD",
149894
150441
  ResolutionRead = "RESOLUTION_READ",
149895
150442
  RovoAtlassianExternal = "ROVO_ATLASSIAN_EXTERNAL",
149896
150443
  ScreenableFieldDelete = "SCREENABLE_FIELD_DELETE",
@@ -149963,6 +150510,7 @@ export declare enum Scope {
149963
150510
  WriteDesign = "WRITE_DESIGN",
149964
150511
  WriteDeveloperSpace = "WRITE_DEVELOPER_SPACE",
149965
150512
  WriteFeedbackFeedback = "WRITE_FEEDBACK_FEEDBACK",
150513
+ WriteInsightJpd = "WRITE_INSIGHT_JPD",
149966
150514
  WriteJiraWork = "WRITE_JIRA_WORK",
149967
150515
  WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
149968
150516
  WriteJswBoardScopeAdmin = "WRITE_JSW_BOARD_SCOPE_ADMIN",
@@ -150003,7 +150551,8 @@ export declare enum Scope {
150003
150551
  WriteTeamTemp = "WRITE_TEAM_TEMP",
150004
150552
  WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
150005
150553
  WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
150006
- WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP"
150554
+ WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP",
150555
+ WriteViewJpd = "WRITE_VIEW_JPD"
150007
150556
  }
150008
150557
  export declare type ScopeSprintIssue = {
150009
150558
  __typename?: 'ScopeSprintIssue';
@@ -150343,6 +150892,7 @@ export declare type SearchItemConnection = {
150343
150892
  interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
150344
150893
  pageInfo: PageInfo;
150345
150894
  queryInfo?: Maybe<SearchQueryInfo>;
150895
+ searchSessionId?: Maybe<Scalars['String']['output']>;
150346
150896
  totalCount?: Maybe<Scalars['Int']['output']>;
150347
150897
  totalCounts: Array<SearchProductCount>;
150348
150898
  };
@@ -150413,6 +150963,7 @@ export declare type SearchLinkedResult = SearchResult & {
150413
150963
  url: Scalars['String']['output'];
150414
150964
  };
150415
150965
  export declare enum SearchLinkedResultCategory {
150966
+ Child = "child",
150416
150967
  MentionedBy = "mentionedBy",
150417
150968
  Mentions = "mentions",
150418
150969
  Similar = "similar"
@@ -150477,6 +151028,7 @@ export declare type SearchQueryApiAsyncSearchArgs = {
150477
151028
  };
150478
151029
  export declare type SearchQueryApiConfigurationArgs = {
150479
151030
  cloudId: Scalars['ID']['input'];
151031
+ experience?: InputMaybe<Scalars['String']['input']>;
150480
151032
  };
150481
151033
  export declare type SearchQueryApiRecentArgs = {
150482
151034
  analytics?: InputMaybe<SearchAnalyticsInput>;
@@ -151093,8 +151645,15 @@ export declare enum SearchResultType {
151093
151645
  Tag = "tag",
151094
151646
  Type = "type",
151095
151647
  Unrecognised = "unrecognised",
151648
+ Video = "video",
151096
151649
  Whiteboard = "whiteboard"
151097
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
+ };
151098
151657
  export declare type SearchSortInput = {
151099
151658
  field: Scalars['String']['input'];
151100
151659
  key?: InputMaybe<Scalars['String']['input']>;
@@ -151130,6 +151689,7 @@ export declare type SearchThirdPartyFilter = {
151130
151689
  labels?: InputMaybe<Array<Scalars['String']['input']>>;
151131
151690
  lastUpdatedBy?: InputMaybe<Array<Scalars['String']['input']>>;
151132
151691
  range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
151692
+ salesforceFilters?: InputMaybe<SearchSalesforceFilters>;
151133
151693
  subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
151134
151694
  teamsFilters?: InputMaybe<SearchTeamsFilters>;
151135
151695
  thirdPartyProducts?: InputMaybe<Array<SearchThirdPartyProduct>>;
@@ -151140,9 +151700,12 @@ export declare type SearchThirdPartyMetadata = {
151140
151700
  __typename?: 'SearchThirdPartyMetadata';
151141
151701
  connectionId?: Maybe<Scalars['String']['output']>;
151142
151702
  datasourceId?: Maybe<Scalars['String']['output']>;
151703
+ entityTypes?: Maybe<Array<Scalars['String']['output']>>;
151704
+ environmentType?: Maybe<Scalars['String']['output']>;
151143
151705
  integrationARI: Scalars['String']['output'];
151144
151706
  isImpersonationAuthEnabled?: Maybe<Scalars['Boolean']['output']>;
151145
151707
  isUserOAuthed: Scalars['Boolean']['output'];
151708
+ lightIcon?: Maybe<Scalars['String']['output']>;
151146
151709
  name: Scalars['String']['output'];
151147
151710
  outboundAuthUrl: Scalars['String']['output'];
151148
151711
  providerId?: Maybe<Scalars['String']['output']>;
@@ -170108,6 +170671,7 @@ export declare type ShepherdWorkspace = Node & {
170108
170671
  detections: Array<ShepherdDetection>;
170109
170672
  hasDataCenterAlert?: Maybe<Scalars['Boolean']['output']>;
170110
170673
  id: Scalars['ID']['output'];
170674
+ newDetectionsCount?: Maybe<Scalars['Int']['output']>;
170111
170675
  orgId: Scalars['ID']['output'];
170112
170676
  shouldOnboard?: Maybe<Scalars['Boolean']['output']>;
170113
170677
  sites?: Maybe<Array<Maybe<ShepherdSite>>>;
@@ -176201,6 +176765,7 @@ export declare type TownsquareGoalCustomFieldsArgs = {
176201
176765
  export declare type TownsquareGoalFocusAreasArgs = {
176202
176766
  after?: InputMaybe<Scalars['String']['input']>;
176203
176767
  first?: InputMaybe<Scalars['Int']['input']>;
176768
+ queryContext?: InputMaybe<Scalars['String']['input']>;
176204
176769
  };
176205
176770
  export declare type TownsquareGoalHighlightsArgs = {
176206
176771
  after?: InputMaybe<Scalars['String']['input']>;
@@ -177576,6 +178141,7 @@ export declare type TownsquareProjectDependenciesArgs = {
177576
178141
  export declare type TownsquareProjectFocusAreasArgs = {
177577
178142
  after?: InputMaybe<Scalars['String']['input']>;
177578
178143
  first?: InputMaybe<Scalars['Int']['input']>;
178144
+ queryContext?: InputMaybe<Scalars['String']['input']>;
177579
178145
  };
177580
178146
  export declare type TownsquareProjectGoalsArgs = {
177581
178147
  after?: InputMaybe<Scalars['String']['input']>;
@@ -177593,6 +178159,7 @@ export declare type TownsquareProjectHighlightsArgs = {
177593
178159
  export declare type TownsquareProjectLinkedJiraWorkItemsArgs = {
177594
178160
  after?: InputMaybe<Scalars['String']['input']>;
177595
178161
  first?: InputMaybe<Scalars['Int']['input']>;
178162
+ queryContext?: InputMaybe<Scalars['String']['input']>;
177596
178163
  sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
177597
178164
  };
177598
178165
  export declare type TownsquareProjectLinksArgs = {
@@ -179472,6 +180039,7 @@ export declare type TrelloBaseCard = {
179472
180039
  complete?: Maybe<Scalars['Boolean']['output']>;
179473
180040
  cover?: Maybe<TrelloCardCover>;
179474
180041
  creation?: Maybe<TrelloCardCreationInfo>;
180042
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
179475
180043
  description?: Maybe<TrelloUserGeneratedText>;
179476
180044
  due?: Maybe<TrelloCardDueInfo>;
179477
180045
  id: Scalars['ID']['output'];
@@ -179528,6 +180096,7 @@ export declare type TrelloBaseCardUpdated = {
179528
180096
  complete?: Maybe<Scalars['Boolean']['output']>;
179529
180097
  cover?: Maybe<TrelloCardCoverUpdated>;
179530
180098
  creation?: Maybe<TrelloCardCreationInfo>;
180099
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
179531
180100
  description?: Maybe<TrelloUserGeneratedText>;
179532
180101
  due?: Maybe<TrelloCardDueInfo>;
179533
180102
  id: Scalars['ID']['output'];
@@ -179911,6 +180480,7 @@ export declare type TrelloCard = Node & TrelloBaseCard & {
179911
180480
  cover?: Maybe<TrelloCardCover>;
179912
180481
  creation?: Maybe<TrelloCardCreationInfo>;
179913
180482
  customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
180483
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
179914
180484
  description?: Maybe<TrelloUserGeneratedText>;
179915
180485
  due?: Maybe<TrelloCardDueInfo>;
179916
180486
  email?: Maybe<Scalars['String']['output']>;
@@ -180309,6 +180879,7 @@ export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
180309
180879
  cover?: Maybe<TrelloCardCoverUpdated>;
180310
180880
  creation?: Maybe<TrelloCardCreationInfo>;
180311
180881
  customFieldItems?: Maybe<TrelloCustomFieldItemUpdatedConnection>;
180882
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
180312
180883
  description?: Maybe<TrelloUserGeneratedText>;
180313
180884
  due?: Maybe<TrelloCardDueInfo>;
180314
180885
  email?: Maybe<Scalars['String']['output']>;
@@ -181025,6 +181596,7 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
181025
181596
  complete?: Maybe<Scalars['Boolean']['output']>;
181026
181597
  cover?: Maybe<TrelloCardCover>;
181027
181598
  creation?: Maybe<TrelloCardCreationInfo>;
181599
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
181028
181600
  description?: Maybe<TrelloUserGeneratedText>;
181029
181601
  due?: Maybe<TrelloCardDueInfo>;
181030
181602
  id: Scalars['ID']['output'];
@@ -181083,6 +181655,7 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
181083
181655
  complete?: Maybe<Scalars['Boolean']['output']>;
181084
181656
  cover?: Maybe<TrelloCardCoverUpdated>;
181085
181657
  creation?: Maybe<TrelloCardCreationInfo>;
181658
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
181086
181659
  description?: Maybe<TrelloUserGeneratedText>;
181087
181660
  due?: Maybe<TrelloCardDueInfo>;
181088
181661
  id: Scalars['ID']['output'];
@@ -181415,6 +181988,8 @@ export declare type TrelloMemberLabsPreference = {
181415
181988
  description: Scalars['String']['output'];
181416
181989
  feature: TrelloLabsFeature;
181417
181990
  isEligible: Scalars['Boolean']['output'];
181991
+ loomThumbnailUrl: Scalars['String']['output'];
181992
+ loomVideoUrl: Scalars['String']['output'];
181418
181993
  name: Scalars['String']['output'];
181419
181994
  status: TrelloLabsFeatureStatus;
181420
181995
  };
@@ -181622,6 +182197,7 @@ export declare type TrelloMutationApi = {
181622
182197
  createMemberAiRule?: Maybe<TrelloCreateMemberAiRulePayload>;
181623
182198
  createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
181624
182199
  createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
182200
+ createWorkOverviewDashboard?: Maybe<TrelloWorkOverviewDashboardPayload>;
181625
182201
  createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
181626
182202
  deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
181627
182203
  deleteBoardBackground?: Maybe<TrelloDeleteBoardBackgroundPayload>;
@@ -181670,6 +182246,7 @@ export declare type TrelloMutationApi = {
181670
182246
  updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
181671
182247
  updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
181672
182248
  updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
182249
+ updateCardDateViewedByCreator?: Maybe<TrelloUpdateCardDateViewedByCreatorPayload>;
181673
182250
  updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
181674
182251
  updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
181675
182252
  updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
@@ -181727,6 +182304,9 @@ export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
181727
182304
  export declare type TrelloMutationApiCreatePlannerCalendarEventArgs = {
181728
182305
  input: TrelloCreatePlannerCalendarEventInput;
181729
182306
  };
182307
+ export declare type TrelloMutationApiCreateWorkOverviewDashboardArgs = {
182308
+ input: TrelloWorkOverviewDashboardInput;
182309
+ };
181730
182310
  export declare type TrelloMutationApiCreateWorkspaceTagArgs = {
181731
182311
  input: TrelloCreateWorkspaceTagInput;
181732
182312
  };
@@ -181865,6 +182445,9 @@ export declare type TrelloMutationApiUpdateBoardVisibilityArgs = {
181865
182445
  export declare type TrelloMutationApiUpdateCardCoverArgs = {
181866
182446
  input: TrelloUpdateCardCoverInput;
181867
182447
  };
182448
+ export declare type TrelloMutationApiUpdateCardDateViewedByCreatorArgs = {
182449
+ input: TrelloUpdateCardDateViewedByCreatorInput;
182450
+ };
181868
182451
  export declare type TrelloMutationApiUpdateCardNameArgs = {
181869
182452
  input: TrelloUpdateCardNameInput;
181870
182453
  };
@@ -181967,6 +182550,7 @@ export declare type TrelloPlanner = {
181967
182550
  dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettings>;
181968
182551
  id: Scalars['ID']['output'];
181969
182552
  primaryAccountId?: Maybe<Scalars['ID']['output']>;
182553
+ primaryCalendar?: Maybe<TrelloPlannerPrimaryCalendar>;
181970
182554
  primaryCalendarId?: Maybe<Scalars['ID']['output']>;
181971
182555
  proposedEvents?: Maybe<TrelloPlannerProposedEventConnection>;
181972
182556
  workspace?: Maybe<TrelloWorkspace>;
@@ -182437,6 +183021,32 @@ export declare type TrelloPlannerInboxCardUpdated = TrelloPlannerBaseCardUpdated
182437
183021
  list?: Maybe<TrelloPlannerCardListUpdated>;
182438
183022
  objectId?: Maybe<Scalars['ID']['output']>;
182439
183023
  };
183024
+ export declare type TrelloPlannerPrimaryCalendar = {
183025
+ __typename?: 'TrelloPlannerPrimaryCalendar';
183026
+ color?: Maybe<TrelloPlannerCalendarColor>;
183027
+ enabled?: Maybe<Scalars['Boolean']['output']>;
183028
+ id: Scalars['ID']['output'];
183029
+ isPrimary?: Maybe<Scalars['Boolean']['output']>;
183030
+ objectId?: Maybe<Scalars['ID']['output']>;
183031
+ providerCalendarId?: Maybe<Scalars['ID']['output']>;
183032
+ readOnly?: Maybe<Scalars['Boolean']['output']>;
183033
+ timezone?: Maybe<Scalars['String']['output']>;
183034
+ title?: Maybe<Scalars['String']['output']>;
183035
+ type?: Maybe<TrelloSupportedPlannerProviders>;
183036
+ };
183037
+ export declare type TrelloPlannerPrimaryCalendarUpdated = {
183038
+ __typename?: 'TrelloPlannerPrimaryCalendarUpdated';
183039
+ color?: Maybe<TrelloPlannerCalendarColor>;
183040
+ enabled?: Maybe<Scalars['Boolean']['output']>;
183041
+ id: Scalars['ID']['output'];
183042
+ isPrimary?: Maybe<Scalars['Boolean']['output']>;
183043
+ objectId?: Maybe<Scalars['ID']['output']>;
183044
+ providerCalendarId?: Maybe<Scalars['ID']['output']>;
183045
+ readOnly?: Maybe<Scalars['Boolean']['output']>;
183046
+ timezone?: Maybe<Scalars['String']['output']>;
183047
+ title?: Maybe<Scalars['String']['output']>;
183048
+ type?: Maybe<TrelloSupportedPlannerProviders>;
183049
+ };
182440
183050
  export declare type TrelloPlannerProposedEventConnection = {
182441
183051
  __typename?: 'TrelloPlannerProposedEventConnection';
182442
183052
  edges?: Maybe<Array<TrelloPlannerProposedEventEdge>>;
@@ -182502,6 +183112,7 @@ export declare type TrelloPlannerUpdated = {
182502
183112
  __typename?: 'TrelloPlannerUpdated';
182503
183113
  accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
182504
183114
  cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnectionUpdated>;
183115
+ dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettings>;
182505
183116
  id: Scalars['ID']['output'];
182506
183117
  onBoardWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateBoardDeleted>>;
182507
183118
  onCardWithDueDateDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateDeleted>>;
@@ -182509,6 +183120,7 @@ export declare type TrelloPlannerUpdated = {
182509
183120
  onPlannerCalendarAccountDeleted?: Maybe<Array<TrelloPlannerCalendarAccountDeleted>>;
182510
183121
  onProposedEventDeleted?: Maybe<Array<TrelloProposedEventDeleted>>;
182511
183122
  primaryAccountId?: Maybe<Scalars['ID']['output']>;
183123
+ primaryCalendar?: Maybe<TrelloPlannerPrimaryCalendarUpdated>;
182512
183124
  primaryCalendarId?: Maybe<Scalars['ID']['output']>;
182513
183125
  proposedEvents?: Maybe<TrelloPlannerProposedEventConnectionUpdated>;
182514
183126
  };
@@ -182709,6 +183321,7 @@ export declare type TrelloQueryApi = {
182709
183321
  userUnrestrictedAccessSummary?: Maybe<TrelloUserUnrestrictedAccessSummary>;
182710
183322
  userWorkspaceAccessSummary?: Maybe<TrelloWorkspaceAccessSummary>;
182711
183323
  usersById?: Maybe<Array<Maybe<TrelloMember>>>;
183324
+ workOverviewDashboardJob?: Maybe<TrelloWorkOverviewDashboardJob>;
182712
183325
  workspace?: Maybe<TrelloWorkspace>;
182713
183326
  };
182714
183327
  export declare type TrelloQueryApiApplicationArgs = {
@@ -182830,6 +183443,9 @@ export declare type TrelloQueryApiUserWorkspaceAccessSummaryArgs = {
182830
183443
  export declare type TrelloQueryApiUsersByIdArgs = {
182831
183444
  ids: Array<Scalars['ID']['input']>;
182832
183445
  };
183446
+ export declare type TrelloQueryApiWorkOverviewDashboardJobArgs = {
183447
+ id: Scalars['ID']['input'];
183448
+ };
182833
183449
  export declare type TrelloQueryApiWorkspaceArgs = {
182834
183450
  id: Scalars['ID']['input'];
182835
183451
  };
@@ -183102,6 +183718,7 @@ export declare type TrelloSubscriptionApi = {
183102
183718
  onInboxUpdated?: Maybe<TrelloInboxUpdated>;
183103
183719
  onMemberPlannerEventCardsUpdated?: Maybe<TrelloMemberPlannerEventCardsUpdated>;
183104
183720
  onMemberUpdated?: Maybe<TrelloMemberUpdated>;
183721
+ onWorkOverviewDashboardJobUpdated?: Maybe<TrelloWorkOverviewDashboardJob>;
183105
183722
  onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
183106
183723
  };
183107
183724
  export declare type TrelloSubscriptionApiOnBoardCardSetUpdatedArgs = {
@@ -183124,6 +183741,9 @@ export declare type TrelloSubscriptionApiOnMemberPlannerEventCardsUpdatedArgs =
183124
183741
  export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
183125
183742
  id: Scalars['ID']['input'];
183126
183743
  };
183744
+ export declare type TrelloSubscriptionApiOnWorkOverviewDashboardJobUpdatedArgs = {
183745
+ id: Scalars['ID']['input'];
183746
+ };
183127
183747
  export declare type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
183128
183748
  id: Scalars['ID']['input'];
183129
183749
  };
@@ -183383,6 +184003,15 @@ export declare type TrelloUpdateCardCoverPayload = Payload & {
183383
184003
  errors?: Maybe<Array<MutationError>>;
183384
184004
  success: Scalars['Boolean']['output'];
183385
184005
  };
184006
+ export declare type TrelloUpdateCardDateViewedByCreatorInput = {
184007
+ cardId: Scalars['ID']['input'];
184008
+ };
184009
+ export declare type TrelloUpdateCardDateViewedByCreatorPayload = Payload & {
184010
+ __typename?: 'TrelloUpdateCardDateViewedByCreatorPayload';
184011
+ card?: Maybe<TrelloBaseCard>;
184012
+ errors?: Maybe<Array<MutationError>>;
184013
+ success: Scalars['Boolean']['output'];
184014
+ };
183386
184015
  export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
183387
184016
  __typename?: 'TrelloUpdateCardDueAction';
183388
184017
  appCreator?: Maybe<TrelloAppCreator>;
@@ -183412,6 +184041,7 @@ export declare type TrelloUpdateCardNameInput = {
183412
184041
  export declare type TrelloUpdateCardNamePayload = Payload & {
183413
184042
  __typename?: 'TrelloUpdateCardNamePayload';
183414
184043
  card?: Maybe<TrelloCard>;
184044
+ cardOrInboxCard?: Maybe<TrelloBaseCard>;
183415
184045
  errors?: Maybe<Array<MutationError>>;
183416
184046
  success: Scalars['Boolean']['output'];
183417
184047
  };
@@ -183627,6 +184257,27 @@ export declare type TrelloWatchCardPayload = Payload & {
183627
184257
  errors?: Maybe<Array<MutationError>>;
183628
184258
  success: Scalars['Boolean']['output'];
183629
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
+ };
183630
184281
  export declare type TrelloWorkspace = Node & {
183631
184282
  __typename?: 'TrelloWorkspace';
183632
184283
  aiEligible?: Maybe<Scalars['Boolean']['output']>;