@forge/cli-shared 8.16.1-next.0 → 8.17.0-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -187,11 +187,9 @@ export declare enum AvpAnalyticsColumnType {
187
187
  Text = "TEXT"
188
188
  }
189
189
  export declare type AvpAnalyticsCreateModelInput = {
190
- cloudId: Scalars['ID']['input'];
191
190
  modelDefinition?: InputMaybe<AvpAnalyticsModelDefinitionInput>;
192
191
  modelDescription?: InputMaybe<Scalars['String']['input']>;
193
192
  modelName?: InputMaybe<Scalars['String']['input']>;
194
- workspaceId: Scalars['ID']['input'];
195
193
  };
196
194
  export declare type AvpAnalyticsCreateModelPayload = Payload & {
197
195
  __typename?: 'AVPAnalyticsCreateModelPayload';
@@ -3617,8 +3615,21 @@ export declare type AgentAiIssueSummary = {
3617
3615
  export declare type AgentAiIssueSummaryResult = AgentAiIssueSummary | QueryError;
3618
3616
  export declare type AgentAiPanel = {
3619
3617
  __typename?: 'AgentAIPanel';
3618
+ changesFromLastVisit?: Maybe<Scalars['String']['output']>;
3619
+ shortSummary?: Maybe<Scalars['String']['output']>;
3620
+ };
3621
+ export declare type AgentAiPanelChangesFromLastVisitArgs = {
3622
+ lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
3623
+ };
3624
+ export declare type AgentAiPanelRefreshPayload = {
3625
+ __typename?: 'AgentAIPanelRefreshPayload';
3626
+ changesFromLastVisit?: Maybe<Scalars['String']['output']>;
3620
3627
  shortSummary?: Maybe<Scalars['String']['output']>;
3621
3628
  };
3629
+ export declare type AgentAiPanelRefreshPayloadChangesFromLastVisitArgs = {
3630
+ lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
3631
+ };
3632
+ export declare type AgentAiPanelRefreshResult = AgentAiPanelRefreshPayload | QueryError;
3622
3633
  export declare type AgentAiPanelResult = AgentAiPanel | QueryError;
3623
3634
  export declare type AgentAiSuggestAction = {
3624
3635
  __typename?: 'AgentAISuggestAction';
@@ -4656,6 +4667,7 @@ export declare type AgentStudioTeamsChannelDetails = {
4656
4667
  };
4657
4668
  export declare type AgentStudioTool = {
4658
4669
  __typename?: 'AgentStudioTool';
4670
+ configuration?: Maybe<AgentStudioToolConfiguration>;
4659
4671
  configured?: Maybe<Scalars['Boolean']['output']>;
4660
4672
  definitionId?: Maybe<Scalars['String']['output']>;
4661
4673
  definitionSource?: Maybe<AgentStudioToolDefinitionSource>;
@@ -4666,6 +4678,17 @@ export declare type AgentStudioTool = {
4666
4678
  integrationKey?: Maybe<Scalars['String']['output']>;
4667
4679
  tags?: Maybe<Array<Scalars['String']['output']>>;
4668
4680
  };
4681
+ export declare type AgentStudioToolConfiguration = {
4682
+ __typename?: 'AgentStudioToolConfiguration';
4683
+ id: Scalars['ID']['output'];
4684
+ name?: Maybe<Scalars['String']['output']>;
4685
+ properties?: Maybe<Array<AgentStudioToolPropertyConfiguration>>;
4686
+ };
4687
+ export declare type AgentStudioToolConfigurationInput = {
4688
+ id: Scalars['ID']['input'];
4689
+ name?: InputMaybe<Scalars['String']['input']>;
4690
+ properties?: InputMaybe<Array<AgentStudioToolPropertyConfigurationInput>>;
4691
+ };
4669
4692
  export declare enum AgentStudioToolDefinitionSource {
4670
4693
  ConvoAi = "CONVO_AI",
4671
4694
  Forge = "FORGE",
@@ -4683,6 +4706,7 @@ export declare type AgentStudioToolIdAndSource = {
4683
4706
  toolId: Scalars['String']['input'];
4684
4707
  };
4685
4708
  export declare type AgentStudioToolInput = {
4709
+ configuration?: InputMaybe<AgentStudioToolConfigurationInput>;
4686
4710
  configured?: InputMaybe<Scalars['Boolean']['input']>;
4687
4711
  definitionId: Scalars['String']['input'];
4688
4712
  definitionSource: AgentStudioToolDefinitionSource;
@@ -4710,6 +4734,15 @@ export declare type AgentStudioToolIntegrationsConnection = {
4710
4734
  edges: Array<AgentStudioToolIntegrationEdge>;
4711
4735
  pageInfo: PageInfo;
4712
4736
  };
4737
+ export declare type AgentStudioToolPropertyConfiguration = {
4738
+ __typename?: 'AgentStudioToolPropertyConfiguration';
4739
+ allowedValues?: Maybe<Array<Scalars['String']['output']>>;
4740
+ id: Scalars['String']['output'];
4741
+ };
4742
+ export declare type AgentStudioToolPropertyConfigurationInput = {
4743
+ allowedValues?: InputMaybe<Array<Scalars['String']['input']>>;
4744
+ id: Scalars['String']['input'];
4745
+ };
4713
4746
  export declare type AgentStudioToolsConnection = {
4714
4747
  __typename?: 'AgentStudioToolsConnection';
4715
4748
  edges: Array<AgentStudioToolEdge>;
@@ -5000,6 +5033,8 @@ export declare type AgentWorkspaceAvailabilityInput = {
5000
5033
  pageSize?: InputMaybe<Scalars['Int']['input']>;
5001
5034
  projectId?: InputMaybe<Scalars['ID']['input']>;
5002
5035
  projectKey?: InputMaybe<Scalars['String']['input']>;
5036
+ sortBy?: InputMaybe<AgentWorkspaceAvailabilitySortField>;
5037
+ sortOrder?: InputMaybe<AgentWorkspaceSortDirection>;
5003
5038
  statuses?: InputMaybe<Array<AgentWorkspaceAvailabilityStatus>>;
5004
5039
  teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
5005
5040
  teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -5015,6 +5050,11 @@ export declare type AgentWorkspaceAvailabilityPageInfo = {
5015
5050
  totalCount: Scalars['Int']['output'];
5016
5051
  totalPages: Scalars['Int']['output'];
5017
5052
  };
5053
+ export declare enum AgentWorkspaceAvailabilitySortField {
5054
+ LastUpdated = "LAST_UPDATED",
5055
+ Name = "NAME",
5056
+ Status = "STATUS"
5057
+ }
5018
5058
  export declare enum AgentWorkspaceAvailabilityStatus {
5019
5059
  Available = "AVAILABLE",
5020
5060
  OnBreak = "ON_BREAK"
@@ -5053,7 +5093,7 @@ export declare type AgentWorkspaceCapacityInput = {
5053
5093
  cloudId: Scalars['ID']['input'];
5054
5094
  projectKey: Scalars['String']['input'];
5055
5095
  sortBy?: InputMaybe<AgentWorkspaceCapacitySortField>;
5056
- sortOrder?: InputMaybe<SortDirection>;
5096
+ sortOrder?: InputMaybe<AgentWorkspaceSortDirection>;
5057
5097
  statuses?: InputMaybe<Array<AgentWorkspaceCapacityStatus>>;
5058
5098
  teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
5059
5099
  teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -5067,6 +5107,7 @@ export declare type AgentWorkspaceCapacityPageInfo = {
5067
5107
  totalCount: Scalars['Int']['output'];
5068
5108
  };
5069
5109
  export declare enum AgentWorkspaceCapacitySortField {
5110
+ Agent = "AGENT",
5070
5111
  Capacity = "CAPACITY"
5071
5112
  }
5072
5113
  export declare enum AgentWorkspaceCapacityStatus {
@@ -5126,6 +5167,7 @@ export declare type AgentWorkspaceCatalogEdge = {
5126
5167
  };
5127
5168
  export declare type AgentWorkspaceCatalogFilterInput = {
5128
5169
  catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
5170
+ hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
5129
5171
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
5130
5172
  nameContains?: InputMaybe<Scalars['String']['input']>;
5131
5173
  };
@@ -5138,11 +5180,11 @@ export declare type AgentWorkspaceCatalogInput = {
5138
5180
  export declare type AgentWorkspaceCatalogType = {
5139
5181
  __typename?: 'AgentWorkspaceCatalogType';
5140
5182
  catalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
5141
- childType?: Maybe<AgentWorkspaceCatalogType>;
5142
5183
  description?: Maybe<Scalars['String']['output']>;
5184
+ hierarchyDefinition: AgentWorkspaceHierarchyDefinition;
5143
5185
  id: Scalars['ID']['output'];
5186
+ level: Scalars['Int']['output'];
5144
5187
  name: Scalars['String']['output'];
5145
- parentType?: Maybe<AgentWorkspaceCatalogType>;
5146
5188
  };
5147
5189
  export declare type AgentWorkspaceCatalogTypeConnection = {
5148
5190
  __typename?: 'AgentWorkspaceCatalogTypeConnection';
@@ -5174,7 +5216,9 @@ export declare type AgentWorkspaceCatalogTypeEdge = {
5174
5216
  node: AgentWorkspaceCatalogType;
5175
5217
  };
5176
5218
  export declare type AgentWorkspaceCatalogTypeFilterInput = {
5219
+ hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
5177
5220
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
5221
+ level?: InputMaybe<Scalars['Int']['input']>;
5178
5222
  nameContains?: InputMaybe<Scalars['String']['input']>;
5179
5223
  };
5180
5224
  export declare type AgentWorkspaceCatalogTypeInput = {
@@ -5210,9 +5254,9 @@ export declare type AgentWorkspaceCatalogsInput = {
5210
5254
  projectKey?: InputMaybe<Scalars['String']['input']>;
5211
5255
  };
5212
5256
  export declare type AgentWorkspaceCreateCatalogInput = {
5213
- catalogTypeId: Scalars['ID']['input'];
5214
5257
  cloudId: Scalars['ID']['input'];
5215
5258
  description?: InputMaybe<Scalars['String']['input']>;
5259
+ hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
5216
5260
  name: Scalars['String']['input'];
5217
5261
  parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5218
5262
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -5220,10 +5264,18 @@ export declare type AgentWorkspaceCreateCatalogInput = {
5220
5264
  projectKey?: InputMaybe<Scalars['String']['input']>;
5221
5265
  };
5222
5266
  export declare type AgentWorkspaceCreateCatalogTypeInput = {
5267
+ cloudId: Scalars['ID']['input'];
5268
+ description?: InputMaybe<Scalars['String']['input']>;
5269
+ hierarchyDefinitionId: Scalars['ID']['input'];
5270
+ level: Scalars['Int']['input'];
5271
+ name: Scalars['String']['input'];
5272
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5273
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5274
+ };
5275
+ export declare type AgentWorkspaceCreateHierarchyDefinitionInput = {
5223
5276
  cloudId: Scalars['ID']['input'];
5224
5277
  description?: InputMaybe<Scalars['String']['input']>;
5225
5278
  name: Scalars['String']['input'];
5226
- parentTypeId?: InputMaybe<Scalars['ID']['input']>;
5227
5279
  projectId?: InputMaybe<Scalars['ID']['input']>;
5228
5280
  projectKey?: InputMaybe<Scalars['String']['input']>;
5229
5281
  };
@@ -5263,6 +5315,12 @@ export declare type AgentWorkspaceDefaultCapacity = {
5263
5315
  projectId: Scalars['ID']['output'];
5264
5316
  updatedAt: Scalars['DateTime']['output'];
5265
5317
  };
5318
+ export declare type AgentWorkspaceDeleteHierarchyDefinitionInput = {
5319
+ cloudId: Scalars['ID']['input'];
5320
+ id: Scalars['ID']['input'];
5321
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5322
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5323
+ };
5266
5324
  export declare type AgentWorkspaceDeleteScheduleInput = {
5267
5325
  cloudId: Scalars['ID']['input'];
5268
5326
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -5339,6 +5397,59 @@ export declare type AgentWorkspaceFindBestMatchAgentsPayload = {
5339
5397
  rankedAgents?: Maybe<Array<AgentWorkspaceRankedAgent>>;
5340
5398
  success: Scalars['Boolean']['output'];
5341
5399
  };
5400
+ export declare type AgentWorkspaceHierarchyDefinition = {
5401
+ __typename?: 'AgentWorkspaceHierarchyDefinition';
5402
+ catalogTypes?: Maybe<Array<AgentWorkspaceCatalogType>>;
5403
+ description?: Maybe<Scalars['String']['output']>;
5404
+ id: Scalars['ID']['output'];
5405
+ name: Scalars['String']['output'];
5406
+ };
5407
+ export declare type AgentWorkspaceHierarchyDefinitionConnection = {
5408
+ __typename?: 'AgentWorkspaceHierarchyDefinitionConnection';
5409
+ edges?: Maybe<Array<AgentWorkspaceHierarchyDefinitionEdge>>;
5410
+ nodes?: Maybe<Array<Maybe<AgentWorkspaceHierarchyDefinition>>>;
5411
+ pageInfo: AgentWorkspacePageInfo;
5412
+ };
5413
+ export declare type AgentWorkspaceHierarchyDefinitionCreateResponse = {
5414
+ __typename?: 'AgentWorkspaceHierarchyDefinitionCreateResponse';
5415
+ error?: Maybe<Scalars['String']['output']>;
5416
+ hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
5417
+ success: Scalars['Boolean']['output'];
5418
+ };
5419
+ export declare type AgentWorkspaceHierarchyDefinitionDeleteResponse = {
5420
+ __typename?: 'AgentWorkspaceHierarchyDefinitionDeleteResponse';
5421
+ deletedHierarchyDefinitionId?: Maybe<Scalars['ID']['output']>;
5422
+ error?: Maybe<Scalars['String']['output']>;
5423
+ success: Scalars['Boolean']['output'];
5424
+ };
5425
+ export declare type AgentWorkspaceHierarchyDefinitionEdge = {
5426
+ __typename?: 'AgentWorkspaceHierarchyDefinitionEdge';
5427
+ cursor: Scalars['String']['output'];
5428
+ node: AgentWorkspaceHierarchyDefinition;
5429
+ };
5430
+ export declare type AgentWorkspaceHierarchyDefinitionFilterInput = {
5431
+ ids?: InputMaybe<Array<Scalars['ID']['input']>>;
5432
+ nameContains?: InputMaybe<Scalars['String']['input']>;
5433
+ };
5434
+ export declare type AgentWorkspaceHierarchyDefinitionInput = {
5435
+ cloudId: Scalars['ID']['input'];
5436
+ id: Scalars['ID']['input'];
5437
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5438
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5439
+ };
5440
+ export declare type AgentWorkspaceHierarchyDefinitionUpdateResponse = {
5441
+ __typename?: 'AgentWorkspaceHierarchyDefinitionUpdateResponse';
5442
+ error?: Maybe<Scalars['String']['output']>;
5443
+ hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
5444
+ success: Scalars['Boolean']['output'];
5445
+ };
5446
+ export declare type AgentWorkspaceHierarchyDefinitionsInput = {
5447
+ cloudId: Scalars['ID']['input'];
5448
+ filter?: InputMaybe<AgentWorkspaceHierarchyDefinitionFilterInput>;
5449
+ pagination?: InputMaybe<AgentWorkspacePaginationInput>;
5450
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5451
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5452
+ };
5342
5453
  export declare type AgentWorkspacePageInfo = {
5343
5454
  __typename?: 'AgentWorkspacePageInfo';
5344
5455
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -5352,6 +5463,19 @@ export declare type AgentWorkspacePaginationInput = {
5352
5463
  first?: InputMaybe<Scalars['Int']['input']>;
5353
5464
  last?: InputMaybe<Scalars['Int']['input']>;
5354
5465
  };
5466
+ export declare type AgentWorkspaceProjectDefaultAvailability = {
5467
+ __typename?: 'AgentWorkspaceProjectDefaultAvailability';
5468
+ projectId: Scalars['ID']['output'];
5469
+ status: AgentWorkspaceAvailabilityStatus;
5470
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
5471
+ updatedBy?: Maybe<Scalars['ID']['output']>;
5472
+ };
5473
+ export declare type AgentWorkspaceProjectDefaultAvailabilityPayload = {
5474
+ __typename?: 'AgentWorkspaceProjectDefaultAvailabilityPayload';
5475
+ errors?: Maybe<Array<AgentWorkspaceAvailabilityError>>;
5476
+ projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
5477
+ success: Scalars['Boolean']['output'];
5478
+ };
5355
5479
  export declare type AgentWorkspaceProjectSkill = {
5356
5480
  __typename?: 'AgentWorkspaceProjectSkill';
5357
5481
  id: Scalars['ID']['output'];
@@ -5524,6 +5648,11 @@ export declare type AgentWorkspaceSetDefaultCapacityPayload = {
5524
5648
  errors?: Maybe<Array<AgentWorkspaceCapacityError>>;
5525
5649
  success: Scalars['Boolean']['output'];
5526
5650
  };
5651
+ export declare type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
5652
+ cloudId: Scalars['ID']['input'];
5653
+ projectId: Scalars['ID']['input'];
5654
+ status: AgentWorkspaceAvailabilityStatus;
5655
+ };
5527
5656
  export declare type AgentWorkspaceShift = {
5528
5657
  __typename?: 'AgentWorkspaceShift';
5529
5658
  agentId: Scalars['ID']['output'];
@@ -5672,6 +5801,10 @@ export declare type AgentWorkspaceSmartRoutingConfig = {
5672
5801
  __typename?: 'AgentWorkspaceSmartRoutingConfig';
5673
5802
  enabled: Scalars['Boolean']['output'];
5674
5803
  };
5804
+ export declare enum AgentWorkspaceSortDirection {
5805
+ Asc = "ASC",
5806
+ Desc = "DESC"
5807
+ }
5675
5808
  export declare type AgentWorkspaceSubscribeSkillInput = {
5676
5809
  cloudId: Scalars['ID']['input'];
5677
5810
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -5750,6 +5883,16 @@ export declare type AgentWorkspaceUpdateCatalogInput = {
5750
5883
  projectKey?: InputMaybe<Scalars['String']['input']>;
5751
5884
  };
5752
5885
  export declare type AgentWorkspaceUpdateCatalogTypeInput = {
5886
+ cloudId: Scalars['ID']['input'];
5887
+ description?: InputMaybe<Scalars['String']['input']>;
5888
+ hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
5889
+ id: Scalars['ID']['input'];
5890
+ level?: InputMaybe<Scalars['Int']['input']>;
5891
+ name?: InputMaybe<Scalars['String']['input']>;
5892
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5893
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5894
+ };
5895
+ export declare type AgentWorkspaceUpdateHierarchyDefinitionInput = {
5753
5896
  cloudId: Scalars['ID']['input'];
5754
5897
  description?: InputMaybe<Scalars['String']['input']>;
5755
5898
  id: Scalars['ID']['input'];
@@ -7680,6 +7823,8 @@ export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
7680
7823
  attribute?: Maybe<AssetsAriAttribute>;
7681
7824
  id: Scalars['ID']['output'];
7682
7825
  name: Scalars['String']['output'];
7826
+ objectId?: Maybe<Scalars['ID']['output']>;
7827
+ schemaId?: Maybe<Scalars['ID']['output']>;
7683
7828
  value?: Maybe<Array<AssetsAriAttributeValue>>;
7684
7829
  };
7685
7830
  export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CompassComponent | CustomerUser | IdentityGroup | TeamV2;
@@ -7687,6 +7832,8 @@ export declare type AssetsAttributeOnObject = {
7687
7832
  attribute?: Maybe<AssetsObjectTypeAttribute>;
7688
7833
  id: Scalars['ID']['output'];
7689
7834
  name: Scalars['String']['output'];
7835
+ objectId?: Maybe<Scalars['ID']['output']>;
7836
+ schemaId?: Maybe<Scalars['ID']['output']>;
7690
7837
  };
7691
7838
  export declare type AssetsAvatar = {
7692
7839
  __typename?: 'AssetsAvatar';
@@ -7708,6 +7855,8 @@ export declare type AssetsBooleanAttributeOnObject = AssetsAttributeOnObject & {
7708
7855
  attribute?: Maybe<AssetsBooleanAttribute>;
7709
7856
  id: Scalars['ID']['output'];
7710
7857
  name: Scalars['String']['output'];
7858
+ objectId?: Maybe<Scalars['ID']['output']>;
7859
+ schemaId?: Maybe<Scalars['ID']['output']>;
7711
7860
  value?: Maybe<Scalars['Boolean']['output']>;
7712
7861
  };
7713
7862
  export declare type AssetsDmAdapter = {
@@ -8026,6 +8175,7 @@ export declare type AssetsDmDataDictionaryGroupValuesResponse = {
8026
8175
  export declare type AssetsDmDataDictionaryGroupsResponse = {
8027
8176
  __typename?: 'AssetsDMDataDictionaryGroupsResponse';
8028
8177
  dictionaryName?: Maybe<Scalars['String']['output']>;
8178
+ lastUpdateDate?: Maybe<Scalars['String']['output']>;
8029
8179
  pageInfo: AssetsDmDataDictionaryPageInfo;
8030
8180
  rows: Array<AssetsDmDataDictionaryGroupRow>;
8031
8181
  totalCount: Scalars['Int']['output'];
@@ -9817,6 +9967,8 @@ export declare type AssetsDateAttributeOnObject = AssetsAttributeOnObject & {
9817
9967
  attribute?: Maybe<AssetsDateAttribute>;
9818
9968
  id: Scalars['ID']['output'];
9819
9969
  name: Scalars['String']['output'];
9970
+ objectId?: Maybe<Scalars['ID']['output']>;
9971
+ schemaId?: Maybe<Scalars['ID']['output']>;
9820
9972
  value?: Maybe<Scalars['String']['output']>;
9821
9973
  };
9822
9974
  export declare type AssetsDatetimeAttribute = AssetsObjectTypeAttribute & {
@@ -9831,6 +9983,8 @@ export declare type AssetsDatetimeAttributeOnObject = AssetsAttributeOnObject &
9831
9983
  attribute?: Maybe<AssetsDatetimeAttribute>;
9832
9984
  id: Scalars['ID']['output'];
9833
9985
  name: Scalars['String']['output'];
9986
+ objectId?: Maybe<Scalars['ID']['output']>;
9987
+ schemaId?: Maybe<Scalars['ID']['output']>;
9834
9988
  value?: Maybe<Scalars['DateTime']['output']>;
9835
9989
  };
9836
9990
  export declare type AssetsEmailAttribute = AssetsObjectTypeAttribute & {
@@ -9845,6 +9999,8 @@ export declare type AssetsEmailAttributeOnObject = AssetsAttributeOnObject & {
9845
9999
  attribute?: Maybe<AssetsEmailAttribute>;
9846
10000
  id: Scalars['ID']['output'];
9847
10001
  name: Scalars['String']['output'];
10002
+ objectId?: Maybe<Scalars['ID']['output']>;
10003
+ schemaId?: Maybe<Scalars['ID']['output']>;
9848
10004
  value?: Maybe<Array<Scalars['String']['output']>>;
9849
10005
  };
9850
10006
  export declare type AssetsFloatAttribute = AssetsObjectTypeAttribute & {
@@ -9860,6 +10016,8 @@ export declare type AssetsFloatAttributeOnObject = AssetsAttributeOnObject & {
9860
10016
  attribute?: Maybe<AssetsFloatAttribute>;
9861
10017
  id: Scalars['ID']['output'];
9862
10018
  name: Scalars['String']['output'];
10019
+ objectId?: Maybe<Scalars['ID']['output']>;
10020
+ schemaId?: Maybe<Scalars['ID']['output']>;
9863
10021
  value?: Maybe<Scalars['Float']['output']>;
9864
10022
  };
9865
10023
  export declare type AssetsGroupAttribute = AssetsObjectTypeAttribute & {
@@ -9874,6 +10032,8 @@ export declare type AssetsGroupAttributeOnObject = AssetsAttributeOnObject & {
9874
10032
  attribute?: Maybe<AssetsGroupAttribute>;
9875
10033
  id: Scalars['ID']['output'];
9876
10034
  name: Scalars['String']['output'];
10035
+ objectId?: Maybe<Scalars['ID']['output']>;
10036
+ schemaId?: Maybe<Scalars['ID']['output']>;
9877
10037
  value?: Maybe<Array<AssetsGroupAttributeValue>>;
9878
10038
  };
9879
10039
  export declare type AssetsGroupAttributeValue = {
@@ -9893,6 +10053,8 @@ export declare type AssetsIpAddressAttributeOnObject = AssetsAttributeOnObject &
9893
10053
  attribute?: Maybe<AssetsIpAddressAttribute>;
9894
10054
  id: Scalars['ID']['output'];
9895
10055
  name: Scalars['String']['output'];
10056
+ objectId?: Maybe<Scalars['ID']['output']>;
10057
+ schemaId?: Maybe<Scalars['ID']['output']>;
9896
10058
  value?: Maybe<Scalars['String']['output']>;
9897
10059
  };
9898
10060
  export declare type AssetsIcon = {
@@ -9914,6 +10076,8 @@ export declare type AssetsIntegerAttributeOnObject = AssetsAttributeOnObject & {
9914
10076
  attribute?: Maybe<AssetsIntegerAttribute>;
9915
10077
  id: Scalars['ID']['output'];
9916
10078
  name: Scalars['String']['output'];
10079
+ objectId?: Maybe<Scalars['ID']['output']>;
10080
+ schemaId?: Maybe<Scalars['ID']['output']>;
9917
10081
  value?: Maybe<Scalars['Int']['output']>;
9918
10082
  };
9919
10083
  export declare type AssetsLinks = {
@@ -9973,6 +10137,8 @@ export declare type AssetsObjectReferenceAttributeOnObject = AssetsAttributeOnOb
9973
10137
  attribute?: Maybe<AssetsObjectAttribute>;
9974
10138
  id: Scalars['ID']['output'];
9975
10139
  name: Scalars['String']['output'];
10140
+ objectId?: Maybe<Scalars['ID']['output']>;
10141
+ schemaId?: Maybe<Scalars['ID']['output']>;
9976
10142
  value?: Maybe<Array<AssetsObjectNode>>;
9977
10143
  };
9978
10144
  export declare type AssetsObjectType = Node & {
@@ -10023,6 +10189,8 @@ export declare type AssetsSelectAttributeOnObject = AssetsAttributeOnObject & {
10023
10189
  attribute?: Maybe<AssetsSelectAttribute>;
10024
10190
  id: Scalars['ID']['output'];
10025
10191
  name: Scalars['String']['output'];
10192
+ objectId?: Maybe<Scalars['ID']['output']>;
10193
+ schemaId?: Maybe<Scalars['ID']['output']>;
10026
10194
  value?: Maybe<Array<Scalars['String']['output']>>;
10027
10195
  };
10028
10196
  export declare type AssetsServiceObject = AssetsObjectNode & Node & {
@@ -10040,7 +10208,11 @@ export declare type AssetsServiceObject = AssetsObjectNode & Node & {
10040
10208
  links?: Maybe<AssetsLinks>;
10041
10209
  objectKey?: Maybe<Scalars['String']['output']>;
10042
10210
  objectType?: Maybe<AssetsObjectType>;
10211
+ openAlertsCount?: Maybe<SoftwareCatalogCountByService>;
10212
+ openIncidentsCount?: Maybe<SoftwareCatalogCountByService>;
10043
10213
  outboundDependencyCount?: Maybe<Scalars['Int']['output']>;
10214
+ ownerTeamId?: Maybe<Scalars['ID']['output']>;
10215
+ upcomingChangesCount?: Maybe<SoftwareCatalogCountByService>;
10044
10216
  updated?: Maybe<Scalars['DateTime']['output']>;
10045
10217
  };
10046
10218
  export declare type AssetsServiceObjectAttributesArgs = {
@@ -10058,6 +10230,8 @@ export declare type AssetsSpaceAttributeOnObject = AssetsAttributeOnObject & {
10058
10230
  attribute?: Maybe<AssetsSpaceAttribute>;
10059
10231
  id: Scalars['ID']['output'];
10060
10232
  name: Scalars['String']['output'];
10233
+ objectId?: Maybe<Scalars['ID']['output']>;
10234
+ schemaId?: Maybe<Scalars['ID']['output']>;
10061
10235
  value?: Maybe<Array<AssetsSpaceAttributeValue>>;
10062
10236
  };
10063
10237
  export declare type AssetsSpaceAttributeValue = {
@@ -10080,6 +10254,8 @@ export declare type AssetsStatusAttributeOnObject = AssetsAttributeOnObject & {
10080
10254
  attribute?: Maybe<AssetsStatusAttribute>;
10081
10255
  id: Scalars['ID']['output'];
10082
10256
  name: Scalars['String']['output'];
10257
+ objectId?: Maybe<Scalars['ID']['output']>;
10258
+ schemaId?: Maybe<Scalars['ID']['output']>;
10083
10259
  value?: Maybe<Array<AssetsStatusType>>;
10084
10260
  };
10085
10261
  export declare enum AssetsStatusCategory {
@@ -10106,6 +10282,8 @@ export declare type AssetsTagAttributeOnObject = AssetsAttributeOnObject & {
10106
10282
  attribute?: Maybe<AssetsTagAttribute>;
10107
10283
  id: Scalars['ID']['output'];
10108
10284
  name: Scalars['String']['output'];
10285
+ objectId?: Maybe<Scalars['ID']['output']>;
10286
+ schemaId?: Maybe<Scalars['ID']['output']>;
10109
10287
  value?: Maybe<Array<Scalars['String']['output']>>;
10110
10288
  };
10111
10289
  export declare type AssetsTextAttribute = AssetsObjectTypeAttribute & {
@@ -10120,6 +10298,8 @@ export declare type AssetsTextAttributeOnObject = AssetsAttributeOnObject & {
10120
10298
  attribute?: Maybe<AssetsTextAttribute>;
10121
10299
  id: Scalars['ID']['output'];
10122
10300
  name: Scalars['String']['output'];
10301
+ objectId?: Maybe<Scalars['ID']['output']>;
10302
+ schemaId?: Maybe<Scalars['ID']['output']>;
10123
10303
  value?: Maybe<Scalars['String']['output']>;
10124
10304
  };
10125
10305
  export declare type AssetsTextareaAttribute = AssetsObjectTypeAttribute & {
@@ -10134,6 +10314,8 @@ export declare type AssetsTextareaAttributeOnObject = AssetsAttributeOnObject &
10134
10314
  attribute?: Maybe<AssetsTextareaAttribute>;
10135
10315
  id: Scalars['ID']['output'];
10136
10316
  name: Scalars['String']['output'];
10317
+ objectId?: Maybe<Scalars['ID']['output']>;
10318
+ schemaId?: Maybe<Scalars['ID']['output']>;
10137
10319
  value?: Maybe<Scalars['String']['output']>;
10138
10320
  };
10139
10321
  export declare type AssetsUrlAttribute = AssetsObjectTypeAttribute & {
@@ -10148,6 +10330,8 @@ export declare type AssetsUrlAttributeOnObject = AssetsAttributeOnObject & {
10148
10330
  attribute?: Maybe<AssetsUrlAttribute>;
10149
10331
  id: Scalars['ID']['output'];
10150
10332
  name: Scalars['String']['output'];
10333
+ objectId?: Maybe<Scalars['ID']['output']>;
10334
+ schemaId?: Maybe<Scalars['ID']['output']>;
10151
10335
  value?: Maybe<Array<Scalars['String']['output']>>;
10152
10336
  };
10153
10337
  export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
@@ -10163,6 +10347,8 @@ export declare type AssetsUserAttributeOnObject = AssetsAttributeOnObject & {
10163
10347
  attribute?: Maybe<AssetsUserAttribute>;
10164
10348
  id: Scalars['ID']['output'];
10165
10349
  name: Scalars['String']['output'];
10350
+ objectId?: Maybe<Scalars['ID']['output']>;
10351
+ schemaId?: Maybe<Scalars['ID']['output']>;
10166
10352
  value?: Maybe<Array<AssetsUserAttributeValue>>;
10167
10353
  };
10168
10354
  export declare type AssetsUserAttributeValue = {
@@ -10185,6 +10371,40 @@ export declare type AssetsVerticalAsyncTaskPayload = {
10185
10371
  __typename?: 'AssetsVerticalAsyncTaskPayload';
10186
10372
  taskId: Scalars['String']['output'];
10187
10373
  };
10374
+ export declare enum AssetsVerticalAttributeCategory {
10375
+ Hardwares = "HARDWARES",
10376
+ Models = "MODELS",
10377
+ Stockrooms = "STOCKROOMS"
10378
+ }
10379
+ export declare type AssetsVerticalAttributeDetailsInput = {
10380
+ otId: Scalars['String']['input'];
10381
+ otaId: Scalars['String']['input'];
10382
+ };
10383
+ export declare type AssetsVerticalAttributeValuesFailure = {
10384
+ __typename?: 'AssetsVerticalAttributeValuesFailure';
10385
+ error?: Maybe<Array<Maybe<AssetsVerticalInventoryError>>>;
10386
+ };
10387
+ export declare type AssetsVerticalAttributeValuesInput = {
10388
+ attributes: Array<AssetsVerticalAttributeDetailsInput>;
10389
+ category: AssetsVerticalAttributeCategory;
10390
+ query?: InputMaybe<Scalars['String']['input']>;
10391
+ verticalInstantiationId: Scalars['ID']['input'];
10392
+ workspaceId: Scalars['ID']['input'];
10393
+ };
10394
+ export declare type AssetsVerticalAttributeValuesResult = AssetsVerticalAttributeValuesFailure | AssetsVerticalAttributeValuesSuccess;
10395
+ export declare type AssetsVerticalAttributeValuesSuccess = {
10396
+ __typename?: 'AssetsVerticalAttributeValuesSuccess';
10397
+ attributeValues?: Maybe<Array<Maybe<AssetsVerticalObjectAttributeValue>>>;
10398
+ };
10399
+ export declare type AssetsVerticalAvatar = {
10400
+ __typename?: 'AssetsVerticalAvatar';
10401
+ objectId?: Maybe<Scalars['String']['output']>;
10402
+ url16?: Maybe<Scalars['String']['output']>;
10403
+ url48?: Maybe<Scalars['String']['output']>;
10404
+ url72?: Maybe<Scalars['String']['output']>;
10405
+ url144?: Maybe<Scalars['String']['output']>;
10406
+ url288?: Maybe<Scalars['String']['output']>;
10407
+ };
10188
10408
  export declare type AssetsVerticalBundle = {
10189
10409
  __typename?: 'AssetsVerticalBundle';
10190
10410
  id: Scalars['ID']['output'];
@@ -10239,6 +10459,44 @@ export declare enum AssetsVerticalInsightsStatus {
10239
10459
  NotStarted = "NOT_STARTED",
10240
10460
  Pending = "PENDING"
10241
10461
  }
10462
+ export declare type AssetsVerticalInventoryError = {
10463
+ __typename?: 'AssetsVerticalInventoryError';
10464
+ code?: Maybe<AssetsVerticalInventoryErrorCode>;
10465
+ details?: Maybe<Scalars['String']['output']>;
10466
+ message?: Maybe<Scalars['String']['output']>;
10467
+ };
10468
+ export declare enum AssetsVerticalInventoryErrorCode {
10469
+ Forbidden = "FORBIDDEN",
10470
+ Internal = "INTERNAL",
10471
+ NotFound = "NOT_FOUND",
10472
+ Timeout = "TIMEOUT",
10473
+ ValidationError = "VALIDATION_ERROR"
10474
+ }
10475
+ export declare type AssetsVerticalObject = AssetsVerticalObjectNode & {
10476
+ __typename?: 'AssetsVerticalObject';
10477
+ avatar?: Maybe<AssetsVerticalAvatar>;
10478
+ hasAvatar?: Maybe<Scalars['Boolean']['output']>;
10479
+ id?: Maybe<Scalars['String']['output']>;
10480
+ label?: Maybe<Scalars['String']['output']>;
10481
+ name?: Maybe<Scalars['String']['output']>;
10482
+ objectKey?: Maybe<Scalars['String']['output']>;
10483
+ };
10484
+ export declare type AssetsVerticalObjectAttributeValue = {
10485
+ __typename?: 'AssetsVerticalObjectAttributeValue';
10486
+ displayValue?: Maybe<Scalars['String']['output']>;
10487
+ referencedObject?: Maybe<AssetsVerticalObject>;
10488
+ referencedType?: Maybe<Scalars['Boolean']['output']>;
10489
+ searchValue?: Maybe<Scalars['String']['output']>;
10490
+ status?: Maybe<AssetsVerticalStatusType>;
10491
+ };
10492
+ export declare type AssetsVerticalObjectNode = {
10493
+ avatar?: Maybe<AssetsVerticalAvatar>;
10494
+ hasAvatar?: Maybe<Scalars['Boolean']['output']>;
10495
+ id?: Maybe<Scalars['String']['output']>;
10496
+ label?: Maybe<Scalars['String']['output']>;
10497
+ name?: Maybe<Scalars['String']['output']>;
10498
+ objectKey?: Maybe<Scalars['String']['output']>;
10499
+ };
10242
10500
  export declare type AssetsVerticalSchemaTemplate = {
10243
10501
  __typename?: 'AssetsVerticalSchemaTemplate';
10244
10502
  description?: Maybe<Scalars['String']['output']>;
@@ -10249,6 +10507,12 @@ export declare type AssetsVerticalSchemaTemplate = {
10249
10507
  objectTypeCount?: Maybe<Scalars['Int']['output']>;
10250
10508
  type: Scalars['String']['output'];
10251
10509
  };
10510
+ export declare type AssetsVerticalStatusType = {
10511
+ __typename?: 'AssetsVerticalStatusType';
10512
+ category?: Maybe<Scalars['Int']['output']>;
10513
+ description?: Maybe<Scalars['String']['output']>;
10514
+ name?: Maybe<Scalars['String']['output']>;
10515
+ };
10252
10516
  export declare type AssignIssueParentInput = {
10253
10517
  boardId: Scalars['ID']['input'];
10254
10518
  issueIds: Array<Scalars['ID']['input']>;
@@ -13552,6 +13816,26 @@ export declare type ChannelPlatformAudioFeatures = {
13552
13816
  __typename?: 'ChannelPlatformAudioFeatures';
13553
13817
  echoReduction?: Maybe<Scalars['String']['output']>;
13554
13818
  };
13819
+ export declare type ChannelPlatformBotConversationInput = {
13820
+ action: Scalars['String']['input'];
13821
+ answer?: InputMaybe<Scalars['String']['input']>;
13822
+ contactId: Scalars['String']['input'];
13823
+ workflowId?: InputMaybe<Scalars['String']['input']>;
13824
+ };
13825
+ export declare type ChannelPlatformBotConversationResponse = {
13826
+ __typename?: 'ChannelPlatformBotConversationResponse';
13827
+ closeMessage?: Maybe<Scalars['String']['output']>;
13828
+ collectedData?: Maybe<Scalars['JSON']['output']>;
13829
+ contactId: Scalars['String']['output'];
13830
+ currentStep?: Maybe<Scalars['String']['output']>;
13831
+ options?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
13832
+ question?: Maybe<Scalars['String']['output']>;
13833
+ status: ChannelPlatformBotConversationStatus;
13834
+ };
13835
+ export declare enum ChannelPlatformBotConversationStatus {
13836
+ Completed = "COMPLETED",
13837
+ InProgress = "IN_PROGRESS"
13838
+ }
13555
13839
  export declare type ChannelPlatformChannelAvailabilityRequestInput = {
13556
13840
  aaId?: InputMaybe<Scalars['String']['input']>;
13557
13841
  cloudId?: InputMaybe<Scalars['String']['input']>;
@@ -13885,11 +14169,14 @@ export declare enum Classification {
13885
14169
  }
13886
14170
  export declare type ClassificationLevelDetails = {
13887
14171
  __typename?: 'ClassificationLevelDetails';
14172
+ canManageSpaceSettings: Scalars['Boolean']['output'];
14173
+ classificationControlSetting?: Maybe<Scalars['String']['output']>;
13888
14174
  classificationLevel?: Maybe<ContentDataClassificationLevel>;
13889
14175
  classificationLevelId?: Maybe<Scalars['ID']['output']>;
13890
14176
  featureEnabled: Scalars['Boolean']['output'];
13891
14177
  isReclassificationPermitted: Scalars['Boolean']['output'];
13892
14178
  source?: Maybe<ClassificationLevelSource>;
14179
+ userOverrideSetting?: Maybe<Scalars['String']['output']>;
13893
14180
  };
13894
14181
  export declare enum ClassificationLevelSource {
13895
14182
  Content = "CONTENT",
@@ -13922,6 +14209,38 @@ export declare enum CloudIdProduct {
13922
14209
  Radar = "RADAR",
13923
14210
  Statuspage = "STATUSPAGE"
13924
14211
  }
14212
+ export declare type CloudifyAnalysisExecution = {
14213
+ __typename?: 'CloudifyAnalysisExecution';
14214
+ analysisExecutionState: CloudifyAnalysisExecutionState;
14215
+ analysisParts: Array<CloudifyAnalysisPart>;
14216
+ createdAt: Scalars['String']['output'];
14217
+ id: CloudifyAnalysisId;
14218
+ target: CloudifyRecommendationTarget;
14219
+ };
14220
+ export declare enum CloudifyAnalysisExecutionState {
14221
+ Finished = "FINISHED",
14222
+ InProgress = "IN_PROGRESS",
14223
+ Queued = "QUEUED"
14224
+ }
14225
+ export declare type CloudifyAnalysisId = {
14226
+ __typename?: 'CloudifyAnalysisId';
14227
+ value: Scalars['String']['output'];
14228
+ };
14229
+ export declare type CloudifyAnalysisPart = {
14230
+ __typename?: 'CloudifyAnalysisPart';
14231
+ analysisResult: CloudifyAnalysisResult;
14232
+ analysisType: CloudifyAnalysisType;
14233
+ finishedAt: Scalars['String']['output'];
14234
+ startedAt: Scalars['String']['output'];
14235
+ };
14236
+ export declare enum CloudifyAnalysisResult {
14237
+ Failed = "FAILED",
14238
+ Finished = "FINISHED"
14239
+ }
14240
+ export declare enum CloudifyAnalysisType {
14241
+ AiBased = "AI_BASED",
14242
+ RuleBased = "RULE_BASED"
14243
+ }
13925
14244
  export declare type CloudifyArgument = {
13926
14245
  __typename?: 'CloudifyArgument';
13927
14246
  key: Scalars['String']['output'];
@@ -13935,6 +14254,28 @@ export declare type CloudifyCloudProjectTarget = {
13935
14254
  __typename?: 'CloudifyCloudProjectTarget';
13936
14255
  project: CloudifyProjectAri;
13937
14256
  };
14257
+ export declare type CloudifyEnactment = {
14258
+ __typename?: 'CloudifyEnactment';
14259
+ completedAt?: Maybe<Scalars['String']['output']>;
14260
+ errorMessage?: Maybe<Scalars['String']['output']>;
14261
+ id: CloudifyEnactmentId;
14262
+ recommendationId: CloudifyRecommendationId;
14263
+ startedAt: Scalars['String']['output'];
14264
+ status: CloudifyEnactmentStatus;
14265
+ };
14266
+ export declare type CloudifyEnactmentId = {
14267
+ __typename?: 'CloudifyEnactmentId';
14268
+ value: Scalars['String']['output'];
14269
+ };
14270
+ export declare enum CloudifyEnactmentStatus {
14271
+ Completed = "COMPLETED",
14272
+ Executing = "EXECUTING",
14273
+ Failed = "FAILED"
14274
+ }
14275
+ export declare type CloudifyGreeting = {
14276
+ __typename?: 'CloudifyGreeting';
14277
+ message: Scalars['String']['output'];
14278
+ };
13938
14279
  export declare type CloudifyProjectAri = {
13939
14280
  __typename?: 'CloudifyProjectARI';
13940
14281
  projectId: Scalars['ID']['output'];
@@ -15367,6 +15708,7 @@ export declare type CommerceExpCcpQuote = CommerceExpNode & {
15367
15708
  lineItemDisplayGroupForBAC2?: Maybe<CommerceExpLineItemDisplayGroupResult>;
15368
15709
  lineItems?: Maybe<Array<Maybe<CommerceExpLineItemResponse>>>;
15369
15710
  lineItems2?: Maybe<CommerceExpLineItemsResult>;
15711
+ lineItems3?: Maybe<CommerceExpQuoteLineItemConnection>;
15370
15712
  lineItemsCount?: Maybe<Scalars['Int']['output']>;
15371
15713
  locale?: Maybe<Scalars['String']['output']>;
15372
15714
  name?: Maybe<Scalars['String']['output']>;
@@ -15395,6 +15737,12 @@ export declare type CommerceExpCcpQuoteLineItemDisplayGroupForBacArgs = {
15395
15737
  export declare type CommerceExpCcpQuoteLineItemDisplayGroupForBac2Args = {
15396
15738
  groupingLevel?: InputMaybe<CommerceExpQuoteLineItemGroupingLevelType>;
15397
15739
  };
15740
+ export declare type CommerceExpCcpQuoteLineItems3Args = {
15741
+ after?: InputMaybe<Scalars['String']['input']>;
15742
+ before?: InputMaybe<Scalars['String']['input']>;
15743
+ first?: InputMaybe<Scalars['Int']['input']>;
15744
+ last?: InputMaybe<Scalars['Int']['input']>;
15745
+ };
15398
15746
  export declare type CommerceExpCcpRelationshipFilter = {
15399
15747
  relationshipType?: InputMaybe<Scalars['String']['input']>;
15400
15748
  };
@@ -17517,6 +17865,11 @@ export declare type CommerceExpPurchaseOrderInput = {
17517
17865
  export declare type CommerceExpQuoteFilter = {
17518
17866
  status?: InputMaybe<CommerceExpQuoteStatusFilter>;
17519
17867
  };
17868
+ export declare type CommerceExpQuoteLineItemConnection = {
17869
+ __typename?: 'CommerceExpQuoteLineItemConnection';
17870
+ edges?: Maybe<Array<Maybe<CommerceExpQuoteLineItemEdge>>>;
17871
+ pageInfo: PageInfo;
17872
+ };
17520
17873
  export declare enum CommerceExpQuoteLineItemContainerType {
17521
17874
  BillingSchedule = "BILLING_SCHEDULE",
17522
17875
  Container = "CONTAINER",
@@ -17524,6 +17877,11 @@ export declare enum CommerceExpQuoteLineItemContainerType {
17524
17877
  Single = "SINGLE",
17525
17878
  Site = "SITE"
17526
17879
  }
17880
+ export declare type CommerceExpQuoteLineItemEdge = {
17881
+ __typename?: 'CommerceExpQuoteLineItemEdge';
17882
+ cursor: Scalars['String']['output'];
17883
+ node?: Maybe<CommerceExpLineItemResponse>;
17884
+ };
17527
17885
  export declare enum CommerceExpQuoteLineItemGroupingLevelType {
17528
17886
  BillingSchedule = "BILLING_SCHEDULE"
17529
17887
  }
@@ -28025,6 +28383,17 @@ export declare enum ConfluenceSiteEmailAddressStatus {
28025
28383
  Inactive = "INACTIVE",
28026
28384
  SiteEmailAddressNotPresent = "SITE_EMAIL_ADDRESS_NOT_PRESENT"
28027
28385
  }
28386
+ export declare type ConfluenceSmartSpaceOverview = {
28387
+ __typename?: 'ConfluenceSmartSpaceOverview';
28388
+ summary?: Maybe<ConfluenceSmartSpaceOverviewSummary>;
28389
+ };
28390
+ export declare type ConfluenceSmartSpaceOverviewSummary = {
28391
+ __typename?: 'ConfluenceSmartSpaceOverviewSummary';
28392
+ body?: Maybe<Scalars['String']['output']>;
28393
+ contentId?: Maybe<Scalars['ID']['output']>;
28394
+ isPinned?: Maybe<Scalars['Boolean']['output']>;
28395
+ lastRefreshed?: Maybe<Scalars['String']['output']>;
28396
+ };
28028
28397
  export declare type ConfluenceSpace = Node & {
28029
28398
  __typename?: 'ConfluenceSpace';
28030
28399
  alias?: Maybe<Scalars['String']['output']>;
@@ -32150,6 +32519,7 @@ export declare type CplsCapacityPlanningPeopleViewContributorsArgs = {
32150
32519
  };
32151
32520
  export declare type CplsCapacityPlanningWorkView = {
32152
32521
  __typename?: 'CplsCapacityPlanningWorkView';
32522
+ filters?: Maybe<CplsFilters>;
32153
32523
  id: Scalars['ID']['output'];
32154
32524
  timeCells?: Maybe<Array<CplsTimeCell>>;
32155
32525
  work?: Maybe<CplsWork>;
@@ -32174,6 +32544,7 @@ export declare type CplsCapacityPlanningWorkViewWorksArgs = {
32174
32544
  export declare type CplsContribution = {
32175
32545
  __typename?: 'CplsContribution';
32176
32546
  endDate: Scalars['Date']['output'];
32547
+ isSuggestion?: Maybe<Scalars['Boolean']['output']>;
32177
32548
  startDate: Scalars['Date']['output'];
32178
32549
  value?: Maybe<Scalars['Float']['output']>;
32179
32550
  valueFormats?: Maybe<CplsValueFormats>;
@@ -32200,6 +32571,7 @@ export declare type CplsContributor = {
32200
32571
  contributorDataId?: Maybe<Scalars['ID']['output']>;
32201
32572
  contributorWork?: Maybe<CplsContributorWorkConnection>;
32202
32573
  id: Scalars['ID']['output'];
32574
+ isSuggestion?: Maybe<Scalars['Boolean']['output']>;
32203
32575
  worksByIds?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
32204
32576
  };
32205
32577
  export declare type CplsContributorContributorWorkArgs = {
@@ -32265,6 +32637,7 @@ export declare type CplsContributorWorkEdge = {
32265
32637
  __typename?: 'CplsContributorWorkEdge';
32266
32638
  contributions?: Maybe<Array<Maybe<CplsContribution>>>;
32267
32639
  cursor: Scalars['String']['output'];
32640
+ isSuggestion?: Maybe<Scalars['Boolean']['output']>;
32268
32641
  node?: Maybe<CplsWorkData>;
32269
32642
  };
32270
32643
  export declare type CplsCreateCustomContributionTargetInput = {
@@ -32372,6 +32745,7 @@ export declare type CplsFilterConfigurationJiraWorkItemsArgs = {
32372
32745
  export declare type CplsFilterConfigurationType = CplsFilterConfiguration | QueryError;
32373
32746
  export declare type CplsFilters = {
32374
32747
  __typename?: 'CplsFilters';
32748
+ atlasProjects?: Maybe<Array<Scalars['ID']['output']>>;
32375
32749
  contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
32376
32750
  customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
32377
32751
  id: Scalars['ID']['output'];
@@ -32380,6 +32754,7 @@ export declare type CplsFilters = {
32380
32754
  workTypes?: Maybe<Array<CplsWorkType>>;
32381
32755
  };
32382
32756
  export declare type CplsFiltersInput = {
32757
+ atlasProjects?: InputMaybe<Array<Scalars['ID']['input']>>;
32383
32758
  contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
32384
32759
  customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
32385
32760
  jiraWorkItemStatusNames?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -34617,6 +34992,13 @@ export declare type CustomerServiceIndividualUpdateAttributeValuePayload = Paylo
34617
34992
  errors?: Maybe<Array<MutationError>>;
34618
34993
  success: Scalars['Boolean']['output'];
34619
34994
  };
34995
+ export declare type CustomerServiceLiveChatAgent = {
34996
+ __typename?: 'CustomerServiceLiveChatAgent';
34997
+ id: Scalars['ID']['output'];
34998
+ liveChatActivitiesBySpace?: Maybe<CustomerServiceSpaceLiveChatActivitiesConnection>;
34999
+ liveChatActivity?: Maybe<Scalars['String']['output']>;
35000
+ };
35001
+ export declare type CustomerServiceLiveChatAgentQueryResult = CustomerServiceLiveChatAgent | QueryError;
34620
35002
  export declare type CustomerServiceMutationApi = {
34621
35003
  __typename?: 'CustomerServiceMutationApi';
34622
35004
  acceptEscalation?: Maybe<CustomerServiceAcceptEscalationPayload>;
@@ -35079,6 +35461,7 @@ export declare type CustomerServiceRequest = {
35079
35461
  id: Scalars['ID']['output'];
35080
35462
  key?: Maybe<Scalars['String']['output']>;
35081
35463
  participants?: Maybe<Array<CustomerServiceRequestParticipant>>;
35464
+ statusCategoryName?: Maybe<Scalars['String']['output']>;
35082
35465
  statusKey?: Maybe<CustomerServiceStatusKey>;
35083
35466
  summary?: Maybe<Scalars['String']['output']>;
35084
35467
  templateForm?: Maybe<CustomerServiceTemplateForm>;
@@ -35174,6 +35557,22 @@ export declare type CustomerServiceRoutingRule = {
35174
35557
  project?: Maybe<JiraProject>;
35175
35558
  projectId?: Maybe<Scalars['ID']['output']>;
35176
35559
  };
35560
+ export declare type CustomerServiceSpaceLiveChatActivitiesConnection = {
35561
+ __typename?: 'CustomerServiceSpaceLiveChatActivitiesConnection';
35562
+ edges: Array<CustomerServiceSpaceLiveChatActivityEdge>;
35563
+ pageInfo: PageInfo;
35564
+ };
35565
+ export declare type CustomerServiceSpaceLiveChatActivity = {
35566
+ __typename?: 'CustomerServiceSpaceLiveChatActivity';
35567
+ activityStatus: Scalars['String']['output'];
35568
+ id: Scalars['ID']['output'];
35569
+ space?: Maybe<JiraProject>;
35570
+ };
35571
+ export declare type CustomerServiceSpaceLiveChatActivityEdge = {
35572
+ __typename?: 'CustomerServiceSpaceLiveChatActivityEdge';
35573
+ cursor: Scalars['String']['output'];
35574
+ node?: Maybe<CustomerServiceSpaceLiveChatActivity>;
35575
+ };
35177
35576
  export declare enum CustomerServiceStatusKey {
35178
35577
  Resolved = "RESOLVED",
35179
35578
  Submitted = "SUBMITTED"
@@ -40116,6 +40515,7 @@ export declare type ExternalCustomerContactEntitlement = {
40116
40515
  };
40117
40516
  export declare type ExternalCustomerOrg = Node & {
40118
40517
  __typename?: 'ExternalCustomerOrg';
40518
+ accountSite?: Maybe<Scalars['String']['output']>;
40119
40519
  accountSource?: Maybe<Scalars['String']['output']>;
40120
40520
  accountType?: Maybe<Scalars['String']['output']>;
40121
40521
  address?: Maybe<Scalars['String']['output']>;
@@ -40155,7 +40555,6 @@ export declare type ExternalCustomerOrg = Node & {
40155
40555
  naicsDescription?: Maybe<Scalars['String']['output']>;
40156
40556
  numberOfEmployees?: Maybe<Scalars['Long']['output']>;
40157
40557
  operatingHoursId?: Maybe<Scalars['String']['output']>;
40158
- orgSite?: Maybe<Scalars['String']['output']>;
40159
40558
  owners?: Maybe<Array<Maybe<ExternalUser>>>;
40160
40559
  ownershipType?: Maybe<Scalars['String']['output']>;
40161
40560
  parent?: Maybe<ExternalEntity>;
@@ -40811,6 +41210,7 @@ export declare enum ExternalPullRequestStatus {
40811
41210
  Draft = "DRAFT",
40812
41211
  Merged = "MERGED",
40813
41212
  Open = "OPEN",
41213
+ Queued = "QUEUED",
40814
41214
  Unknown = "UNKNOWN"
40815
41215
  }
40816
41216
  export declare type ExternalReaction = {
@@ -47011,6 +47411,8 @@ export declare type GraphStore = {
47011
47411
  askHasSubmitterInverse?: Maybe<GraphStoreSimplifiedAskHasSubmitterInverseConnection>;
47012
47412
  askHasSubmittingTeam?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamConnection>;
47013
47413
  askHasSubmittingTeamInverse?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamInverseConnection>;
47414
+ assetTypeHasChildAssetType?: Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeConnection>;
47415
+ assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
47014
47416
  atlasGoalHasAtlasTagInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection>;
47015
47417
  atlasGoalHasContributor?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorConnection>;
47016
47418
  atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
@@ -47670,6 +48072,8 @@ export declare type GraphStore = {
47670
48072
  sprintRetrospectiveWhiteboardInverse?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardInverseConnection>;
47671
48073
  sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
47672
48074
  sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
48075
+ teamAssignedIssue?: Maybe<GraphStoreSimplifiedTeamAssignedIssueConnection>;
48076
+ teamAssignedIssueInverse?: Maybe<GraphStoreSimplifiedTeamAssignedIssueInverseConnection>;
47673
48077
  teamConnectedToContainer?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerConnection>;
47674
48078
  teamConnectedToContainerInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseConnection>;
47675
48079
  teamHasAgents?: Maybe<GraphStoreSimplifiedTeamHasAgentsConnection>;
@@ -47775,6 +48179,8 @@ export declare type GraphStore = {
47775
48179
  userCreatedExternalSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalSpaceInverseConnection>;
47776
48180
  userCreatedExternalTest?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestConnection>;
47777
48181
  userCreatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseConnection>;
48182
+ userCreatedFocusArea?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaConnection>;
48183
+ userCreatedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaInverseConnection>;
47778
48184
  userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
47779
48185
  userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
47780
48186
  userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
@@ -47927,6 +48333,8 @@ export declare type GraphStore = {
47927
48333
  userUpdatedExternalSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalSpaceInverseConnection>;
47928
48334
  userUpdatedExternalTest?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestConnection>;
47929
48335
  userUpdatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestInverseConnection>;
48336
+ userUpdatedFocusArea?: Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaConnection>;
48337
+ userUpdatedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaInverseConnection>;
47930
48338
  userUpdatedGraphDocument?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentConnection>;
47931
48339
  userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
47932
48340
  userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
@@ -47961,6 +48369,8 @@ export declare type GraphStore = {
47961
48369
  userViewedVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedVideoInverseConnection>;
47962
48370
  userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
47963
48371
  userWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection>;
48372
+ userWatchesConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseConnection>;
48373
+ userWatchesConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseConnection>;
47964
48374
  userWatchesConfluencePage?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageConnection>;
47965
48375
  userWatchesConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection>;
47966
48376
  userWatchesConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardConnection>;
@@ -48122,6 +48532,22 @@ export declare type GraphStoreAskHasSubmittingTeamInverseArgs = {
48122
48532
  queryContext?: InputMaybe<Scalars['String']['input']>;
48123
48533
  sort?: InputMaybe<GraphStoreAskHasSubmittingTeamSortInput>;
48124
48534
  };
48535
+ export declare type GraphStoreAssetTypeHasChildAssetTypeArgs = {
48536
+ after?: InputMaybe<Scalars['String']['input']>;
48537
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
48538
+ first?: InputMaybe<Scalars['Int']['input']>;
48539
+ id: Scalars['ID']['input'];
48540
+ queryContext?: InputMaybe<Scalars['String']['input']>;
48541
+ sort?: InputMaybe<GraphStoreAssetTypeHasChildAssetTypeSortInput>;
48542
+ };
48543
+ export declare type GraphStoreAssetTypeHasChildAssetTypeInverseArgs = {
48544
+ after?: InputMaybe<Scalars['String']['input']>;
48545
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
48546
+ first?: InputMaybe<Scalars['Int']['input']>;
48547
+ id: Scalars['ID']['input'];
48548
+ queryContext?: InputMaybe<Scalars['String']['input']>;
48549
+ sort?: InputMaybe<GraphStoreAssetTypeHasChildAssetTypeSortInput>;
48550
+ };
48125
48551
  export declare type GraphStoreAtlasGoalHasAtlasTagInverseArgs = {
48126
48552
  after?: InputMaybe<Scalars['String']['input']>;
48127
48553
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -53166,6 +53592,22 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardRelationshipArgs = {
53166
53592
  id: Scalars['ID']['input'];
53167
53593
  queryContext?: InputMaybe<Scalars['String']['input']>;
53168
53594
  };
53595
+ export declare type GraphStoreTeamAssignedIssueArgs = {
53596
+ after?: InputMaybe<Scalars['String']['input']>;
53597
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
53598
+ first?: InputMaybe<Scalars['Int']['input']>;
53599
+ id: Scalars['ID']['input'];
53600
+ queryContext?: InputMaybe<Scalars['String']['input']>;
53601
+ sort?: InputMaybe<GraphStoreTeamAssignedIssueSortInput>;
53602
+ };
53603
+ export declare type GraphStoreTeamAssignedIssueInverseArgs = {
53604
+ after?: InputMaybe<Scalars['String']['input']>;
53605
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
53606
+ first?: InputMaybe<Scalars['Int']['input']>;
53607
+ id: Scalars['ID']['input'];
53608
+ queryContext?: InputMaybe<Scalars['String']['input']>;
53609
+ sort?: InputMaybe<GraphStoreTeamAssignedIssueSortInput>;
53610
+ };
53169
53611
  export declare type GraphStoreTeamConnectedToContainerArgs = {
53170
53612
  after?: InputMaybe<Scalars['String']['input']>;
53171
53613
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -53990,6 +54432,22 @@ export declare type GraphStoreUserCreatedExternalTestInverseArgs = {
53990
54432
  queryContext?: InputMaybe<Scalars['String']['input']>;
53991
54433
  sort?: InputMaybe<GraphStoreUserCreatedExternalTestSortInput>;
53992
54434
  };
54435
+ export declare type GraphStoreUserCreatedFocusAreaArgs = {
54436
+ after?: InputMaybe<Scalars['String']['input']>;
54437
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
54438
+ first?: InputMaybe<Scalars['Int']['input']>;
54439
+ id: Scalars['ID']['input'];
54440
+ queryContext?: InputMaybe<Scalars['String']['input']>;
54441
+ sort?: InputMaybe<GraphStoreUserCreatedFocusAreaSortInput>;
54442
+ };
54443
+ export declare type GraphStoreUserCreatedFocusAreaInverseArgs = {
54444
+ after?: InputMaybe<Scalars['String']['input']>;
54445
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
54446
+ first?: InputMaybe<Scalars['Int']['input']>;
54447
+ id: Scalars['ID']['input'];
54448
+ queryContext?: InputMaybe<Scalars['String']['input']>;
54449
+ sort?: InputMaybe<GraphStoreUserCreatedFocusAreaSortInput>;
54450
+ };
53993
54451
  export declare type GraphStoreUserCreatedIssueArgs = {
53994
54452
  after?: InputMaybe<Scalars['String']['input']>;
53995
54453
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -55208,6 +55666,22 @@ export declare type GraphStoreUserUpdatedExternalTestInverseArgs = {
55208
55666
  queryContext?: InputMaybe<Scalars['String']['input']>;
55209
55667
  sort?: InputMaybe<GraphStoreUserUpdatedExternalTestSortInput>;
55210
55668
  };
55669
+ export declare type GraphStoreUserUpdatedFocusAreaArgs = {
55670
+ after?: InputMaybe<Scalars['String']['input']>;
55671
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
55672
+ first?: InputMaybe<Scalars['Int']['input']>;
55673
+ id: Scalars['ID']['input'];
55674
+ queryContext?: InputMaybe<Scalars['String']['input']>;
55675
+ sort?: InputMaybe<GraphStoreUserUpdatedFocusAreaSortInput>;
55676
+ };
55677
+ export declare type GraphStoreUserUpdatedFocusAreaInverseArgs = {
55678
+ after?: InputMaybe<Scalars['String']['input']>;
55679
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
55680
+ first?: InputMaybe<Scalars['Int']['input']>;
55681
+ id: Scalars['ID']['input'];
55682
+ queryContext?: InputMaybe<Scalars['String']['input']>;
55683
+ sort?: InputMaybe<GraphStoreUserUpdatedFocusAreaSortInput>;
55684
+ };
55211
55685
  export declare type GraphStoreUserUpdatedGraphDocumentArgs = {
55212
55686
  after?: InputMaybe<Scalars['String']['input']>;
55213
55687
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -55474,6 +55948,22 @@ export declare type GraphStoreUserWatchesConfluenceBlogpostInverseArgs = {
55474
55948
  queryContext?: InputMaybe<Scalars['String']['input']>;
55475
55949
  sort?: InputMaybe<GraphStoreUserWatchesConfluenceBlogpostSortInput>;
55476
55950
  };
55951
+ export declare type GraphStoreUserWatchesConfluenceDatabaseArgs = {
55952
+ after?: InputMaybe<Scalars['String']['input']>;
55953
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
55954
+ first?: InputMaybe<Scalars['Int']['input']>;
55955
+ id: Scalars['ID']['input'];
55956
+ queryContext?: InputMaybe<Scalars['String']['input']>;
55957
+ sort?: InputMaybe<GraphStoreUserWatchesConfluenceDatabaseSortInput>;
55958
+ };
55959
+ export declare type GraphStoreUserWatchesConfluenceDatabaseInverseArgs = {
55960
+ after?: InputMaybe<Scalars['String']['input']>;
55961
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
55962
+ first?: InputMaybe<Scalars['Int']['input']>;
55963
+ id: Scalars['ID']['input'];
55964
+ queryContext?: InputMaybe<Scalars['String']['input']>;
55965
+ sort?: InputMaybe<GraphStoreUserWatchesConfluenceDatabaseSortInput>;
55966
+ };
55477
55967
  export declare type GraphStoreUserWatchesConfluencePageArgs = {
55478
55968
  after?: InputMaybe<Scalars['String']['input']>;
55479
55969
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -55925,6 +56415,9 @@ export declare type GraphStoreAskHasSubmitterSortInput = {
55925
56415
  export declare type GraphStoreAskHasSubmittingTeamSortInput = {
55926
56416
  lastModified?: InputMaybe<GraphStoreSortInput>;
55927
56417
  };
56418
+ export declare type GraphStoreAssetTypeHasChildAssetTypeSortInput = {
56419
+ lastModified?: InputMaybe<GraphStoreSortInput>;
56420
+ };
55928
56421
  export declare type GraphStoreAtiFilterInput = {
55929
56422
  is?: InputMaybe<Array<Scalars['String']['input']>>;
55930
56423
  isNot?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -64065,6 +64558,34 @@ export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseEdge = {
64065
64558
  };
64066
64559
  export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseUnion = SpfAsk;
64067
64560
  export declare type GraphStoreSimplifiedAskHasSubmittingTeamUnion = TeamV2;
64561
+ export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeConnection = HasPageInfo & {
64562
+ __typename?: 'GraphStoreSimplifiedAssetTypeHasChildAssetTypeConnection';
64563
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeEdge>>>;
64564
+ pageInfo: PageInfo;
64565
+ };
64566
+ export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeEdge = {
64567
+ __typename?: 'GraphStoreSimplifiedAssetTypeHasChildAssetTypeEdge';
64568
+ createdAt: Scalars['DateTime']['output'];
64569
+ cursor?: Maybe<Scalars['String']['output']>;
64570
+ id: Scalars['ID']['output'];
64571
+ lastUpdated: Scalars['DateTime']['output'];
64572
+ node?: Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeUnion>;
64573
+ };
64574
+ export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseConnection = HasPageInfo & {
64575
+ __typename?: 'GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseConnection';
64576
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseEdge>>>;
64577
+ pageInfo: PageInfo;
64578
+ };
64579
+ export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseEdge = {
64580
+ __typename?: 'GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseEdge';
64581
+ createdAt: Scalars['DateTime']['output'];
64582
+ cursor?: Maybe<Scalars['String']['output']>;
64583
+ id: Scalars['ID']['output'];
64584
+ lastUpdated: Scalars['DateTime']['output'];
64585
+ node?: Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseUnion>;
64586
+ };
64587
+ export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseUnion = AssetsObjectType;
64588
+ export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeUnion = AssetsObjectType;
64068
64589
  export declare type GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection = HasPageInfo & {
64069
64590
  __typename?: 'GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection';
64070
64591
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseEdge>>>;
@@ -70777,6 +71298,34 @@ export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardInverseEdge
70777
71298
  };
70778
71299
  export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardInverseUnion = JiraSprint;
70779
71300
  export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion = ConfluenceWhiteboard;
71301
+ export declare type GraphStoreSimplifiedTeamAssignedIssueConnection = HasPageInfo & {
71302
+ __typename?: 'GraphStoreSimplifiedTeamAssignedIssueConnection';
71303
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamAssignedIssueEdge>>>;
71304
+ pageInfo: PageInfo;
71305
+ };
71306
+ export declare type GraphStoreSimplifiedTeamAssignedIssueEdge = {
71307
+ __typename?: 'GraphStoreSimplifiedTeamAssignedIssueEdge';
71308
+ createdAt: Scalars['DateTime']['output'];
71309
+ cursor?: Maybe<Scalars['String']['output']>;
71310
+ id: Scalars['ID']['output'];
71311
+ lastUpdated: Scalars['DateTime']['output'];
71312
+ node?: Maybe<GraphStoreSimplifiedTeamAssignedIssueUnion>;
71313
+ };
71314
+ export declare type GraphStoreSimplifiedTeamAssignedIssueInverseConnection = HasPageInfo & {
71315
+ __typename?: 'GraphStoreSimplifiedTeamAssignedIssueInverseConnection';
71316
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamAssignedIssueInverseEdge>>>;
71317
+ pageInfo: PageInfo;
71318
+ };
71319
+ export declare type GraphStoreSimplifiedTeamAssignedIssueInverseEdge = {
71320
+ __typename?: 'GraphStoreSimplifiedTeamAssignedIssueInverseEdge';
71321
+ createdAt: Scalars['DateTime']['output'];
71322
+ cursor?: Maybe<Scalars['String']['output']>;
71323
+ id: Scalars['ID']['output'];
71324
+ lastUpdated: Scalars['DateTime']['output'];
71325
+ node?: Maybe<GraphStoreSimplifiedTeamAssignedIssueInverseUnion>;
71326
+ };
71327
+ export declare type GraphStoreSimplifiedTeamAssignedIssueInverseUnion = TeamV2;
71328
+ export declare type GraphStoreSimplifiedTeamAssignedIssueUnion = JiraIssue;
70780
71329
  export declare type GraphStoreSimplifiedTeamConnectedToContainerConnection = HasPageInfo & HasTotal & {
70781
71330
  __typename?: 'GraphStoreSimplifiedTeamConnectedToContainerConnection';
70782
71331
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToContainerEdge>>>;
@@ -72107,6 +72656,34 @@ export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseEdge = {
72107
72656
  };
72108
72657
  export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
72109
72658
  export declare type GraphStoreSimplifiedUserCreatedExternalTestUnion = ExternalTest;
72659
+ export declare type GraphStoreSimplifiedUserCreatedFocusAreaConnection = HasPageInfo & {
72660
+ __typename?: 'GraphStoreSimplifiedUserCreatedFocusAreaConnection';
72661
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedFocusAreaEdge>>>;
72662
+ pageInfo: PageInfo;
72663
+ };
72664
+ export declare type GraphStoreSimplifiedUserCreatedFocusAreaEdge = {
72665
+ __typename?: 'GraphStoreSimplifiedUserCreatedFocusAreaEdge';
72666
+ createdAt: Scalars['DateTime']['output'];
72667
+ cursor?: Maybe<Scalars['String']['output']>;
72668
+ id: Scalars['ID']['output'];
72669
+ lastUpdated: Scalars['DateTime']['output'];
72670
+ node?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaUnion>;
72671
+ };
72672
+ export declare type GraphStoreSimplifiedUserCreatedFocusAreaInverseConnection = HasPageInfo & {
72673
+ __typename?: 'GraphStoreSimplifiedUserCreatedFocusAreaInverseConnection';
72674
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedFocusAreaInverseEdge>>>;
72675
+ pageInfo: PageInfo;
72676
+ };
72677
+ export declare type GraphStoreSimplifiedUserCreatedFocusAreaInverseEdge = {
72678
+ __typename?: 'GraphStoreSimplifiedUserCreatedFocusAreaInverseEdge';
72679
+ createdAt: Scalars['DateTime']['output'];
72680
+ cursor?: Maybe<Scalars['String']['output']>;
72681
+ id: Scalars['ID']['output'];
72682
+ lastUpdated: Scalars['DateTime']['output'];
72683
+ node?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaInverseUnion>;
72684
+ };
72685
+ export declare type GraphStoreSimplifiedUserCreatedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
72686
+ export declare type GraphStoreSimplifiedUserCreatedFocusAreaUnion = MercuryFocusArea;
72110
72687
  export declare type GraphStoreSimplifiedUserCreatedIssueCommentConnection = HasPageInfo & {
72111
72688
  __typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentConnection';
72112
72689
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentEdge>>>;
@@ -74235,6 +74812,34 @@ export declare type GraphStoreSimplifiedUserUpdatedExternalTestInverseEdge = {
74235
74812
  };
74236
74813
  export declare type GraphStoreSimplifiedUserUpdatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
74237
74814
  export declare type GraphStoreSimplifiedUserUpdatedExternalTestUnion = ExternalTest;
74815
+ export declare type GraphStoreSimplifiedUserUpdatedFocusAreaConnection = HasPageInfo & {
74816
+ __typename?: 'GraphStoreSimplifiedUserUpdatedFocusAreaConnection';
74817
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaEdge>>>;
74818
+ pageInfo: PageInfo;
74819
+ };
74820
+ export declare type GraphStoreSimplifiedUserUpdatedFocusAreaEdge = {
74821
+ __typename?: 'GraphStoreSimplifiedUserUpdatedFocusAreaEdge';
74822
+ createdAt: Scalars['DateTime']['output'];
74823
+ cursor?: Maybe<Scalars['String']['output']>;
74824
+ id: Scalars['ID']['output'];
74825
+ lastUpdated: Scalars['DateTime']['output'];
74826
+ node?: Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaUnion>;
74827
+ };
74828
+ export declare type GraphStoreSimplifiedUserUpdatedFocusAreaInverseConnection = HasPageInfo & {
74829
+ __typename?: 'GraphStoreSimplifiedUserUpdatedFocusAreaInverseConnection';
74830
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaInverseEdge>>>;
74831
+ pageInfo: PageInfo;
74832
+ };
74833
+ export declare type GraphStoreSimplifiedUserUpdatedFocusAreaInverseEdge = {
74834
+ __typename?: 'GraphStoreSimplifiedUserUpdatedFocusAreaInverseEdge';
74835
+ createdAt: Scalars['DateTime']['output'];
74836
+ cursor?: Maybe<Scalars['String']['output']>;
74837
+ id: Scalars['ID']['output'];
74838
+ lastUpdated: Scalars['DateTime']['output'];
74839
+ node?: Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaInverseUnion>;
74840
+ };
74841
+ export declare type GraphStoreSimplifiedUserUpdatedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
74842
+ export declare type GraphStoreSimplifiedUserUpdatedFocusAreaUnion = MercuryFocusArea;
74238
74843
  export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentConnection = HasPageInfo & {
74239
74844
  __typename?: 'GraphStoreSimplifiedUserUpdatedGraphDocumentConnection';
74240
74845
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentEdge>>>;
@@ -74627,6 +75232,34 @@ export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseEdge
74627
75232
  };
74628
75233
  export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
74629
75234
  export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostUnion = ConfluenceBlogPost;
75235
+ export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseConnection = HasPageInfo & {
75236
+ __typename?: 'GraphStoreSimplifiedUserWatchesConfluenceDatabaseConnection';
75237
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseEdge>>>;
75238
+ pageInfo: PageInfo;
75239
+ };
75240
+ export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseEdge = {
75241
+ __typename?: 'GraphStoreSimplifiedUserWatchesConfluenceDatabaseEdge';
75242
+ createdAt: Scalars['DateTime']['output'];
75243
+ cursor?: Maybe<Scalars['String']['output']>;
75244
+ id: Scalars['ID']['output'];
75245
+ lastUpdated: Scalars['DateTime']['output'];
75246
+ node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseUnion>;
75247
+ };
75248
+ export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseConnection = HasPageInfo & {
75249
+ __typename?: 'GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseConnection';
75250
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseEdge>>>;
75251
+ pageInfo: PageInfo;
75252
+ };
75253
+ export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseEdge = {
75254
+ __typename?: 'GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseEdge';
75255
+ createdAt: Scalars['DateTime']['output'];
75256
+ cursor?: Maybe<Scalars['String']['output']>;
75257
+ id: Scalars['ID']['output'];
75258
+ lastUpdated: Scalars['DateTime']['output'];
75259
+ node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseUnion>;
75260
+ };
75261
+ export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
75262
+ export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseUnion = ConfluenceDatabase;
74630
75263
  export declare type GraphStoreSimplifiedUserWatchesConfluencePageConnection = HasPageInfo & {
74631
75264
  __typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageConnection';
74632
75265
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluencePageEdge>>>;
@@ -75416,6 +76049,9 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardSortInput = {
75416
76049
  lastModified?: InputMaybe<GraphStoreSortInput>;
75417
76050
  toAti?: InputMaybe<GraphStoreSortInput>;
75418
76051
  };
76052
+ export declare type GraphStoreTeamAssignedIssueSortInput = {
76053
+ lastModified?: InputMaybe<GraphStoreSortInput>;
76054
+ };
75419
76055
  export declare type GraphStoreTeamConnectedToContainerSortInput = {
75420
76056
  createdAt?: InputMaybe<GraphStoreSortInput>;
75421
76057
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -75645,6 +76281,9 @@ export declare type GraphStoreUserCreatedExternalSpaceSortInput = {
75645
76281
  export declare type GraphStoreUserCreatedExternalTestSortInput = {
75646
76282
  lastModified?: InputMaybe<GraphStoreSortInput>;
75647
76283
  };
76284
+ export declare type GraphStoreUserCreatedFocusAreaSortInput = {
76285
+ lastModified?: InputMaybe<GraphStoreSortInput>;
76286
+ };
75648
76287
  export declare type GraphStoreUserCreatedIssueCommentSortInput = {
75649
76288
  lastModified?: InputMaybe<GraphStoreSortInput>;
75650
76289
  };
@@ -75919,6 +76558,9 @@ export declare type GraphStoreUserUpdatedExternalSpaceSortInput = {
75919
76558
  export declare type GraphStoreUserUpdatedExternalTestSortInput = {
75920
76559
  lastModified?: InputMaybe<GraphStoreSortInput>;
75921
76560
  };
76561
+ export declare type GraphStoreUserUpdatedFocusAreaSortInput = {
76562
+ lastModified?: InputMaybe<GraphStoreSortInput>;
76563
+ };
75922
76564
  export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
75923
76565
  lastModified?: InputMaybe<GraphStoreSortInput>;
75924
76566
  };
@@ -75964,6 +76606,9 @@ export declare type GraphStoreUserViewedVideoSortInput = {
75964
76606
  export declare type GraphStoreUserWatchesConfluenceBlogpostSortInput = {
75965
76607
  lastModified?: InputMaybe<GraphStoreSortInput>;
75966
76608
  };
76609
+ export declare type GraphStoreUserWatchesConfluenceDatabaseSortInput = {
76610
+ lastModified?: InputMaybe<GraphStoreSortInput>;
76611
+ };
75967
76612
  export declare type GraphStoreUserWatchesConfluencePageSortInput = {
75968
76613
  lastModified?: InputMaybe<GraphStoreSortInput>;
75969
76614
  };
@@ -75975,6 +76620,8 @@ export declare type GraphStoreUserWatchesTeamSortInput = {
75975
76620
  };
75976
76621
  export declare type GraphStoreV2 = {
75977
76622
  __typename?: 'GraphStoreV2';
76623
+ assetTypeHasChildAssetType?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection>;
76624
+ assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
75978
76625
  atlassianGoalHasAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection>;
75979
76626
  atlassianGoalHasAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateInverseConnection>;
75980
76627
  atlassianGoalHasAtlassianHomeTagInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianHomeTagInverseConnection>;
@@ -75994,6 +76641,8 @@ export declare type GraphStoreV2 = {
75994
76641
  atlassianProjectHasAtlassianProjectUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateConnection>;
75995
76642
  atlassianProjectHasAtlassianProjectUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateInverseConnection>;
75996
76643
  atlassianProjectLinksAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection>;
76644
+ atlassianTeamAssignedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection>;
76645
+ atlassianTeamAssignedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseConnection>;
75997
76646
  atlassianTeamContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection>;
75998
76647
  atlassianTeamContributesToAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalInverseConnection>;
75999
76648
  atlassianTeamHasAtlassianAgent?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentConnection>;
@@ -76068,6 +76717,8 @@ export declare type GraphStoreV2 = {
76068
76717
  atlassianUserCreatedExternalRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkInverseConnection>;
76069
76718
  atlassianUserCreatedExternalRepository?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryConnection>;
76070
76719
  atlassianUserCreatedExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseConnection>;
76720
+ atlassianUserCreatedFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection>;
76721
+ atlassianUserCreatedFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseConnection>;
76071
76722
  atlassianUserCreatedJiraRelease?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection>;
76072
76723
  atlassianUserCreatedJiraReleaseInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseInverseConnection>;
76073
76724
  atlassianUserCreatedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraWorkItemConnection>;
@@ -76178,6 +76829,8 @@ export declare type GraphStoreV2 = {
76178
76829
  atlassianUserUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceSpaceInverseConnection>;
76179
76830
  atlassianUserUpdatedConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardConnection>;
76180
76831
  atlassianUserUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardInverseConnection>;
76832
+ atlassianUserUpdatedFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaConnection>;
76833
+ atlassianUserUpdatedFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseConnection>;
76181
76834
  atlassianUserUpdatedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection>;
76182
76835
  atlassianUserUpdatedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemInverseConnection>;
76183
76836
  atlassianUserUpdatedJiraWorkItemWorklog?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemWorklogConnection>;
@@ -76206,6 +76859,8 @@ export declare type GraphStoreV2 = {
76206
76859
  atlassianUserWatchesAtlassianTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesAtlassianTeamInverseConnection>;
76207
76860
  atlassianUserWatchesConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceBlogpostConnection>;
76208
76861
  atlassianUserWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceBlogpostInverseConnection>;
76862
+ atlassianUserWatchesConfluenceDatabase?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseConnection>;
76863
+ atlassianUserWatchesConfluenceDatabaseInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseConnection>;
76209
76864
  atlassianUserWatchesConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluencePageConnection>;
76210
76865
  atlassianUserWatchesConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluencePageInverseConnection>;
76211
76866
  atlassianUserWatchesConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceWhiteboardConnection>;
@@ -76680,6 +77335,20 @@ export declare type GraphStoreV2 = {
76680
77335
  topicHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityConnection>;
76681
77336
  topicHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityInverseConnection>;
76682
77337
  };
77338
+ export declare type GraphStoreV2AssetTypeHasChildAssetTypeArgs = {
77339
+ after?: InputMaybe<Scalars['String']['input']>;
77340
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
77341
+ first?: InputMaybe<Scalars['Int']['input']>;
77342
+ id: Scalars['ID']['input'];
77343
+ sort?: InputMaybe<GraphStoreV2AssetTypeHasChildAssetTypeSortInput>;
77344
+ };
77345
+ export declare type GraphStoreV2AssetTypeHasChildAssetTypeInverseArgs = {
77346
+ after?: InputMaybe<Scalars['String']['input']>;
77347
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
77348
+ first?: InputMaybe<Scalars['Int']['input']>;
77349
+ id: Scalars['ID']['input'];
77350
+ sort?: InputMaybe<GraphStoreV2AssetTypeHasChildAssetTypeSortInput>;
77351
+ };
76683
77352
  export declare type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateArgs = {
76684
77353
  after?: InputMaybe<Scalars['String']['input']>;
76685
77354
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -76813,6 +77482,20 @@ export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectArgs = {
76813
77482
  id: Scalars['ID']['input'];
76814
77483
  sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput>;
76815
77484
  };
77485
+ export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemArgs = {
77486
+ after?: InputMaybe<Scalars['String']['input']>;
77487
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
77488
+ first?: InputMaybe<Scalars['Int']['input']>;
77489
+ id: Scalars['ID']['input'];
77490
+ sort?: InputMaybe<GraphStoreV2AtlassianTeamAssignedJiraWorkItemSortInput>;
77491
+ };
77492
+ export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemInverseArgs = {
77493
+ after?: InputMaybe<Scalars['String']['input']>;
77494
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
77495
+ first?: InputMaybe<Scalars['Int']['input']>;
77496
+ id: Scalars['ID']['input'];
77497
+ sort?: InputMaybe<GraphStoreV2AtlassianTeamAssignedJiraWorkItemSortInput>;
77498
+ };
76816
77499
  export declare type GraphStoreV2AtlassianTeamContributesToAtlassianGoalArgs = {
76817
77500
  after?: InputMaybe<Scalars['String']['input']>;
76818
77501
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -77333,6 +78016,20 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRepositoryInverseArg
77333
78016
  id: Scalars['ID']['input'];
77334
78017
  sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput>;
77335
78018
  };
78019
+ export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaArgs = {
78020
+ after?: InputMaybe<Scalars['String']['input']>;
78021
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
78022
+ first?: InputMaybe<Scalars['Int']['input']>;
78023
+ id: Scalars['ID']['input'];
78024
+ sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedFocusFocusAreaSortInput>;
78025
+ };
78026
+ export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaInverseArgs = {
78027
+ after?: InputMaybe<Scalars['String']['input']>;
78028
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
78029
+ first?: InputMaybe<Scalars['Int']['input']>;
78030
+ id: Scalars['ID']['input'];
78031
+ sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedFocusFocusAreaSortInput>;
78032
+ };
77336
78033
  export declare type GraphStoreV2AtlassianUserCreatedJiraReleaseArgs = {
77337
78034
  after?: InputMaybe<Scalars['String']['input']>;
77338
78035
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -78109,6 +78806,20 @@ export declare type GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardInverseA
78109
78806
  id: Scalars['ID']['input'];
78110
78807
  sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardSortInput>;
78111
78808
  };
78809
+ export declare type GraphStoreV2AtlassianUserUpdatedFocusFocusAreaArgs = {
78810
+ after?: InputMaybe<Scalars['String']['input']>;
78811
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
78812
+ first?: InputMaybe<Scalars['Int']['input']>;
78813
+ id: Scalars['ID']['input'];
78814
+ sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedFocusFocusAreaSortInput>;
78815
+ };
78816
+ export declare type GraphStoreV2AtlassianUserUpdatedFocusFocusAreaInverseArgs = {
78817
+ after?: InputMaybe<Scalars['String']['input']>;
78818
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
78819
+ first?: InputMaybe<Scalars['Int']['input']>;
78820
+ id: Scalars['ID']['input'];
78821
+ sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedFocusFocusAreaSortInput>;
78822
+ };
78112
78823
  export declare type GraphStoreV2AtlassianUserUpdatedJiraWorkItemArgs = {
78113
78824
  after?: InputMaybe<Scalars['String']['input']>;
78114
78825
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -78305,6 +79016,20 @@ export declare type GraphStoreV2AtlassianUserWatchesConfluenceBlogpostInverseArg
78305
79016
  id: Scalars['ID']['input'];
78306
79017
  sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesConfluenceBlogpostSortInput>;
78307
79018
  };
79019
+ export declare type GraphStoreV2AtlassianUserWatchesConfluenceDatabaseArgs = {
79020
+ after?: InputMaybe<Scalars['String']['input']>;
79021
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
79022
+ first?: InputMaybe<Scalars['Int']['input']>;
79023
+ id: Scalars['ID']['input'];
79024
+ sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesConfluenceDatabaseSortInput>;
79025
+ };
79026
+ export declare type GraphStoreV2AtlassianUserWatchesConfluenceDatabaseInverseArgs = {
79027
+ after?: InputMaybe<Scalars['String']['input']>;
79028
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
79029
+ first?: InputMaybe<Scalars['Int']['input']>;
79030
+ id: Scalars['ID']['input'];
79031
+ sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesConfluenceDatabaseSortInput>;
79032
+ };
78308
79033
  export declare type GraphStoreV2AtlassianUserWatchesConfluencePageArgs = {
78309
79034
  after?: InputMaybe<Scalars['String']['input']>;
78310
79035
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -81663,6 +82388,9 @@ export declare type GraphStoreV2TopicHasRelatedEntityInverseArgs = {
81663
82388
  id: Scalars['ID']['input'];
81664
82389
  sort?: InputMaybe<GraphStoreV2TopicHasRelatedEntitySortInput>;
81665
82390
  };
82391
+ export declare type GraphStoreV2AssetTypeHasChildAssetTypeSortInput = {
82392
+ lastModified?: InputMaybe<GraphStoreSortInput>;
82393
+ };
81666
82394
  export declare type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateSortInput = {
81667
82395
  lastModified?: InputMaybe<GraphStoreSortInput>;
81668
82396
  };
@@ -81696,6 +82424,9 @@ export declare type GraphStoreV2AtlassianProjectHasAtlassianProjectUpdateSortInp
81696
82424
  export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput = {
81697
82425
  lastModified?: InputMaybe<GraphStoreSortInput>;
81698
82426
  };
82427
+ export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemSortInput = {
82428
+ lastModified?: InputMaybe<GraphStoreSortInput>;
82429
+ };
81699
82430
  export declare type GraphStoreV2AtlassianTeamContributesToAtlassianGoalSortInput = {
81700
82431
  lastModified?: InputMaybe<GraphStoreSortInput>;
81701
82432
  };
@@ -81835,6 +82566,9 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRemoteLinkSortInput
81835
82566
  export declare type GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput = {
81836
82567
  lastModified?: InputMaybe<GraphStoreSortInput>;
81837
82568
  };
82569
+ export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaSortInput = {
82570
+ lastModified?: InputMaybe<GraphStoreSortInput>;
82571
+ };
81838
82572
  export declare type GraphStoreV2AtlassianUserCreatedJiraReleaseSortInput = {
81839
82573
  lastModified?: InputMaybe<GraphStoreSortInput>;
81840
82574
  };
@@ -82093,6 +82827,9 @@ export declare type GraphStoreV2AtlassianUserUpdatedConfluenceSpaceSortInput = {
82093
82827
  export declare type GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardSortInput = {
82094
82828
  lastModified?: InputMaybe<GraphStoreSortInput>;
82095
82829
  };
82830
+ export declare type GraphStoreV2AtlassianUserUpdatedFocusFocusAreaSortInput = {
82831
+ lastModified?: InputMaybe<GraphStoreSortInput>;
82832
+ };
82096
82833
  export declare type GraphStoreV2AtlassianUserUpdatedJiraWorkItemSortInput = {
82097
82834
  lastModified?: InputMaybe<GraphStoreSortInput>;
82098
82835
  };
@@ -82138,6 +82875,9 @@ export declare type GraphStoreV2AtlassianUserWatchesAtlassianTeamSortInput = {
82138
82875
  export declare type GraphStoreV2AtlassianUserWatchesConfluenceBlogpostSortInput = {
82139
82876
  lastModified?: InputMaybe<GraphStoreSortInput>;
82140
82877
  };
82878
+ export declare type GraphStoreV2AtlassianUserWatchesConfluenceDatabaseSortInput = {
82879
+ lastModified?: InputMaybe<GraphStoreSortInput>;
82880
+ };
82141
82881
  export declare type GraphStoreV2AtlassianUserWatchesConfluencePageSortInput = {
82142
82882
  lastModified?: InputMaybe<GraphStoreSortInput>;
82143
82883
  };
@@ -85098,6 +85838,34 @@ export declare type GraphStoreV2MutationDeleteLoomVideoHasConfluencePageArgs = {
85098
85838
  export declare type GraphStoreV2RepositoryEntityIsBitbucketRepositorySortInput = {
85099
85839
  lastModified?: InputMaybe<GraphStoreSortInput>;
85100
85840
  };
85841
+ export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection = HasPageInfo & {
85842
+ __typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection';
85843
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge>>>;
85844
+ pageInfo: PageInfo;
85845
+ };
85846
+ export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge = {
85847
+ __typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge';
85848
+ createdAt: Scalars['DateTime']['output'];
85849
+ cursor?: Maybe<Scalars['String']['output']>;
85850
+ id: Scalars['ID']['output'];
85851
+ lastUpdated: Scalars['DateTime']['output'];
85852
+ node?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeUnion>;
85853
+ };
85854
+ export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection = HasPageInfo & {
85855
+ __typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection';
85856
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseEdge>>>;
85857
+ pageInfo: PageInfo;
85858
+ };
85859
+ export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseEdge = {
85860
+ __typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseEdge';
85861
+ createdAt: Scalars['DateTime']['output'];
85862
+ cursor?: Maybe<Scalars['String']['output']>;
85863
+ id: Scalars['ID']['output'];
85864
+ lastUpdated: Scalars['DateTime']['output'];
85865
+ node?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseUnion>;
85866
+ };
85867
+ export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseUnion = AssetsObjectType;
85868
+ export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeUnion = AssetsObjectType;
85101
85869
  export declare type GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection = HasPageInfo & {
85102
85870
  __typename?: 'GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection';
85103
85871
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateEdge>>>;
@@ -85364,6 +86132,34 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectE
85364
86132
  node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion>;
85365
86133
  };
85366
86134
  export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion = TownsquareProject;
86135
+ export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection = HasPageInfo & {
86136
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection';
86137
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge>>>;
86138
+ pageInfo: PageInfo;
86139
+ };
86140
+ export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge = {
86141
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge';
86142
+ createdAt: Scalars['DateTime']['output'];
86143
+ cursor?: Maybe<Scalars['String']['output']>;
86144
+ id: Scalars['ID']['output'];
86145
+ lastUpdated: Scalars['DateTime']['output'];
86146
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemUnion>;
86147
+ };
86148
+ export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseConnection = HasPageInfo & {
86149
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseConnection';
86150
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseEdge>>>;
86151
+ pageInfo: PageInfo;
86152
+ };
86153
+ export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseEdge = {
86154
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseEdge';
86155
+ createdAt: Scalars['DateTime']['output'];
86156
+ cursor?: Maybe<Scalars['String']['output']>;
86157
+ id: Scalars['ID']['output'];
86158
+ lastUpdated: Scalars['DateTime']['output'];
86159
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseUnion>;
86160
+ };
86161
+ export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseUnion = TeamV2;
86162
+ export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemUnion = JiraIssue;
85367
86163
  export declare type GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection = HasPageInfo & {
85368
86164
  __typename?: 'GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection';
85369
86165
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalEdge>>>;
@@ -86412,6 +87208,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepository
86412
87208
  };
86413
87209
  export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
86414
87210
  export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
87211
+ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection = HasPageInfo & {
87212
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection';
87213
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaEdge>>>;
87214
+ pageInfo: PageInfo;
87215
+ };
87216
+ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaEdge = {
87217
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaEdge';
87218
+ createdAt: Scalars['DateTime']['output'];
87219
+ cursor?: Maybe<Scalars['String']['output']>;
87220
+ id: Scalars['ID']['output'];
87221
+ lastUpdated: Scalars['DateTime']['output'];
87222
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaUnion>;
87223
+ };
87224
+ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseConnection = HasPageInfo & {
87225
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseConnection';
87226
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseEdge>>>;
87227
+ pageInfo: PageInfo;
87228
+ };
87229
+ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseEdge = {
87230
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseEdge';
87231
+ createdAt: Scalars['DateTime']['output'];
87232
+ cursor?: Maybe<Scalars['String']['output']>;
87233
+ id: Scalars['ID']['output'];
87234
+ lastUpdated: Scalars['DateTime']['output'];
87235
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseUnion>;
87236
+ };
87237
+ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
87238
+ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaUnion = MercuryFocusArea;
86415
87239
  export declare type GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection = HasPageInfo & {
86416
87240
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection';
86417
87241
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseEdge>>>;
@@ -87984,6 +88808,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboa
87984
88808
  };
87985
88809
  export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
87986
88810
  export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
88811
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaConnection = HasPageInfo & {
88812
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaConnection';
88813
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaEdge>>>;
88814
+ pageInfo: PageInfo;
88815
+ };
88816
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaEdge = {
88817
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaEdge';
88818
+ createdAt: Scalars['DateTime']['output'];
88819
+ cursor?: Maybe<Scalars['String']['output']>;
88820
+ id: Scalars['ID']['output'];
88821
+ lastUpdated: Scalars['DateTime']['output'];
88822
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaUnion>;
88823
+ };
88824
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseConnection = HasPageInfo & {
88825
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseConnection';
88826
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseEdge>>>;
88827
+ pageInfo: PageInfo;
88828
+ };
88829
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseEdge = {
88830
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseEdge';
88831
+ createdAt: Scalars['DateTime']['output'];
88832
+ cursor?: Maybe<Scalars['String']['output']>;
88833
+ id: Scalars['ID']['output'];
88834
+ lastUpdated: Scalars['DateTime']['output'];
88835
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseUnion>;
88836
+ };
88837
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
88838
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaUnion = MercuryFocusArea;
87987
88839
  export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection = HasPageInfo & {
87988
88840
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection';
87989
88841
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemEdge>>>;
@@ -88376,6 +89228,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceBlogpost
88376
89228
  };
88377
89229
  export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
88378
89230
  export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceBlogpostUnion = ConfluenceBlogPost;
89231
+ export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseConnection = HasPageInfo & {
89232
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseConnection';
89233
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseEdge>>>;
89234
+ pageInfo: PageInfo;
89235
+ };
89236
+ export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseEdge = {
89237
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseEdge';
89238
+ createdAt: Scalars['DateTime']['output'];
89239
+ cursor?: Maybe<Scalars['String']['output']>;
89240
+ id: Scalars['ID']['output'];
89241
+ lastUpdated: Scalars['DateTime']['output'];
89242
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseUnion>;
89243
+ };
89244
+ export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseConnection = HasPageInfo & {
89245
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseConnection';
89246
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseEdge>>>;
89247
+ pageInfo: PageInfo;
89248
+ };
89249
+ export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseEdge = {
89250
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseEdge';
89251
+ createdAt: Scalars['DateTime']['output'];
89252
+ cursor?: Maybe<Scalars['String']['output']>;
89253
+ id: Scalars['ID']['output'];
89254
+ lastUpdated: Scalars['DateTime']['output'];
89255
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseUnion>;
89256
+ };
89257
+ export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
89258
+ export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseUnion = ConfluenceDatabase;
88379
89259
  export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluencePageConnection = HasPageInfo & {
88380
89260
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesConfluencePageConnection';
88381
89261
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluencePageEdge>>>;
@@ -95750,6 +96630,7 @@ export declare type GrowthRecRerankCandidate = {
95750
96630
  export declare type GrowthUnifiedProfileAccountProfileResult = {
95751
96631
  __typename?: 'GrowthUnifiedProfileAccountProfileResult';
95752
96632
  paidFeatureUsage: Array<GrowthUnifiedProfilePfuResult>;
96633
+ recommendations?: Maybe<GrowthUnifiedProfileUserRecommendations>;
95753
96634
  userProfile?: Maybe<GrowthUnifiedProfileAccountUserProfile>;
95754
96635
  };
95755
96636
  export declare type GrowthUnifiedProfileAccountProfileResultPaidFeatureUsageArgs = {
@@ -96149,6 +97030,11 @@ export declare enum GrowthUnifiedProfileMetric {
96149
97030
  Mau = "MAU",
96150
97031
  MauVariation = "MAU_VARIATION"
96151
97032
  }
97033
+ export declare type GrowthUnifiedProfileNbpUserRecommendationProduct = {
97034
+ __typename?: 'GrowthUnifiedProfileNBPUserRecommendationProduct';
97035
+ key: Scalars['String']['output'];
97036
+ values: Array<Scalars['String']['output']>;
97037
+ };
96152
97038
  export declare type GrowthUnifiedProfileOnboardingContext = {
96153
97039
  __typename?: 'GrowthUnifiedProfileOnboardingContext';
96154
97040
  confluence?: Maybe<GrowthUnifiedProfileConfluenceOnboardingContext>;
@@ -96538,6 +97424,10 @@ export declare type GrowthUnifiedProfileUserProfileResult = {
96538
97424
  __typename?: 'GrowthUnifiedProfileUserProfileResult';
96539
97425
  userActivityContext?: Maybe<GrowthUnifiedProfileUserActivityContext>;
96540
97426
  };
97427
+ export declare type GrowthUnifiedProfileUserRecommendations = {
97428
+ __typename?: 'GrowthUnifiedProfileUserRecommendations';
97429
+ nbp?: Maybe<Array<Maybe<GrowthUnifiedProfileNbpUserRecommendationProduct>>>;
97430
+ };
96541
97431
  export declare type GrowthUnifiedProfileUtm = {
96542
97432
  __typename?: 'GrowthUnifiedProfileUtm';
96543
97433
  channel?: Maybe<GrowthUnifiedProfileChannel>;
@@ -100625,6 +101515,7 @@ export declare type JiraAssignableUsersConnection = HasPageInfo & HasTotal & {
100625
101515
  };
100626
101516
  export declare type JiraAssignableUsersEdge = {
100627
101517
  __typename?: 'JiraAssignableUsersEdge';
101518
+ accountType?: Maybe<Scalars['String']['output']>;
100628
101519
  cursor: Scalars['String']['output'];
100629
101520
  node?: Maybe<User>;
100630
101521
  };
@@ -101540,6 +102431,7 @@ export declare type JiraBacklogVersionData = {
101540
102431
  export declare type JiraBacklogView = JiraView & Node & {
101541
102432
  __typename?: 'JiraBacklogView';
101542
102433
  assigneeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
102434
+ boardConfig?: Maybe<JiraBacklogViewBoardConfig>;
101543
102435
  boardNameToggle?: Maybe<Scalars['Boolean']['output']>;
101544
102436
  cardDensity?: Maybe<JiraBacklogCardDensity>;
101545
102437
  cardFields?: Maybe<JiraBacklogViewCardFieldConnection>;
@@ -101550,6 +102442,7 @@ export declare type JiraBacklogView = JiraView & Node & {
101550
102442
  epicFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
101551
102443
  epicPanelToggle?: Maybe<Scalars['Boolean']['output']>;
101552
102444
  error?: Maybe<QueryError>;
102445
+ globalConfig?: Maybe<JiraBacklogViewGlobalConfig>;
101553
102446
  id: Scalars['ID']['output'];
101554
102447
  issueTypeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
101555
102448
  labelFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
@@ -101609,6 +102502,10 @@ export declare type JiraBacklogViewVersionFiltersArgs = {
101609
102502
  after?: InputMaybe<Scalars['String']['input']>;
101610
102503
  first?: InputMaybe<Scalars['Int']['input']>;
101611
102504
  };
102505
+ export declare type JiraBacklogViewBoardConfig = {
102506
+ __typename?: 'JiraBacklogViewBoardConfig';
102507
+ rankCustomFieldId?: Maybe<Scalars['Long']['output']>;
102508
+ };
101612
102509
  export declare type JiraBacklogViewCardField = {
101613
102510
  __typename?: 'JiraBacklogViewCardField';
101614
102511
  enabled: Scalars['Boolean']['output'];
@@ -101671,12 +102568,17 @@ export declare type JiraBacklogViewColumnCardListIssuesArgs = {
101671
102568
  first?: InputMaybe<Scalars['Int']['input']>;
101672
102569
  last?: InputMaybe<Scalars['Int']['input']>;
101673
102570
  };
102571
+ export declare type JiraBacklogViewGlobalConfig = {
102572
+ __typename?: 'JiraBacklogViewGlobalConfig';
102573
+ parentHierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
102574
+ };
101674
102575
  export declare type JiraBacklogViewInput = {
101675
102576
  jiraBacklogViewQueryInput: JiraBacklogViewQueryInput;
101676
102577
  };
101677
102578
  export declare type JiraBacklogViewPermissions = {
101678
102579
  __typename?: 'JiraBacklogViewPermissions';
101679
102580
  canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
102581
+ canManageSprints?: Maybe<Scalars['Boolean']['output']>;
101680
102582
  };
101681
102583
  export declare type JiraBacklogViewQueryInput = {
101682
102584
  viewId?: InputMaybe<Scalars['ID']['input']>;
@@ -103208,6 +104110,9 @@ export declare type JiraClearBoardIssueCardCoverPayload = Payload & {
103208
104110
  issue?: Maybe<JiraIssue>;
103209
104111
  success: Scalars['Boolean']['output'];
103210
104112
  };
104113
+ export declare type JiraClearProjectLevelSidebarMenuItemNameInput = {
104114
+ confirm?: InputMaybe<Scalars['Boolean']['input']>;
104115
+ };
103211
104116
  export declare type JiraClearableDateFieldInput = {
103212
104117
  date?: InputMaybe<JiraDateInput>;
103213
104118
  fieldId: Scalars['ID']['input'];
@@ -107146,6 +108051,7 @@ export declare type JiraGlobalTimeTrackingSettings = {
107146
108051
  export declare type JiraGoal = Node & {
107147
108052
  __typename?: 'JiraGoal';
107148
108053
  id: Scalars['ID']['output'];
108054
+ isPrivate?: Maybe<Scalars['Boolean']['output']>;
107149
108055
  key?: Maybe<Scalars['String']['output']>;
107150
108056
  name?: Maybe<Scalars['String']['output']>;
107151
108057
  score?: Maybe<Scalars['Float']['output']>;
@@ -107603,6 +108509,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
107603
108509
  designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
107604
108510
  devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
107605
108511
  devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
108512
+ devSummary?: Maybe<JiraIssueDevSummary>;
107606
108513
  devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
107607
108514
  developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
107608
108515
  dueDateField?: Maybe<JiraDatePickerField>;
@@ -115048,6 +115955,7 @@ export declare type JiraProjectLevelSidebarMenuCustomization = {
115048
115955
  __typename?: 'JiraProjectLevelSidebarMenuCustomization';
115049
115956
  hiddenMenuItems?: Maybe<JiraProjectLevelSidebarMenuItemConnection>;
115050
115957
  id?: Maybe<Scalars['ID']['output']>;
115958
+ renamedMenuItems?: Maybe<JiraProjectLevelSidebarRenamedMenuItemConnection>;
115051
115959
  };
115052
115960
  export declare type JiraProjectLevelSidebarMenuCustomizationResult = JiraProjectLevelSidebarMenuCustomization | QueryError;
115053
115961
  export declare type JiraProjectLevelSidebarMenuItem = {
@@ -115068,6 +115976,22 @@ export declare type JiraProjectLevelSidebarMenuItemEdge = {
115068
115976
  export declare type JiraProjectLevelSidebarMenuItemInput = {
115069
115977
  itemId: Scalars['ID']['input'];
115070
115978
  };
115979
+ export declare type JiraProjectLevelSidebarRenamedMenuItem = {
115980
+ __typename?: 'JiraProjectLevelSidebarRenamedMenuItem';
115981
+ itemId: Scalars['ID']['output'];
115982
+ renamedMenuItemName?: Maybe<Scalars['String']['output']>;
115983
+ };
115984
+ export declare type JiraProjectLevelSidebarRenamedMenuItemConnection = {
115985
+ __typename?: 'JiraProjectLevelSidebarRenamedMenuItemConnection';
115986
+ edges?: Maybe<Array<Maybe<JiraProjectLevelSidebarRenamedMenuItemEdge>>>;
115987
+ pageInfo?: Maybe<PageInfo>;
115988
+ totalCount?: Maybe<Scalars['Int']['output']>;
115989
+ };
115990
+ export declare type JiraProjectLevelSidebarRenamedMenuItemEdge = {
115991
+ __typename?: 'JiraProjectLevelSidebarRenamedMenuItemEdge';
115992
+ cursor: Scalars['String']['output'];
115993
+ node?: Maybe<JiraProjectLevelSidebarRenamedMenuItem>;
115994
+ };
115071
115995
  export declare enum JiraProjectListRightPanelState {
115072
115996
  Closed = "CLOSED",
115073
115997
  Open = "OPEN"
@@ -117394,6 +118318,25 @@ export declare type JiraRenameNavigationItemPayload = Payload & {
117394
118318
  navigationItem?: Maybe<JiraNavigationItem>;
117395
118319
  success: Scalars['Boolean']['output'];
117396
118320
  };
118321
+ export declare type JiraRenameProjectLevelSidebarMenuItemInput = {
118322
+ action: JiraRenameProjectLevelSidebarMenuItemNameActionInput;
118323
+ cloudId: Scalars['ID']['input'];
118324
+ itemId: Scalars['ID']['input'];
118325
+ projectId: Scalars['ID']['input'];
118326
+ };
118327
+ export declare type JiraRenameProjectLevelSidebarMenuItemNameActionInput = {
118328
+ clear?: InputMaybe<JiraClearProjectLevelSidebarMenuItemNameInput>;
118329
+ rename?: InputMaybe<JiraRenameProjectLevelSidebarMenuItemNameInput>;
118330
+ };
118331
+ export declare type JiraRenameProjectLevelSidebarMenuItemNameInput = {
118332
+ newName: Scalars['String']['input'];
118333
+ };
118334
+ export declare type JiraRenameProjectLevelSidebarMenuItemPayload = Payload & {
118335
+ __typename?: 'JiraRenameProjectLevelSidebarMenuItemPayload';
118336
+ errors?: Maybe<Array<MutationError>>;
118337
+ jiraProjectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
118338
+ success: Scalars['Boolean']['output'];
118339
+ };
117397
118340
  export declare type JiraReorderBoardViewColumnInput = {
117398
118341
  columnId: Scalars['ID']['input'];
117399
118342
  position: JiraReorderBoardViewColumnPosition;
@@ -120042,11 +120985,15 @@ export declare type JiraSingleLineTextFieldOperationInput = {
120042
120985
  operation: JiraSingleValueFieldOperations;
120043
120986
  text?: InputMaybe<Scalars['String']['input']>;
120044
120987
  };
120045
- export declare type JiraSingleLineTextFieldPayload = Payload & {
120988
+ export declare type JiraSingleLineTextFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
120046
120989
  __typename?: 'JiraSingleLineTextFieldPayload';
120047
120990
  errors?: Maybe<Array<MutationError>>;
120048
120991
  field?: Maybe<JiraSingleLineTextField>;
120049
120992
  success: Scalars['Boolean']['output'];
120993
+ updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
120994
+ };
120995
+ export declare type JiraSingleLineTextFieldPayloadUpdatedDependentFieldsArgs = {
120996
+ first?: InputMaybe<Scalars['Int']['input']>;
120050
120997
  };
120051
120998
  export declare type JiraSingleOrganizationFieldInput = {
120052
120999
  fieldId: Scalars['ID']['input'];
@@ -120119,6 +121066,7 @@ export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssue
120119
121066
  searchUrl?: Maybe<Scalars['String']['output']>;
120120
121067
  type: Scalars['String']['output'];
120121
121068
  user?: Maybe<User>;
121069
+ userAccountType?: Maybe<Scalars['String']['output']>;
120122
121070
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
120123
121071
  users?: Maybe<JiraUserConnection>;
120124
121072
  };
@@ -120490,6 +121438,10 @@ export declare enum JiraSprintState {
120490
121438
  Closed = "CLOSED",
120491
121439
  Future = "FUTURE"
120492
121440
  }
121441
+ export declare type JiraSprintStreamHubPayload = {
121442
+ __typename?: 'JiraSprintStreamHubPayload';
121443
+ resource?: Maybe<Scalars['ID']['output']>;
121444
+ };
120493
121445
  export declare type JiraSprintUpdateInput = {
120494
121446
  endDate?: InputMaybe<Scalars['String']['input']>;
120495
121447
  goal?: InputMaybe<Scalars['String']['input']>;
@@ -120669,6 +121621,8 @@ export declare type JiraSubscription = {
120669
121621
  onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
120670
121622
  onJwmIssueUpdatedByProject?: Maybe<JiraIssueUpdatedStreamHubPayload>;
120671
121623
  onProjectCleanupTaskStatusChange?: Maybe<JiraProjectCleanupTaskStatus>;
121624
+ onSprintDeleted?: Maybe<JiraSprintStreamHubPayload>;
121625
+ onSprintUpdated?: Maybe<JiraSprintStreamHubPayload>;
120672
121626
  onSuggestedChildIssue?: Maybe<JiraOnSuggestedChildIssueResult>;
120673
121627
  };
120674
121628
  export declare type JiraSubscriptionBulkOperationProgressSubscriptionArgs = {
@@ -120824,6 +121778,14 @@ export declare type JiraSubscriptionOnJwmIssueUpdatedByProjectArgs = {
120824
121778
  export declare type JiraSubscriptionOnProjectCleanupTaskStatusChangeArgs = {
120825
121779
  cloudId: Scalars['ID']['input'];
120826
121780
  };
121781
+ export declare type JiraSubscriptionOnSprintDeletedArgs = {
121782
+ boardAri: Scalars['ID']['input'];
121783
+ cloudId: Scalars['ID']['input'];
121784
+ };
121785
+ export declare type JiraSubscriptionOnSprintUpdatedArgs = {
121786
+ boardAri: Scalars['ID']['input'];
121787
+ cloudId: Scalars['ID']['input'];
121788
+ };
120827
121789
  export declare type JiraSubscriptionOnSuggestedChildIssueArgs = {
120828
121790
  additionalContext?: InputMaybe<Scalars['String']['input']>;
120829
121791
  channelId?: InputMaybe<Scalars['String']['input']>;
@@ -121609,6 +122571,7 @@ export declare type JiraUpdateCommentInput = {
121609
122571
  issueId: Scalars['ID']['input'];
121610
122572
  jsdIncidentActivityViewHidden?: InputMaybe<Scalars['Boolean']['input']>;
121611
122573
  permissionLevel?: InputMaybe<JiraPermissionLevelInput>;
122574
+ visibility?: InputMaybe<JiraServiceManagementCommentVisibility>;
121612
122575
  };
121613
122576
  export declare type JiraUpdateCommentPayload = {
121614
122577
  __typename?: 'JiraUpdateCommentPayload';
@@ -122221,11 +123184,15 @@ export declare type JiraUrlFieldOperationInput = {
122221
123184
  operation: JiraSingleValueFieldOperations;
122222
123185
  uri?: InputMaybe<Scalars['String']['input']>;
122223
123186
  };
122224
- export declare type JiraUrlFieldPayload = Payload & {
123187
+ export declare type JiraUrlFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
122225
123188
  __typename?: 'JiraUrlFieldPayload';
122226
123189
  errors?: Maybe<Array<MutationError>>;
122227
123190
  field?: Maybe<JiraUrlField>;
122228
123191
  success: Scalars['Boolean']['output'];
123192
+ updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
123193
+ };
123194
+ export declare type JiraUrlFieldPayloadUpdatedDependentFieldsArgs = {
123195
+ first?: InputMaybe<Scalars['Int']['input']>;
122229
123196
  };
122230
123197
  export declare type JiraUsageLimitExceededError = {
122231
123198
  __typename?: 'JiraUsageLimitExceededError';
@@ -123919,14 +124886,24 @@ export declare type JpdViewUpdatedEvent = {
123919
124886
  viewId: Scalars['Int']['output'];
123920
124887
  viewUuid: Scalars['ID']['output'];
123921
124888
  };
123922
- export declare type JpdViewsServiceAssociateGlobalViewInput = {
124889
+ export declare type JpdViewsServiceAssociateGlobalViewContainerInput = {
123923
124890
  containerId: Scalars['String']['input'];
123924
124891
  containerType: JpdViewsServiceGlobalViewAssociationContainerType;
124892
+ };
124893
+ export declare type JpdViewsServiceAssociateGlobalViewContainerResult = {
124894
+ __typename?: 'JpdViewsServiceAssociateGlobalViewContainerResult';
124895
+ containerId: Scalars['String']['output'];
124896
+ errors?: Maybe<Array<MutationError>>;
124897
+ success: Scalars['Boolean']['output'];
124898
+ };
124899
+ export declare type JpdViewsServiceAssociateGlobalViewInput = {
124900
+ containers: Array<JpdViewsServiceAssociateGlobalViewContainerInput>;
123925
124901
  id: Scalars['ID']['input'];
123926
124902
  };
123927
124903
  export declare type JpdViewsServiceAssociateGlobalViewPayload = Payload & {
123928
124904
  __typename?: 'JpdViewsServiceAssociateGlobalViewPayload';
123929
124905
  errors?: Maybe<Array<MutationError>>;
124906
+ results?: Maybe<Array<JpdViewsServiceAssociateGlobalViewContainerResult>>;
123930
124907
  success: Scalars['Boolean']['output'];
123931
124908
  };
123932
124909
  export declare type JpdViewsServiceAxisConfig = {
@@ -124135,14 +125112,24 @@ export declare type JpdViewsServiceTimelineConfigInput = {
124135
125112
  startTimestamp: Scalars['String']['input'];
124136
125113
  summaryCardField: Scalars['String']['input'];
124137
125114
  };
124138
- export declare type JpdViewsServiceUnassociateGlobalViewInput = {
125115
+ export declare type JpdViewsServiceUnassociateGlobalViewContainerInput = {
124139
125116
  containerId: Scalars['String']['input'];
124140
125117
  containerType: JpdViewsServiceGlobalViewAssociationContainerType;
125118
+ };
125119
+ export declare type JpdViewsServiceUnassociateGlobalViewContainerResult = {
125120
+ __typename?: 'JpdViewsServiceUnassociateGlobalViewContainerResult';
125121
+ containerId: Scalars['String']['output'];
125122
+ errors?: Maybe<Array<MutationError>>;
125123
+ success: Scalars['Boolean']['output'];
125124
+ };
125125
+ export declare type JpdViewsServiceUnassociateGlobalViewInput = {
125126
+ containers: Array<JpdViewsServiceUnassociateGlobalViewContainerInput>;
124141
125127
  id: Scalars['ID']['input'];
124142
125128
  };
124143
125129
  export declare type JpdViewsServiceUnassociateGlobalViewPayload = Payload & {
124144
125130
  __typename?: 'JpdViewsServiceUnassociateGlobalViewPayload';
124145
125131
  errors?: Maybe<Array<MutationError>>;
125132
+ results?: Maybe<Array<JpdViewsServiceUnassociateGlobalViewContainerResult>>;
124146
125133
  success: Scalars['Boolean']['output'];
124147
125134
  };
124148
125135
  export declare type JpdViewsServiceUpdateGlobalViewInput = {
@@ -125202,9 +126189,14 @@ export declare type JsmSolutionComposerPlanQueryApi = {
125202
126189
  export declare type JsmSolutionComposerPlanQueryApiJsmSolutionComposerPlanStatusArgs = {
125203
126190
  projectAri: Scalars['ID']['input'];
125204
126191
  };
126192
+ export declare type JsmSolutionComposerPlanStatusMetadata = {
126193
+ __typename?: 'JsmSolutionComposerPlanStatusMetadata';
126194
+ hubAri?: Maybe<Scalars['ID']['output']>;
126195
+ };
125205
126196
  export declare type JsmSolutionComposerPlanStatusResponse = {
125206
126197
  __typename?: 'JsmSolutionComposerPlanStatusResponse';
125207
126198
  id: Scalars['ID']['output'];
126199
+ metadata?: Maybe<JsmSolutionComposerPlanStatusMetadata>;
125208
126200
  projectAri: Scalars['ID']['output'];
125209
126201
  status: JsmSolutionComposerPlanStatusType;
125210
126202
  steps?: Maybe<Array<Maybe<JsmSolutionComposerStepStatus>>>;
@@ -125638,7 +126630,7 @@ export declare type KitsuneFeedback = Node & {
125638
126630
  reporterId?: Maybe<Scalars['ID']['output']>;
125639
126631
  source: KitsuneSource;
125640
126632
  sourceCategory: KitsuneSourceCategory;
125641
- summary?: Maybe<KitsuneFeedbackSummary>;
126633
+ summary?: Maybe<KitsuneSummary>;
125642
126634
  title?: Maybe<Scalars['String']['output']>;
125643
126635
  type: KitsuneFeedbackType;
125644
126636
  };
@@ -125670,20 +126662,12 @@ export declare type KitsuneFeedbackEvent = {
125670
126662
  id: Scalars['ID']['output'];
125671
126663
  source?: Maybe<KitsuneSource>;
125672
126664
  spaceId: Scalars['ID']['output'];
125673
- summary?: Maybe<KitsuneFeedbackSummary>;
126665
+ summary?: Maybe<KitsuneSummary>;
125674
126666
  tenantId: Scalars['ID']['output'];
125675
126667
  title?: Maybe<Scalars['String']['output']>;
125676
126668
  type: KitsuneFeedbackType;
125677
126669
  updatedAt: Scalars['DateTime']['output'];
125678
126670
  };
125679
- export declare type KitsuneFeedbackSummary = {
125680
- __typename?: 'KitsuneFeedbackSummary';
125681
- content?: Maybe<Scalars['KitsuneADF']['output']>;
125682
- generatedAt?: Maybe<Scalars['DateTime']['output']>;
125683
- status?: Maybe<KitsuneSummaryStatus>;
125684
- updatedAt?: Maybe<Scalars['DateTime']['output']>;
125685
- updatedBy?: Maybe<Scalars['String']['output']>;
125686
- };
125687
126671
  export declare enum KitsuneFeedbackType {
125688
126672
  Call = "CALL",
125689
126673
  Conversation = "CONVERSATION",
@@ -125740,6 +126724,16 @@ export declare type KitsuneFilterValueInput = {
125740
126724
  valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
125741
126725
  valueText?: InputMaybe<Array<Scalars['String']['input']>>;
125742
126726
  };
126727
+ export declare type KitsuneInsight = Node & {
126728
+ __typename?: 'KitsuneInsight';
126729
+ content: Scalars['KitsuneADF']['output'];
126730
+ createdAt: Scalars['DateTime']['output'];
126731
+ creator?: Maybe<User>;
126732
+ creatorId?: Maybe<Scalars['ID']['output']>;
126733
+ id: Scalars['ID']['output'];
126734
+ summary?: Maybe<KitsuneSummary>;
126735
+ title: Scalars['String']['output'];
126736
+ };
125743
126737
  export declare enum KitsuneLogicalOperator {
125744
126738
  And = "AND",
125745
126739
  Or = "OR"
@@ -125984,6 +126978,14 @@ export declare type KitsuneSpaceEdge = KitsuneEdge & {
125984
126978
  cursor: Scalars['String']['output'];
125985
126979
  node?: Maybe<KitsuneSpace>;
125986
126980
  };
126981
+ export declare type KitsuneSummary = {
126982
+ __typename?: 'KitsuneSummary';
126983
+ content?: Maybe<Scalars['KitsuneADF']['output']>;
126984
+ generatedAt?: Maybe<Scalars['DateTime']['output']>;
126985
+ status?: Maybe<KitsuneSummaryStatus>;
126986
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
126987
+ updatedBy?: Maybe<Scalars['String']['output']>;
126988
+ };
125987
126989
  export declare enum KitsuneSummaryStatus {
125988
126990
  Done = "DONE",
125989
126991
  Error = "ERROR",
@@ -132008,6 +133010,7 @@ export declare type MercuryChangeProposal = Node & {
132008
133010
  export declare type MercuryChangeProposalCommentsArgs = {
132009
133011
  after?: InputMaybe<Scalars['String']['input']>;
132010
133012
  first?: InputMaybe<Scalars['Int']['input']>;
133013
+ sort?: InputMaybe<Array<MercuryChangeProposalCommentSort>>;
132011
133014
  };
132012
133015
  export declare type MercuryChangeProposalLinkedGoalsArgs = {
132013
133016
  after?: InputMaybe<Scalars['String']['input']>;
@@ -132038,6 +133041,14 @@ export declare type MercuryChangeProposalCommentEdge = {
132038
133041
  cursor: Scalars['String']['output'];
132039
133042
  node?: Maybe<MercuryChangeProposalComment>;
132040
133043
  };
133044
+ export declare type MercuryChangeProposalCommentSort = {
133045
+ field: MercuryChangeProposalCommentSortField;
133046
+ order: SortOrder;
133047
+ };
133048
+ export declare enum MercuryChangeProposalCommentSortField {
133049
+ CreatedDate = "CREATED_DATE",
133050
+ UpdatedDate = "UPDATED_DATE"
133051
+ }
132041
133052
  export declare type MercuryChangeProposalConnection = {
132042
133053
  __typename?: 'MercuryChangeProposalConnection';
132043
133054
  edges?: Maybe<Array<Maybe<MercuryChangeProposalEdge>>>;
@@ -132554,6 +133565,7 @@ export declare type MercuryCreateRiskInput = {
132554
133565
  description?: InputMaybe<Scalars['String']['input']>;
132555
133566
  name: Scalars['String']['input'];
132556
133567
  owner?: InputMaybe<Scalars['ID']['input']>;
133568
+ submitter?: InputMaybe<Scalars['ID']['input']>;
132557
133569
  targetDate?: InputMaybe<Scalars['String']['input']>;
132558
133570
  };
132559
133571
  export declare type MercuryCreateRiskPayload = Payload & {
@@ -132608,12 +133620,14 @@ export declare type MercuryCustomFieldDefinition = {
132608
133620
  createdBy?: Maybe<User>;
132609
133621
  createdDate: Scalars['DateTime']['output'];
132610
133622
  description?: Maybe<Scalars['String']['output']>;
133623
+ fieldKind: MercuryCustomFieldKind;
132611
133624
  id: Scalars['ID']['output'];
132612
133625
  name: Scalars['String']['output'];
132613
133626
  scope: MercuryCustomFieldDefinitionScope;
132614
133627
  searchKey?: Maybe<Scalars['String']['output']>;
132615
133628
  updatedBy?: Maybe<User>;
132616
133629
  updatedDate: Scalars['DateTime']['output'];
133630
+ visibility: MercuryCustomFieldVisibility;
132617
133631
  };
132618
133632
  export declare type MercuryCustomFieldDefinitionConnection = {
132619
133633
  __typename?: 'MercuryCustomFieldDefinitionConnection';
@@ -132643,6 +133657,10 @@ export declare type MercuryCustomFieldInput = {
132643
133657
  singleSelectField?: InputMaybe<MercurySingleSelectCustomFieldInput>;
132644
133658
  textField?: InputMaybe<MercuryTextCustomFieldInput>;
132645
133659
  };
133660
+ export declare enum MercuryCustomFieldKind {
133661
+ Custom = "CUSTOM",
133662
+ System = "SYSTEM"
133663
+ }
132646
133664
  export declare type MercuryCustomFieldSelectionOptionSetting = {
132647
133665
  __typename?: 'MercuryCustomFieldSelectionOptionSetting';
132648
133666
  key: MercuryCustomFieldSelectionOptionSettingKey;
@@ -132655,6 +133673,10 @@ export declare type MercuryCustomFieldSelectionOptionSettingInput = {
132655
133673
  export declare enum MercuryCustomFieldSelectionOptionSettingKey {
132656
133674
  Color = "COLOR"
132657
133675
  }
133676
+ export declare enum MercuryCustomFieldVisibility {
133677
+ Hidden = "HIDDEN",
133678
+ Visible = "VISIBLE"
133679
+ }
132658
133680
  export declare type MercuryCustomSelectFieldOption = {
132659
133681
  __typename?: 'MercuryCustomSelectFieldOption';
132660
133682
  id: Scalars['ID']['output'];
@@ -132679,12 +133701,14 @@ export declare type MercuryDateCustomFieldDefinition = MercuryCustomFieldDefinit
132679
133701
  createdBy?: Maybe<User>;
132680
133702
  createdDate: Scalars['DateTime']['output'];
132681
133703
  description?: Maybe<Scalars['String']['output']>;
133704
+ fieldKind: MercuryCustomFieldKind;
132682
133705
  id: Scalars['ID']['output'];
132683
133706
  name: Scalars['String']['output'];
132684
133707
  scope: MercuryCustomFieldDefinitionScope;
132685
133708
  searchKey?: Maybe<Scalars['String']['output']>;
132686
133709
  updatedBy?: Maybe<User>;
132687
133710
  updatedDate: Scalars['DateTime']['output'];
133711
+ visibility: MercuryCustomFieldVisibility;
132688
133712
  };
132689
133713
  export declare type MercuryDateCustomFieldInput = {
132690
133714
  dateValue?: InputMaybe<Scalars['Date']['input']>;
@@ -133035,6 +134059,7 @@ export declare type MercuryFocusArea = Node & {
133035
134059
  name: Scalars['String']['output'];
133036
134060
  owner?: Maybe<User>;
133037
134061
  parent?: Maybe<MercuryFocusArea>;
134062
+ starred?: Maybe<Scalars['Boolean']['output']>;
133038
134063
  status: MercuryFocusAreaStatus;
133039
134064
  statusTransitions: MercuryFocusAreaStatusTransitions;
133040
134065
  subFocusAreas?: Maybe<MercuryFocusAreaConnection>;
@@ -133525,6 +134550,7 @@ export declare type MercuryFundsMutationApi = {
133525
134550
  updateCostItemClassification?: Maybe<MercuryUpdateCostItemClassificationPayload>;
133526
134551
  updateCostItemExpenditureType?: Maybe<MercuryUpdateCostItemExpenditureTypePayload>;
133527
134552
  updateCostItemInvestmentCategory?: Maybe<MercuryUpdateCostItemInvestmentCategoryPayload>;
134553
+ updateCostItemName?: Maybe<MercuryUpdateCostItemNamePayload>;
133528
134554
  updateCostPeriodValueAmount?: Maybe<MercuryUpdateCostPeriodValueAmountPayload>;
133529
134555
  updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
133530
134556
  updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
@@ -133568,6 +134594,9 @@ export declare type MercuryFundsMutationApiUpdateCostItemExpenditureTypeArgs = {
133568
134594
  export declare type MercuryFundsMutationApiUpdateCostItemInvestmentCategoryArgs = {
133569
134595
  input: MercuryUpdateCostItemInvestmentCategoryInput;
133570
134596
  };
134597
+ export declare type MercuryFundsMutationApiUpdateCostItemNameArgs = {
134598
+ input: MercuryUpdateCostItemNameInput;
134599
+ };
133571
134600
  export declare type MercuryFundsMutationApiUpdateCostPeriodValueAmountArgs = {
133572
134601
  input: MercuryUpdateCostPeriodValueAmountInput;
133573
134602
  };
@@ -134117,6 +135146,7 @@ export declare type MercuryMultiSelectCustomFieldDefinition = MercuryCustomField
134117
135146
  createdBy?: Maybe<User>;
134118
135147
  createdDate: Scalars['DateTime']['output'];
134119
135148
  description?: Maybe<Scalars['String']['output']>;
135149
+ fieldKind: MercuryCustomFieldKind;
134120
135150
  id: Scalars['ID']['output'];
134121
135151
  name: Scalars['String']['output'];
134122
135152
  options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
@@ -134124,6 +135154,7 @@ export declare type MercuryMultiSelectCustomFieldDefinition = MercuryCustomField
134124
135154
  searchKey?: Maybe<Scalars['String']['output']>;
134125
135155
  updatedBy?: Maybe<User>;
134126
135156
  updatedDate: Scalars['DateTime']['output'];
135157
+ visibility: MercuryCustomFieldVisibility;
134127
135158
  };
134128
135159
  export declare type MercuryMultiSelectCustomFieldInput = {
134129
135160
  options?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -134164,7 +135195,9 @@ export declare type MercuryMutationApi = {
134164
135195
  setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
134165
135196
  setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
134166
135197
  setPreference?: Maybe<MercurySetPreferencePayload>;
135198
+ starFocusArea?: Maybe<MercuryStarFocusAreaPayload>;
134167
135199
  transitionFocusAreaStatus?: Maybe<MercuryUpdateFocusAreaPayload>;
135200
+ unStarFocusArea?: Maybe<MercuryUnStarFocusAreaPayload>;
134168
135201
  unarchiveFocusArea?: Maybe<MercuryUnarchiveFocusAreaPayload>;
134169
135202
  updateComment?: Maybe<MercuryUpdateCommentPayload>;
134170
135203
  updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
@@ -134282,9 +135315,15 @@ export declare type MercuryMutationApiSetFocusAreaCustomFieldValuesArgs = {
134282
135315
  export declare type MercuryMutationApiSetPreferenceArgs = {
134283
135316
  input: MercurySetPreferenceInput;
134284
135317
  };
135318
+ export declare type MercuryMutationApiStarFocusAreaArgs = {
135319
+ input: MercuryStarFocusAreaInput;
135320
+ };
134285
135321
  export declare type MercuryMutationApiTransitionFocusAreaStatusArgs = {
134286
135322
  input: MercuryTransitionFocusAreaStatusInput;
134287
135323
  };
135324
+ export declare type MercuryMutationApiUnStarFocusAreaArgs = {
135325
+ input: MercuryUnStarFocusAreaInput;
135326
+ };
134288
135327
  export declare type MercuryMutationApiUnarchiveFocusAreaArgs = {
134289
135328
  input: MercuryUnarchiveFocusAreaInput;
134290
135329
  };
@@ -134431,12 +135470,14 @@ export declare type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefin
134431
135470
  createdBy?: Maybe<User>;
134432
135471
  createdDate: Scalars['DateTime']['output'];
134433
135472
  description?: Maybe<Scalars['String']['output']>;
135473
+ fieldKind: MercuryCustomFieldKind;
134434
135474
  id: Scalars['ID']['output'];
134435
135475
  name: Scalars['String']['output'];
134436
135476
  scope: MercuryCustomFieldDefinitionScope;
134437
135477
  searchKey?: Maybe<Scalars['String']['output']>;
134438
135478
  updatedBy?: Maybe<User>;
134439
135479
  updatedDate: Scalars['DateTime']['output'];
135480
+ visibility: MercuryCustomFieldVisibility;
134440
135481
  };
134441
135482
  export declare type MercuryNumberCustomFieldInput = {
134442
135483
  numberValue?: InputMaybe<Scalars['Float']['input']>;
@@ -135223,7 +136264,7 @@ export declare type MercuryRisk = Node & {
135223
136264
  owner?: Maybe<Scalars['ID']['output']>;
135224
136265
  status?: Maybe<MercuryRiskStatus>;
135225
136266
  statusTransitions?: Maybe<MercuryRiskStatusTransitions>;
135226
- submitter: Scalars['ID']['output'];
136267
+ submitter?: Maybe<User>;
135227
136268
  targetDate?: Maybe<Scalars['String']['output']>;
135228
136269
  updatedDate: Scalars['String']['output'];
135229
136270
  };
@@ -135285,6 +136326,7 @@ export declare type MercuryRisksMutationApi = {
135285
136326
  updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
135286
136327
  updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
135287
136328
  updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
136329
+ updateRiskSubmitter?: Maybe<MercuryUpdateRiskPayload>;
135288
136330
  updateRiskTargetDate?: Maybe<MercuryUpdateRiskPayload>;
135289
136331
  };
135290
136332
  export declare type MercuryRisksMutationApiCreateRiskArgs = {
@@ -135311,6 +136353,9 @@ export declare type MercuryRisksMutationApiUpdateRiskNameArgs = {
135311
136353
  export declare type MercuryRisksMutationApiUpdateRiskOwnerArgs = {
135312
136354
  input: MercuryUpdateRiskOwnerInput;
135313
136355
  };
136356
+ export declare type MercuryRisksMutationApiUpdateRiskSubmitterArgs = {
136357
+ input: MercuryUpdateRiskSubmitterInput;
136358
+ };
135314
136359
  export declare type MercuryRisksMutationApiUpdateRiskTargetDateArgs = {
135315
136360
  input: MercuryUpdateRiskTargetDateInput;
135316
136361
  };
@@ -135408,6 +136453,7 @@ export declare type MercurySingleSelectCustomFieldDefinition = MercuryCustomFiel
135408
136453
  createdBy?: Maybe<User>;
135409
136454
  createdDate: Scalars['DateTime']['output'];
135410
136455
  description?: Maybe<Scalars['String']['output']>;
136456
+ fieldKind: MercuryCustomFieldKind;
135411
136457
  id: Scalars['ID']['output'];
135412
136458
  name: Scalars['String']['output'];
135413
136459
  options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
@@ -135415,6 +136461,7 @@ export declare type MercurySingleSelectCustomFieldDefinition = MercuryCustomFiel
135415
136461
  searchKey?: Maybe<Scalars['String']['output']>;
135416
136462
  updatedBy?: Maybe<User>;
135417
136463
  updatedDate: Scalars['DateTime']['output'];
136464
+ visibility: MercuryCustomFieldVisibility;
135418
136465
  };
135419
136466
  export declare type MercurySingleSelectCustomFieldInput = {
135420
136467
  option?: InputMaybe<Scalars['ID']['input']>;
@@ -135424,6 +136471,14 @@ export declare type MercurySpendAggregation = {
135424
136471
  aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
135425
136472
  totalAssignedSpend?: Maybe<Scalars['BigDecimal']['output']>;
135426
136473
  };
136474
+ export declare type MercuryStarFocusAreaInput = {
136475
+ focusAreaId: Scalars['ID']['input'];
136476
+ };
136477
+ export declare type MercuryStarFocusAreaPayload = Payload & {
136478
+ __typename?: 'MercuryStarFocusAreaPayload';
136479
+ errors?: Maybe<Array<MutationError>>;
136480
+ success: Scalars['Boolean']['output'];
136481
+ };
135427
136482
  export declare enum MercuryStatusColor {
135428
136483
  Blue = "BLUE",
135429
136484
  Gray = "GRAY",
@@ -135879,12 +136934,14 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
135879
136934
  createdBy?: Maybe<User>;
135880
136935
  createdDate: Scalars['DateTime']['output'];
135881
136936
  description?: Maybe<Scalars['String']['output']>;
136937
+ fieldKind: MercuryCustomFieldKind;
135882
136938
  id: Scalars['ID']['output'];
135883
136939
  name: Scalars['String']['output'];
135884
136940
  scope: MercuryCustomFieldDefinitionScope;
135885
136941
  searchKey?: Maybe<Scalars['String']['output']>;
135886
136942
  updatedBy?: Maybe<User>;
135887
136943
  updatedDate: Scalars['DateTime']['output'];
136944
+ visibility: MercuryCustomFieldVisibility;
135888
136945
  };
135889
136946
  export declare type MercuryTextCustomFieldInput = {
135890
136947
  textValue?: InputMaybe<Scalars['String']['input']>;
@@ -135936,6 +136993,14 @@ export declare type MercuryTransitionStrategicEventStatusInput = {
135936
136993
  id: Scalars['ID']['input'];
135937
136994
  statusTransitionId: Scalars['ID']['input'];
135938
136995
  };
136996
+ export declare type MercuryUnStarFocusAreaInput = {
136997
+ focusAreaId: Scalars['ID']['input'];
136998
+ };
136999
+ export declare type MercuryUnStarFocusAreaPayload = Payload & {
137000
+ __typename?: 'MercuryUnStarFocusAreaPayload';
137001
+ errors?: Maybe<Array<MutationError>>;
137002
+ success: Scalars['Boolean']['output'];
137003
+ };
135939
137004
  export declare type MercuryUnarchiveFocusAreaInput = {
135940
137005
  cloudId: Scalars['ID']['input'];
135941
137006
  comment?: InputMaybe<Scalars['String']['input']>;
@@ -136132,6 +137197,16 @@ export declare type MercuryUpdateCostItemInvestmentCategoryPayload = Payload & {
136132
137197
  success: Scalars['Boolean']['output'];
136133
137198
  updatedCostItem?: Maybe<MercuryCostItem>;
136134
137199
  };
137200
+ export declare type MercuryUpdateCostItemNameInput = {
137201
+ id: Scalars['ID']['input'];
137202
+ name: Scalars['String']['input'];
137203
+ };
137204
+ export declare type MercuryUpdateCostItemNamePayload = Payload & {
137205
+ __typename?: 'MercuryUpdateCostItemNamePayload';
137206
+ errors?: Maybe<Array<MutationError>>;
137207
+ success: Scalars['Boolean']['output'];
137208
+ updatedCostItem?: Maybe<MercuryCostItem>;
137209
+ };
136135
137210
  export declare type MercuryUpdateCostPeriodValueAmountInput = {
136136
137211
  amount: Scalars['String']['input'];
136137
137212
  id: Scalars['ID']['input'];
@@ -136301,6 +137376,10 @@ export declare type MercuryUpdateRiskPayload = Payload & {
136301
137376
  success: Scalars['Boolean']['output'];
136302
137377
  updatedRisk?: Maybe<MercuryRisk>;
136303
137378
  };
137379
+ export declare type MercuryUpdateRiskSubmitterInput = {
137380
+ id: Scalars['ID']['input'];
137381
+ submitter: Scalars['ID']['input'];
137382
+ };
136304
137383
  export declare type MercuryUpdateRiskTargetDateInput = {
136305
137384
  id: Scalars['ID']['input'];
136306
137385
  targetDate?: InputMaybe<Scalars['String']['input']>;
@@ -136688,6 +137767,7 @@ export declare type Mutation = {
136688
137767
  admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
136689
137768
  admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
136690
137769
  admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
137770
+ agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
136691
137771
  agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
136692
137772
  agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
136693
137773
  agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
@@ -136725,10 +137805,12 @@ export declare type Mutation = {
136725
137805
  agentWorkspace_assignSkill?: Maybe<AgentWorkspaceAssignSkillPayload>;
136726
137806
  agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalogCreateResponse>;
136727
137807
  agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogTypeCreateResponse>;
137808
+ agentWorkspace_createHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionCreateResponse>;
136728
137809
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
136729
137810
  agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
136730
137811
  agentWorkspace_deleteCatalog?: Maybe<AgentWorkspaceCatalogDeleteResponse>;
136731
137812
  agentWorkspace_deleteCatalogType?: Maybe<AgentWorkspaceCatalogTypeDeleteResponse>;
137813
+ agentWorkspace_deleteHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionDeleteResponse>;
136732
137814
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
136733
137815
  agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
136734
137816
  agentWorkspace_deleteSkill?: Maybe<AgentWorkspaceSkillDeletePayload>;
@@ -136738,11 +137820,13 @@ export declare type Mutation = {
136738
137820
  agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
136739
137821
  agentWorkspace_setAvailabilityStatus?: Maybe<AgentWorkspaceAvailabilityStatusPayload>;
136740
137822
  agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
137823
+ agentWorkspace_setProjectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailabilityPayload>;
136741
137824
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
136742
137825
  agentWorkspace_subscribeSkill?: Maybe<AgentWorkspaceSubscribeSkillPayload>;
136743
137826
  agentWorkspace_unsubscribeSkill?: Maybe<AgentWorkspaceUnsubscribeSkillPayload>;
136744
137827
  agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
136745
137828
  agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogTypeUpdateResponse>;
137829
+ agentWorkspace_updateHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionUpdateResponse>;
136746
137830
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
136747
137831
  agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
136748
137832
  agentWorkspace_updateSkillProficiency?: Maybe<AgentWorkspaceUpdateSkillProficiencyPayload>;
@@ -136872,6 +137956,7 @@ export declare type Mutation = {
136872
137956
  changeManagement_updateRovoRiskAssessmentSettings: Scalars['Boolean']['output'];
136873
137957
  channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
136874
137958
  channelPlatform_attachMediaFile?: Maybe<Scalars['String']['output']>;
137959
+ channelPlatform_botConversation?: Maybe<ChannelPlatformBotConversationResponse>;
136875
137960
  channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
136876
137961
  channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
136877
137962
  channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
@@ -136883,8 +137968,9 @@ export declare type Mutation = {
136883
137968
  channelPlatform_uploadAttachmentMetadata?: Maybe<ChannelPlatformAttachmentMetadataResponse>;
136884
137969
  clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
136885
137970
  cloudify_addRecommendation: CloudifyRecommendation;
136886
- cloudify_analyze: Array<CloudifyRecommendation>;
136887
137971
  cloudify_deleteRecommendations: Array<CloudifyRecommendationId>;
137972
+ cloudify_enactRecommendation: CloudifyEnactment;
137973
+ cloudify_requestAnalysis: CloudifyAnalysisExecution;
136888
137974
  commerceExp_approvalDesk?: Maybe<CommerceExpApprovalDeskMutation>;
136889
137975
  commerceExp_ccp?: Maybe<CommerceExpCcpMutation>;
136890
137976
  commerceExp_ccpMutationWithQuery?: Maybe<CommerceExpCcpMutationWithQuery>;
@@ -137217,6 +138303,7 @@ export declare type Mutation = {
137217
138303
  goals_grantAccess?: Maybe<TownsquareGoalGrantAccessPayload>;
137218
138304
  goals_linkJiraAlignProject?: Maybe<TownsquareGoalsLinkJiraAlignProjectPayload>;
137219
138305
  goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
138306
+ goals_manageAccess?: Maybe<TownsquareGoalManageAccessPayload>;
137220
138307
  goals_removeDropdownCustomFieldValue?: Maybe<TownsquareGoalsRemoveDropdownCustomFieldValuePayload>;
137221
138308
  goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
137222
138309
  goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
@@ -137309,6 +138396,7 @@ export declare type Mutation = {
137309
138396
  jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
137310
138397
  jira_removeTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
137311
138398
  jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
138399
+ jira_renameProjectLevelSidebarMenuItem?: Maybe<JiraRenameProjectLevelSidebarMenuItemPayload>;
137312
138400
  jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
137313
138401
  jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
137314
138402
  jira_resetFavicon?: Maybe<JiraResetFaviconPayload>;
@@ -137406,6 +138494,7 @@ export declare type Mutation = {
137406
138494
  jsw?: Maybe<JswMutation>;
137407
138495
  kitsune_createCustomer?: Maybe<KitsuneCustomer>;
137408
138496
  kitsune_createFeedback?: Maybe<KitsuneFeedback>;
138497
+ kitsune_createInsight?: Maybe<KitsuneInsight>;
137409
138498
  kitsune_createOrganization?: Maybe<KitsuneOrganization>;
137410
138499
  kitsune_createSection?: Maybe<KitsuneSection>;
137411
138500
  kitsune_createSpace?: Maybe<KitsuneSpace>;
@@ -137414,10 +138503,12 @@ export declare type Mutation = {
137414
138503
  kitsune_moveSection?: Maybe<KitsuneSpace>;
137415
138504
  kitsune_moveView?: Maybe<KitsuneSpace>;
137416
138505
  kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
138506
+ kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
137417
138507
  kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
137418
138508
  kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
137419
138509
  kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
137420
138510
  kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
138511
+ kitsune_updateInsight?: Maybe<KitsuneInsight>;
137421
138512
  kitsune_updateSection?: Maybe<KitsuneSection>;
137422
138513
  kitsune_updateSpace?: Maybe<KitsuneSpace>;
137423
138514
  kitsune_updateView?: Maybe<KitsuneView>;
@@ -137501,6 +138592,7 @@ export declare type Mutation = {
137501
138592
  projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
137502
138593
  projects_editUserCustomField?: Maybe<TownsquareProjectsEditUserCustomFieldPayload>;
137503
138594
  projects_grantAccess?: Maybe<TownsquareProjectGrantAccessPayload>;
138595
+ projects_manageAccess?: Maybe<TownsquareProjectManageAccessPayload>;
137504
138596
  projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
137505
138597
  projects_removeDropdownCustomFieldValue?: Maybe<TownsquareProjectsRemoveDropdownCustomFieldValuePayload>;
137506
138598
  projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
@@ -137870,6 +138962,10 @@ export declare type MutationAdmin_UpdateInvitePolicyArgs = {
137870
138962
  policyId: Scalars['ID']['input'];
137871
138963
  updateInvitePolicyInput?: InputMaybe<AdminUpdateInvitePolicyInput>;
137872
138964
  };
138965
+ export declare type MutationAgentAi_PanelRefreshArgs = {
138966
+ cloudId: Scalars['ID']['input'];
138967
+ issueId: Scalars['String']['input'];
138968
+ };
137873
138969
  export declare type MutationAgentStudio_AddGroupsToCreatePermissionArgs = {
137874
138970
  cloudId: Scalars['ID']['input'];
137875
138971
  groupARIs: Array<Scalars['ID']['input']>;
@@ -138037,6 +139133,9 @@ export declare type MutationAgentWorkspace_CreateCatalogArgs = {
138037
139133
  export declare type MutationAgentWorkspace_CreateCatalogTypeArgs = {
138038
139134
  input: AgentWorkspaceCreateCatalogTypeInput;
138039
139135
  };
139136
+ export declare type MutationAgentWorkspace_CreateHierarchyDefinitionArgs = {
139137
+ input: AgentWorkspaceCreateHierarchyDefinitionInput;
139138
+ };
138040
139139
  export declare type MutationAgentWorkspace_CreateScheduleArgs = {
138041
139140
  input: AgentWorkspaceCreateScheduleInput;
138042
139141
  };
@@ -138049,6 +139148,9 @@ export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
138049
139148
  export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
138050
139149
  input: AgentWorkspaceCatalogTypeDeleteInput;
138051
139150
  };
139151
+ export declare type MutationAgentWorkspace_DeleteHierarchyDefinitionArgs = {
139152
+ input: AgentWorkspaceDeleteHierarchyDefinitionInput;
139153
+ };
138052
139154
  export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
138053
139155
  input: AgentWorkspaceDeleteScheduleInput;
138054
139156
  };
@@ -138077,6 +139179,9 @@ export declare type MutationAgentWorkspace_SetAvailabilityStatusArgs = {
138077
139179
  export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
138078
139180
  input: AgentWorkspaceSetDefaultCapacityInput;
138079
139181
  };
139182
+ export declare type MutationAgentWorkspace_SetProjectDefaultAvailabilityArgs = {
139183
+ input: AgentWorkspaceSetProjectDefaultAvailabilityInput;
139184
+ };
138080
139185
  export declare type MutationAgentWorkspace_StartBreakArgs = {
138081
139186
  agentId: Scalars['ID']['input'];
138082
139187
  cloudId: Scalars['ID']['input'];
@@ -138093,6 +139198,9 @@ export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
138093
139198
  export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
138094
139199
  input: AgentWorkspaceUpdateCatalogTypeInput;
138095
139200
  };
139201
+ export declare type MutationAgentWorkspace_UpdateHierarchyDefinitionArgs = {
139202
+ input: AgentWorkspaceUpdateHierarchyDefinitionInput;
139203
+ };
138096
139204
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
138097
139205
  input: AgentWorkspaceUpdateScheduleInput;
138098
139206
  };
@@ -138587,6 +139695,9 @@ export declare type MutationChannelPlatform_AttachMediaFileArgs = {
138587
139695
  fileId: Scalars['String']['input'];
138588
139696
  issueId: Scalars['String']['input'];
138589
139697
  };
139698
+ export declare type MutationChannelPlatform_BotConversationArgs = {
139699
+ input: ChannelPlatformBotConversationInput;
139700
+ };
138590
139701
  export declare type MutationChannelPlatform_CreateAttendeeArgs = {
138591
139702
  contactId?: InputMaybe<Scalars['String']['input']>;
138592
139703
  };
@@ -138627,11 +139738,14 @@ export declare type MutationCloudify_AddRecommendationArgs = {
138627
139738
  projectId: Scalars['ID']['input'];
138628
139739
  siteId: Scalars['ID']['input'];
138629
139740
  };
138630
- export declare type MutationCloudify_AnalyzeArgs = {
139741
+ export declare type MutationCloudify_DeleteRecommendationsArgs = {
138631
139742
  projectId: Scalars['ID']['input'];
138632
139743
  siteId: Scalars['ID']['input'];
138633
139744
  };
138634
- export declare type MutationCloudify_DeleteRecommendationsArgs = {
139745
+ export declare type MutationCloudify_EnactRecommendationArgs = {
139746
+ recommendationId: Scalars['ID']['input'];
139747
+ };
139748
+ export declare type MutationCloudify_RequestAnalysisArgs = {
138635
139749
  projectId: Scalars['ID']['input'];
138636
139750
  siteId: Scalars['ID']['input'];
138637
139751
  };
@@ -139819,6 +140933,9 @@ export declare type MutationGoals_LinkJiraAlignProjectArgs = {
139819
140933
  export declare type MutationGoals_LinkWorkItemArgs = {
139820
140934
  input: TownsquareGoalsLinkWorkItemInput;
139821
140935
  };
140936
+ export declare type MutationGoals_ManageAccessArgs = {
140937
+ input: TownsquareGoalManageAccessInput;
140938
+ };
139822
140939
  export declare type MutationGoals_RemoveDropdownCustomFieldValueArgs = {
139823
140940
  input: TownsquareGoalsRemoveDropdownCustomFieldValueInput;
139824
140941
  };
@@ -140090,6 +141207,9 @@ export declare type MutationJira_RemoveTimelineIssueLinkArgs = {
140090
141207
  export declare type MutationJira_RenameBoardViewStatusColumnArgs = {
140091
141208
  input: JiraRenameBoardViewStatusColumnInput;
140092
141209
  };
141210
+ export declare type MutationJira_RenameProjectLevelSidebarMenuItemArgs = {
141211
+ input: JiraRenameProjectLevelSidebarMenuItemInput;
141212
+ };
140093
141213
  export declare type MutationJira_ReorderBoardViewColumnArgs = {
140094
141214
  input: JiraReorderBoardViewColumnInput;
140095
141215
  };
@@ -140409,6 +141529,11 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
140409
141529
  spaceAri: Scalars['ID']['input'];
140410
141530
  title?: InputMaybe<Scalars['String']['input']>;
140411
141531
  };
141532
+ export declare type MutationKitsune_CreateInsightArgs = {
141533
+ content: Scalars['KitsuneADF']['input'];
141534
+ spaceAri: Scalars['ID']['input'];
141535
+ title: Scalars['String']['input'];
141536
+ };
140412
141537
  export declare type MutationKitsune_CreateOrganizationArgs = {
140413
141538
  domainName?: InputMaybe<Scalars['String']['input']>;
140414
141539
  name: Scalars['String']['input'];
@@ -140445,6 +141570,9 @@ export declare type MutationKitsune_MoveViewArgs = {
140445
141570
  export declare type MutationKitsune_RemoveFeedbackArgs = {
140446
141571
  feedbackAri: Scalars['ID']['input'];
140447
141572
  };
141573
+ export declare type MutationKitsune_RemoveInsightArgs = {
141574
+ id: Scalars['ID']['input'];
141575
+ };
140448
141576
  export declare type MutationKitsune_RemoveSectionArgs = {
140449
141577
  sectionAri: Scalars['ID']['input'];
140450
141578
  };
@@ -140464,6 +141592,11 @@ export declare type MutationKitsune_UpdateFeedbackArgs = {
140464
141592
  summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
140465
141593
  title?: InputMaybe<Scalars['String']['input']>;
140466
141594
  };
141595
+ export declare type MutationKitsune_UpdateInsightArgs = {
141596
+ content?: InputMaybe<Scalars['KitsuneADF']['input']>;
141597
+ id: Scalars['ID']['input'];
141598
+ title?: InputMaybe<Scalars['String']['input']>;
141599
+ };
140467
141600
  export declare type MutationKitsune_UpdateSectionArgs = {
140468
141601
  description?: InputMaybe<Scalars['String']['input']>;
140469
141602
  name?: InputMaybe<Scalars['String']['input']>;
@@ -140702,6 +141835,9 @@ export declare type MutationProjects_EditUserCustomFieldArgs = {
140702
141835
  export declare type MutationProjects_GrantAccessArgs = {
140703
141836
  input: TownsquareProjectGrantAccessInput;
140704
141837
  };
141838
+ export declare type MutationProjects_ManageAccessArgs = {
141839
+ input: TownsquareProjectManageAccessInput;
141840
+ };
140705
141841
  export declare type MutationProjects_RemoveDependencyArgs = {
140706
141842
  input: TownsquareProjectsRemoveDependencyInput;
140707
141843
  };
@@ -143807,6 +144943,7 @@ export declare type PolarisStatusCategory = {
143807
144943
  };
143808
144944
  export declare type PolarisTimelineConfig = {
143809
144945
  __typename?: 'PolarisTimelineConfig';
144946
+ columnWidth?: Maybe<Scalars['Int']['output']>;
143810
144947
  dueDateField?: Maybe<PolarisIdeaField>;
143811
144948
  endTimestamp?: Maybe<Scalars['String']['output']>;
143812
144949
  mode: PolarisTimelineMode;
@@ -143840,6 +144977,7 @@ export declare enum PolarisTreeDirection {
143840
144977
  }
143841
144978
  export declare type PolarisTreeHierarchyItem = {
143842
144979
  __typename?: 'PolarisTreeHierarchyItem';
144980
+ fields?: Maybe<Array<PolarisIdeaField>>;
143843
144981
  filter?: Maybe<Array<PolarisViewFilter>>;
143844
144982
  items?: Maybe<Array<Scalars['JSON']['output']>>;
143845
144983
  type?: Maybe<PolarisTreeHierarchyType>;
@@ -144090,7 +145228,11 @@ export declare enum PostOfficeMessageCreationType {
144090
145228
  Explicit = "explicit",
144091
145229
  Implicit = "implicit"
144092
145230
  }
144093
- export declare type PostOfficeMessageData = PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
145231
+ export declare type PostOfficeMessageData = PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
145232
+ export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
145233
+ __typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
145234
+ nudgeMessage?: Maybe<Scalars['String']['output']>;
145235
+ };
144094
145236
  export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
144095
145237
  __typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
144096
145238
  message: Scalars['String']['output'];
@@ -144610,6 +145752,9 @@ export declare type Query = {
144610
145752
  agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
144611
145753
  agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
144612
145754
  agentWorkspace_findBestMatchAgents?: Maybe<AgentWorkspaceFindBestMatchAgentsPayload>;
145755
+ agentWorkspace_hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
145756
+ agentWorkspace_hierarchyDefinitions?: Maybe<AgentWorkspaceHierarchyDefinitionConnection>;
145757
+ agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
144613
145758
  agentWorkspace_projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
144614
145759
  agentWorkspace_projectSkills?: Maybe<AgentWorkspaceProjectSkillConnection>;
144615
145760
  agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
@@ -144713,6 +145858,7 @@ export declare type Query = {
144713
145858
  assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
144714
145859
  assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
144715
145860
  assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
145861
+ assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
144716
145862
  assetsVertical_bundle: AssetsVerticalBundle;
144717
145863
  assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
144718
145864
  assets_objectById?: Maybe<AssetsObjectNode>;
@@ -144809,6 +145955,10 @@ export declare type Query = {
144809
145955
  channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
144810
145956
  classificationLevel?: Maybe<ContentDataClassificationLevel>;
144811
145957
  classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
145958
+ cloudify_analysisExecutions: Array<CloudifyAnalysisExecution>;
145959
+ cloudify_enactment?: Maybe<CloudifyEnactment>;
145960
+ cloudify_enactments: Array<CloudifyEnactment>;
145961
+ cloudify_greeting: CloudifyGreeting;
144812
145962
  cloudify_recommendations: Array<CloudifyRecommendation>;
144813
145963
  codeInJira?: Maybe<CodeInJira>;
144814
145964
  collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
@@ -144926,6 +146076,7 @@ export declare type Query = {
144926
146076
  confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
144927
146077
  confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
144928
146078
  confluence_shareConfiguration?: Maybe<ConfluenceShareConfiguration>;
146079
+ confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
144929
146080
  confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
144930
146081
  confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
144931
146082
  confluence_spacePermissionsByCombinationId?: Maybe<ConfluenceSpacePermissionConnection>;
@@ -145021,6 +146172,7 @@ export declare type Query = {
145021
146172
  csmAi_getWidget?: Maybe<CsmAiWidgetConfigResult>;
145022
146173
  csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
145023
146174
  csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
146175
+ csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
145024
146176
  currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
145025
146177
  customer360_customer?: Maybe<Customer360Customer>;
145026
146178
  customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
@@ -145296,6 +146448,7 @@ export declare type Query = {
145296
146448
  kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
145297
146449
  kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
145298
146450
  kitsune_fields?: Maybe<Array<Maybe<KitsuneField>>>;
146451
+ kitsune_insights?: Maybe<Array<Maybe<KitsuneInsight>>>;
145299
146452
  kitsune_node?: Maybe<KitsuneNode>;
145300
146453
  kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
145301
146454
  kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
@@ -145511,6 +146664,8 @@ export declare type Query = {
145511
146664
  socialSignals?: Maybe<SocialSignalsApi>;
145512
146665
  softwareBoards?: Maybe<BoardScopeConnection>;
145513
146666
  softwareCatalog_alertCountsByServiceIds?: Maybe<Array<Maybe<SoftwareCatalogCountByService>>>;
146667
+ softwareCatalog_changeCountsByServiceIds?: Maybe<Array<Maybe<SoftwareCatalogCountByService>>>;
146668
+ softwareCatalog_incidentCountsByServiceIds?: Maybe<Array<Maybe<SoftwareCatalogCountByService>>>;
145514
146669
  softwareCatalog_servicesWithActiveIncidents?: Maybe<SoftwareCatalogSearchResult>;
145515
146670
  softwareCatalog_servicesWithOpenAlerts?: Maybe<SoftwareCatalogSearchResult>;
145516
146671
  softwareCatalog_servicesWithUpcomingChanges?: Maybe<SoftwareCatalogSearchResult>;
@@ -145546,7 +146701,6 @@ export declare type Query = {
145546
146701
  spf_planScenariosByIds?: Maybe<Array<Maybe<SpfPlanScenario>>>;
145547
146702
  spf_plans?: Maybe<SpfPlanConnection>;
145548
146703
  spf_plansByIds?: Maybe<Array<Maybe<SpfPlan>>>;
145549
- spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
145550
146704
  sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
145551
146705
  sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
145552
146706
  stakeholderComms_customDomainStatus?: Maybe<StakeholderCommsCustomDomainStatusResponse>;
@@ -145924,7 +147078,7 @@ export declare type QueryAgentAi_ContextPanelArgs = {
145924
147078
  };
145925
147079
  export declare type QueryAgentAi_PanelArgs = {
145926
147080
  cloudId: Scalars['ID']['input'];
145927
- issueId?: InputMaybe<Scalars['String']['input']>;
147081
+ issueId: Scalars['String']['input'];
145928
147082
  };
145929
147083
  export declare type QueryAgentAi_SummarizeIssueArgs = {
145930
147084
  cloudId: Scalars['ID']['input'];
@@ -145949,6 +147103,7 @@ export declare type QueryAgentStudio_BatchEvalConversationHistoryByIdArgs = {
145949
147103
  conversationId: Scalars['ID']['input'];
145950
147104
  experienceId: Scalars['String']['input'];
145951
147105
  first?: InputMaybe<Scalars['Int']['input']>;
147106
+ productType?: InputMaybe<AgentStudioProductType>;
145952
147107
  };
145953
147108
  export declare type QueryAgentStudio_BatchEvalConversationListByContainerIdArgs = {
145954
147109
  after?: InputMaybe<Scalars['String']['input']>;
@@ -146223,6 +147378,16 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
146223
147378
  export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
146224
147379
  input: AgentWorkspaceFindBestMatchAgentsInput;
146225
147380
  };
147381
+ export declare type QueryAgentWorkspace_HierarchyDefinitionArgs = {
147382
+ input: AgentWorkspaceHierarchyDefinitionInput;
147383
+ };
147384
+ export declare type QueryAgentWorkspace_HierarchyDefinitionsArgs = {
147385
+ input: AgentWorkspaceHierarchyDefinitionsInput;
147386
+ };
147387
+ export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
147388
+ cloudId: Scalars['ID']['input'];
147389
+ projectId: Scalars['ID']['input'];
147390
+ };
146226
147391
  export declare type QueryAgentWorkspace_ProjectSkillArgs = {
146227
147392
  input: AgentWorkspaceProjectSkillInput;
146228
147393
  };
@@ -146230,7 +147395,8 @@ export declare type QueryAgentWorkspace_ProjectSkillsArgs = {
146230
147395
  input: AgentWorkspaceProjectSkillsInput;
146231
147396
  };
146232
147397
  export declare type QueryAgentWorkspace_RecommendedAssigneesArgs = {
146233
- cloudId: Scalars['ID']['input'];
147398
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
147399
+ issueId?: InputMaybe<Scalars['ID']['input']>;
146234
147400
  projectARI: Scalars['ID']['input'];
146235
147401
  };
146236
147402
  export declare type QueryAgentWorkspace_ScheduleArgs = {
@@ -146772,6 +147938,10 @@ export declare type QueryAssetsDm_TransformedDataArgs = {
146772
147938
  pagination?: InputMaybe<AssetsDmPaginationInput>;
146773
147939
  workspaceId: Scalars['ID']['input'];
146774
147940
  };
147941
+ export declare type QueryAssetsVertical_AttributeValuesArgs = {
147942
+ cloudId: Scalars['ID']['input'];
147943
+ input: AssetsVerticalAttributeValuesInput;
147944
+ };
146775
147945
  export declare type QueryAssetsVertical_BundleArgs = {
146776
147946
  cloudId: Scalars['ID']['input'];
146777
147947
  type: AssetsVerticalBundleType;
@@ -147099,6 +148269,19 @@ export declare type QueryClassificationLevelsArgs = {
147099
148269
  reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
147100
148270
  spaceKey?: InputMaybe<Scalars['String']['input']>;
147101
148271
  };
148272
+ export declare type QueryCloudify_AnalysisExecutionsArgs = {
148273
+ projectId: Scalars['ID']['input'];
148274
+ siteId: Scalars['ID']['input'];
148275
+ };
148276
+ export declare type QueryCloudify_EnactmentArgs = {
148277
+ enactmentId: Scalars['ID']['input'];
148278
+ };
148279
+ export declare type QueryCloudify_EnactmentsArgs = {
148280
+ recommendationId: Scalars['ID']['input'];
148281
+ };
148282
+ export declare type QueryCloudify_GreetingArgs = {
148283
+ name?: InputMaybe<Scalars['String']['input']>;
148284
+ };
147102
148285
  export declare type QueryCloudify_RecommendationsArgs = {
147103
148286
  projectId: Scalars['ID']['input'];
147104
148287
  siteId: Scalars['ID']['input'];
@@ -147663,6 +148846,10 @@ export declare type QueryConfluence_SearchUserArgs = {
147663
148846
  export declare type QueryConfluence_ShareConfigurationArgs = {
147664
148847
  cloudId: Scalars['ID']['input'];
147665
148848
  };
148849
+ export declare type QueryConfluence_SmartSpaceOverviewArgs = {
148850
+ cloudId: Scalars['ID']['input'];
148851
+ spaceKey: Scalars['String']['input'];
148852
+ };
147666
148853
  export declare type QueryConfluence_SpaceMediaSessionArgs = {
147667
148854
  cloudId: Scalars['ID']['input'];
147668
148855
  contentType: Scalars['String']['input'];
@@ -147715,6 +148902,7 @@ export declare type QueryConfluence_SpacesByCombinationIdArgs = {
147715
148902
  cloudId: Scalars['ID']['input'];
147716
148903
  first?: InputMaybe<Scalars['Int']['input']>;
147717
148904
  permissionCombinationId: Scalars['String']['input'];
148905
+ spaceId?: InputMaybe<Scalars['Long']['input']>;
147718
148906
  spaceSelection?: InputMaybe<ConfluencePermissionTransitionSpaceTargetSelectionInput>;
147719
148907
  spaceTypeFilters?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionSpaceTypeFilter>>>;
147720
148908
  };
@@ -148166,6 +149354,10 @@ export declare type QueryCsmCustomersByIdsArgs = {
148166
149354
  export declare type QueryCsmOrganizationsByIdsArgs = {
148167
149355
  csmOrganizationAris: Array<Scalars['ID']['input']>;
148168
149356
  };
149357
+ export declare type QueryCsm_LiveChatAgentArgs = {
149358
+ accountId: Scalars['ID']['input'];
149359
+ cloudId: Scalars['ID']['input'];
149360
+ };
148169
149361
  export declare type QueryCustomer360_CustomerArgs = {
148170
149362
  domain: Scalars['String']['input'];
148171
149363
  };
@@ -149210,6 +150402,9 @@ export declare type QueryKitsune_FeedbacksArgs = {
149210
150402
  export declare type QueryKitsune_FieldsArgs = {
149211
150403
  ids: Array<Scalars['ID']['input']>;
149212
150404
  };
150405
+ export declare type QueryKitsune_InsightsArgs = {
150406
+ ids: Array<Scalars['ID']['input']>;
150407
+ };
149213
150408
  export declare type QueryKitsune_NodeArgs = {
149214
150409
  id: Scalars['ID']['input'];
149215
150410
  };
@@ -149954,7 +151149,12 @@ export declare type QuerySoftwareBoardsArgs = {
149954
151149
  projectAri: Scalars['ID']['input'];
149955
151150
  };
149956
151151
  export declare type QuerySoftwareCatalog_AlertCountsByServiceIdsArgs = {
149957
- cloudId: Scalars['ID']['input'];
151152
+ serviceIds: Array<Scalars['ID']['input']>;
151153
+ };
151154
+ export declare type QuerySoftwareCatalog_ChangeCountsByServiceIdsArgs = {
151155
+ serviceIds: Array<Scalars['ID']['input']>;
151156
+ };
151157
+ export declare type QuerySoftwareCatalog_IncidentCountsByServiceIdsArgs = {
149958
151158
  serviceIds: Array<Scalars['ID']['input']>;
149959
151159
  };
149960
151160
  export declare type QuerySoftwareCatalog_ServicesWithActiveIncidentsArgs = {
@@ -150121,10 +151321,6 @@ export declare type QuerySpf_PlansArgs = {
150121
151321
  export declare type QuerySpf_PlansByIdsArgs = {
150122
151322
  ids: Array<Scalars['ID']['input']>;
150123
151323
  };
150124
- export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
150125
- cloudId: Scalars['ID']['input'];
150126
- url: Scalars['String']['input'];
150127
- };
150128
151324
  export declare type QuerySqlSchemaSizeLogArgs = {
150129
151325
  appId: Scalars['ID']['input'];
150130
151326
  installationId: Scalars['ID']['input'];
@@ -153450,6 +154646,7 @@ export declare type SearchItemConnection = {
153450
154646
  searchSessionId?: Maybe<Scalars['String']['output']>;
153451
154647
  totalCount?: Maybe<Scalars['Int']['output']>;
153452
154648
  totalCounts: Array<SearchProductCount>;
154649
+ traceId?: Maybe<Scalars['String']['output']>;
153453
154650
  };
153454
154651
  export declare type SearchJiraFilter = {
153455
154652
  boardFilter?: InputMaybe<SearchBoardFilter>;
@@ -153872,6 +155069,8 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
153872
155069
  allContributors?: Maybe<Array<ThirdPartyUser>>;
153873
155070
  attachments?: Maybe<Array<SearchResultGraphAttachment>>;
153874
155071
  bodyText?: Maybe<Scalars['String']['output']>;
155072
+ connectorId?: Maybe<Scalars['String']['output']>;
155073
+ connectorProduct?: Maybe<Scalars['String']['output']>;
153875
155074
  connectorType?: Maybe<Scalars['String']['output']>;
153876
155075
  containerName?: Maybe<Scalars['String']['output']>;
153877
155076
  description: Scalars['String']['output'];
@@ -154274,6 +155473,7 @@ export declare type SearchThirdPartyFilter = {
154274
155473
  export declare type SearchThirdPartyMetadata = {
154275
155474
  __typename?: 'SearchThirdPartyMetadata';
154276
155475
  connectionId?: Maybe<Scalars['String']['output']>;
155476
+ connectorCreatedAt?: Maybe<Scalars['String']['output']>;
154277
155477
  connectorSyncType?: Maybe<Scalars['String']['output']>;
154278
155478
  datasourceId?: Maybe<Scalars['String']['output']>;
154279
155479
  entityTypes?: Maybe<Array<Scalars['String']['output']>>;
@@ -174520,6 +175720,7 @@ export declare type SpcsFullSiteScanListResponse = {
174520
175720
  nextCursor?: Maybe<Scalars['String']['output']>;
174521
175721
  };
174522
175722
  export declare enum SpcsFullSiteScanStatus {
175723
+ Cancelled = "CANCELLED",
174523
175724
  Done = "DONE",
174524
175725
  Failed = "FAILED",
174525
175726
  InProgress = "IN_PROGRESS",
@@ -174552,6 +175753,7 @@ export declare type SpcsScanDetails = {
174552
175753
  scanBootstraps: Array<SpcsScanBootstrap>;
174553
175754
  };
174554
175755
  export declare type SpcsStartFullSiteScanInput = {
175756
+ dryRun?: InputMaybe<Scalars['Boolean']['input']>;
174555
175757
  workspaceAris: Array<Scalars['String']['input']>;
174556
175758
  };
174557
175759
  export declare type SpcsStartFullSiteScanPayload = {
@@ -175078,6 +176280,7 @@ export declare type SpfPlan = Node & {
175078
176280
  name: Scalars['String']['output'];
175079
176281
  owners?: Maybe<SpfPlanOwnerConnection>;
175080
176282
  portfolio?: Maybe<MercuryFocusArea>;
176283
+ portfolioAllowedType?: Maybe<SpfPlanPortfolioAllowedType>;
175081
176284
  scenarios?: Maybe<SpfPlanScenarioConnection>;
175082
176285
  status: SpfPlanStatus;
175083
176286
  timeframe: SpfPlanTimeframe;
@@ -175276,10 +176479,6 @@ export declare type SpfRemovePlanOwnerPayload = Payload & {
175276
176479
  planId: Scalars['ID']['output'];
175277
176480
  success: Scalars['Boolean']['output'];
175278
176481
  };
175279
- export declare type SpfResolveImpactedWorkUrlPayload = {
175280
- __typename?: 'SpfResolveImpactedWorkUrlPayload';
175281
- impactedWorkId?: Maybe<Scalars['String']['output']>;
175282
- };
175283
176482
  export declare type SpfResolveProposedDateInput = {
175284
176483
  askId: Scalars['String']['input'];
175285
176484
  };
@@ -177996,6 +179195,7 @@ export declare type TeamMutation = {
177996
179195
  updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
177997
179196
  updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
177998
179197
  updateTeam?: Maybe<TeamUpdatePayload>;
179198
+ updateTeamTypePermissions?: Maybe<TeamUpdateTeamTypePermissionsPayload>;
177999
179199
  updateType?: Maybe<TeamType>;
178000
179200
  };
178001
179201
  export declare type TeamMutationAddChildArgs = {
@@ -178087,6 +179287,9 @@ export declare type TeamMutationUpdateRoleAssignmentsArgs = {
178087
179287
  export declare type TeamMutationUpdateTeamArgs = {
178088
179288
  input: TeamUpdateTeamInput;
178089
179289
  };
179290
+ export declare type TeamMutationUpdateTeamTypePermissionsArgs = {
179291
+ input: TeamUpdateTeamTypePermissionsInput;
179292
+ };
178090
179293
  export declare type TeamMutationUpdateTypeArgs = {
178091
179294
  id: Scalars['ID']['input'];
178092
179295
  typeData: TeamTypeUpdatePayload;
@@ -178183,6 +179386,7 @@ export declare type TeamQueryTeamSearchV2Args = {
178183
179386
  showEmptyTeams?: InputMaybe<Scalars['Boolean']['input']>;
178184
179387
  siteId: Scalars['String']['input'];
178185
179388
  sortBy?: InputMaybe<Array<InputMaybe<TeamSort>>>;
179389
+ state?: InputMaybe<Array<InputMaybe<TeamSearchStateV2>>>;
178186
179390
  };
178187
179391
  export declare type TeamQueryTeamV2Args = {
178188
179392
  id: Scalars['ID']['input'];
@@ -178265,6 +179469,10 @@ export declare type TeamSearchResultV2 = {
178265
179469
  memberCount?: Maybe<Scalars['Int']['output']>;
178266
179470
  team?: Maybe<TeamV2>;
178267
179471
  };
179472
+ export declare enum TeamSearchStateV2 {
179473
+ Active = "ACTIVE",
179474
+ Disbanded = "DISBANDED"
179475
+ }
178268
179476
  export declare type TeamSetNotificationConfigurationInput = {
178269
179477
  ari: Scalars['ID']['input'];
178270
179478
  enabled: Scalars['Boolean']['input'];
@@ -178309,8 +179517,13 @@ export declare type TeamType = {
178309
179517
  name: Scalars['String']['output'];
178310
179518
  state?: Maybe<TeamTypeState>;
178311
179519
  teamScope: Scalars['ID']['output'];
179520
+ typeLevelPermissions?: Maybe<TeamTypePermissionDelegationConnection>;
178312
179521
  verified?: Maybe<Scalars['Boolean']['output']>;
178313
179522
  };
179523
+ export declare type TeamTypeTypeLevelPermissionsArgs = {
179524
+ after?: InputMaybe<Scalars['String']['input']>;
179525
+ first?: InputMaybe<Scalars['Int']['input']>;
179526
+ };
178314
179527
  export declare type TeamTypeConnection = {
178315
179528
  __typename?: 'TeamTypeConnection';
178316
179529
  edges?: Maybe<Array<TeamTypeEdge>>;
@@ -178326,6 +179539,10 @@ export declare enum TeamTypeDefaultFor {
178326
179539
  UserManaged = "USER_MANAGED",
178327
179540
  Verified = "VERIFIED"
178328
179541
  }
179542
+ export declare enum TeamTypeDefaultPermissionEntity {
179543
+ OrgAdmin = "ORG_ADMIN",
179544
+ TeamsAppUser = "TEAMS_APP_USER"
179545
+ }
178329
179546
  export declare type TeamTypeEdge = {
178330
179547
  __typename?: 'TeamTypeEdge';
178331
179548
  cursor: Scalars['String']['output'];
@@ -178334,6 +179551,58 @@ export declare type TeamTypeEdge = {
178334
179551
  export declare type TeamTypeFilter = {
178335
179552
  teamTypeIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
178336
179553
  };
179554
+ export declare type TeamTypeLevelDefaultPermissionEntity = {
179555
+ __typename?: 'TeamTypeLevelDefaultPermissionEntity';
179556
+ type: TeamTypeDefaultPermissionEntity;
179557
+ };
179558
+ export declare enum TeamTypeLevelPermission {
179559
+ CreateTeams = "CREATE_TEAMS",
179560
+ DeleteTeams = "DELETE_TEAMS",
179561
+ ManageTeams = "MANAGE_TEAMS"
179562
+ }
179563
+ export declare type TeamTypeLevelPermissionDelegation = {
179564
+ __typename?: 'TeamTypeLevelPermissionDelegation';
179565
+ entity?: Maybe<TeamTypePermissionAssignedEntity>;
179566
+ permissions: Array<TeamTypeLevelPermissionDetails>;
179567
+ };
179568
+ export declare type TeamTypeLevelPermissionDetails = {
179569
+ __typename?: 'TeamTypeLevelPermissionDetails';
179570
+ canBeModified: Scalars['Boolean']['output'];
179571
+ granted: Scalars['Boolean']['output'];
179572
+ permission: TeamTypeLevelPermission;
179573
+ };
179574
+ export declare type TeamTypeLevelPermissionInput = {
179575
+ granted: Scalars['Boolean']['input'];
179576
+ permission: TeamTypeLevelPermission;
179577
+ };
179578
+ export declare type TeamTypePermissionAssignedEntity = TeamTypeLevelDefaultPermissionEntity | TeamTypePermissionAssignedGroup | TeamTypePermissionAssignedTeam | TeamTypePermissionAssignedUser;
179579
+ export declare type TeamTypePermissionAssignedEntityInput = {
179580
+ entityId: Scalars['ID']['input'];
179581
+ permissions: Array<TeamTypeLevelPermissionInput>;
179582
+ };
179583
+ export declare type TeamTypePermissionAssignedGroup = {
179584
+ __typename?: 'TeamTypePermissionAssignedGroup';
179585
+ group?: Maybe<Group>;
179586
+ };
179587
+ export declare type TeamTypePermissionAssignedTeam = {
179588
+ __typename?: 'TeamTypePermissionAssignedTeam';
179589
+ team?: Maybe<TeamV2>;
179590
+ };
179591
+ export declare type TeamTypePermissionAssignedUser = {
179592
+ __typename?: 'TeamTypePermissionAssignedUser';
179593
+ user?: Maybe<User>;
179594
+ };
179595
+ export declare type TeamTypePermissionDelegationConnection = {
179596
+ __typename?: 'TeamTypePermissionDelegationConnection';
179597
+ edges?: Maybe<Array<TeamTypePermissionDelegationEdge>>;
179598
+ nodes?: Maybe<Array<TeamTypeLevelPermissionDelegation>>;
179599
+ pageInfo: PageInfo;
179600
+ };
179601
+ export declare type TeamTypePermissionDelegationEdge = {
179602
+ __typename?: 'TeamTypePermissionDelegationEdge';
179603
+ cursor?: Maybe<Scalars['String']['output']>;
179604
+ node?: Maybe<TeamTypeLevelPermissionDelegation>;
179605
+ };
178337
179606
  export declare enum TeamTypeState {
178338
179607
  Active = "ACTIVE",
178339
179608
  DeleteInProgress = "DELETE_IN_PROGRESS"
@@ -178363,6 +179632,18 @@ export declare type TeamUpdateTeamInput = {
178363
179632
  scopeId: Scalars['ID']['input'];
178364
179633
  teamId: Scalars['ID']['input'];
178365
179634
  };
179635
+ export declare type TeamUpdateTeamTypePermissionsInput = {
179636
+ deleted: Array<Scalars['ID']['input']>;
179637
+ scopeId: Scalars['ID']['input'];
179638
+ typeId: Scalars['ID']['input'];
179639
+ updated: Array<TeamTypePermissionAssignedEntityInput>;
179640
+ };
179641
+ export declare type TeamUpdateTeamTypePermissionsPayload = Payload & {
179642
+ __typename?: 'TeamUpdateTeamTypePermissionsPayload';
179643
+ errors?: Maybe<Array<MutationError>>;
179644
+ success: Scalars['Boolean']['output'];
179645
+ teamType?: Maybe<TeamType>;
179646
+ };
178366
179647
  export declare type TeamV2 = Node & {
178367
179648
  __typename?: 'TeamV2';
178368
179649
  creator?: Maybe<User>;
@@ -178547,6 +179828,7 @@ export declare type TestingSubscription = {
178547
179828
  __typename?: 'TestingSubscription';
178548
179829
  onTestingActivityItemUpdate?: Maybe<TestingActivityItem>;
178549
179830
  onTestingActivityItemUpdateEnrichJira?: Maybe<TestingActivityItem>;
179831
+ onTestingActivityItemUpdateTest?: Maybe<TestingActivityItem>;
178550
179832
  };
178551
179833
  export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
178552
179834
  issueId: Scalars['ID']['input'];
@@ -178554,6 +179836,9 @@ export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
178554
179836
  export declare type TestingSubscriptionOnTestingActivityItemUpdateEnrichJiraArgs = {
178555
179837
  issueId: Scalars['ID']['input'];
178556
179838
  };
179839
+ export declare type TestingSubscriptionOnTestingActivityItemUpdateTestArgs = {
179840
+ issueId: Scalars['ID']['input'];
179841
+ };
178557
179842
  export declare type Theme = {
178558
179843
  __typename?: 'Theme';
178559
179844
  description?: Maybe<Scalars['String']['output']>;
@@ -178618,13 +179903,33 @@ export declare type ThirdPartyUser = LocalizationContext & {
178618
179903
  updatedAt: Scalars['DateTime']['output'];
178619
179904
  zoneinfo?: Maybe<Scalars['String']['output']>;
178620
179905
  };
179906
+ export declare type ThirdPartyUserAddress = {
179907
+ __typename?: 'ThirdPartyUserAddress';
179908
+ city?: Maybe<Scalars['String']['output']>;
179909
+ country?: Maybe<Scalars['String']['output']>;
179910
+ countryCode?: Maybe<Scalars['String']['output']>;
179911
+ geocodeAccuracy?: Maybe<Scalars['String']['output']>;
179912
+ latitude?: Maybe<Scalars['Float']['output']>;
179913
+ longitude?: Maybe<Scalars['Float']['output']>;
179914
+ postalCode?: Maybe<Scalars['String']['output']>;
179915
+ state?: Maybe<Scalars['String']['output']>;
179916
+ stateCode?: Maybe<Scalars['String']['output']>;
179917
+ street?: Maybe<Scalars['String']['output']>;
179918
+ };
178621
179919
  export declare type ThirdPartyUserExtendedProfile = {
178622
179920
  __typename?: 'ThirdPartyUserExtendedProfile';
179921
+ birthDate?: Maybe<Scalars['String']['output']>;
178623
179922
  department?: Maybe<Scalars['String']['output']>;
179923
+ gender?: Maybe<Scalars['String']['output']>;
178624
179924
  jobTitle?: Maybe<Scalars['String']['output']>;
178625
179925
  location?: Maybe<Scalars['String']['output']>;
179926
+ mailingAddress?: Maybe<ThirdPartyUserAddress>;
178626
179927
  organization?: Maybe<Scalars['String']['output']>;
179928
+ otherAddress?: Maybe<ThirdPartyUserAddress>;
178627
179929
  phoneNumbers?: Maybe<Array<Maybe<ThirdPartyUserPhoneNumber>>>;
179930
+ pronouns?: Maybe<Scalars['String']['output']>;
179931
+ salutation?: Maybe<Scalars['String']['output']>;
179932
+ suffix?: Maybe<Scalars['String']['output']>;
178628
179933
  };
178629
179934
  export declare type ThirdPartyUserPhoneNumber = {
178630
179935
  __typename?: 'ThirdPartyUserPhoneNumber';
@@ -179722,6 +181027,16 @@ export declare enum TownsquareGoalIconKey {
179722
181027
  KeyResult = "KEY_RESULT",
179723
181028
  Objective = "OBJECTIVE"
179724
181029
  }
181030
+ export declare type TownsquareGoalManageAccessInput = {
181031
+ accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
181032
+ goalId: Scalars['ID']['input'];
181033
+ };
181034
+ export declare type TownsquareGoalManageAccessPayload = {
181035
+ __typename?: 'TownsquareGoalManageAccessPayload';
181036
+ errors?: Maybe<Array<MutationError>>;
181037
+ goal?: Maybe<TownsquareGoal>;
181038
+ success: Scalars['Boolean']['output'];
181039
+ };
179725
181040
  export declare type TownsquareGoalMetricUpdate = {
179726
181041
  __typename?: 'TownsquareGoalMetricUpdate';
179727
181042
  metric?: Maybe<TownsquareMetric>;
@@ -180790,6 +182105,7 @@ export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCus
180790
182105
  export declare type TownsquareProject = HasMercuryProjectFields & Node & {
180791
182106
  __typename?: 'TownsquareProject';
180792
182107
  access?: Maybe<TownsquareProjectAccessConnection>;
182108
+ accessLevel?: Maybe<TownsquareProjectAccessLevel>;
180793
182109
  archived: Scalars['Boolean']['output'];
180794
182110
  canEditMembers?: Maybe<Scalars['Boolean']['output']>;
180795
182111
  capabilities?: Maybe<TownsquareProjectCapabilities>;
@@ -180969,6 +182285,11 @@ export declare type TownsquareProjectAccessEdge = {
180969
182285
  principalAri?: Maybe<Scalars['String']['output']>;
180970
182286
  role?: Maybe<TownsquareProjectAccessRole>;
180971
182287
  };
182288
+ export declare enum TownsquareProjectAccessLevel {
182289
+ OpenEdit = "OPEN_EDIT",
182290
+ OpenView = "OPEN_VIEW",
182291
+ Restricted = "RESTRICTED"
182292
+ }
180972
182293
  export declare enum TownsquareProjectAccessRole {
180973
182294
  Editor = "EDITOR",
180974
182295
  Viewer = "VIEWER"
@@ -181099,6 +182420,16 @@ export declare type TownsquareProjectGrantAccessPayload = {
181099
182420
  project?: Maybe<TownsquareProject>;
181100
182421
  success: Scalars['Boolean']['output'];
181101
182422
  };
182423
+ export declare type TownsquareProjectManageAccessInput = {
182424
+ accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
182425
+ projectId: Scalars['ID']['input'];
182426
+ };
182427
+ export declare type TownsquareProjectManageAccessPayload = {
182428
+ __typename?: 'TownsquareProjectManageAccessPayload';
182429
+ errors?: Maybe<Array<MutationError>>;
182430
+ project?: Maybe<TownsquareProject>;
182431
+ success: Scalars['Boolean']['output'];
182432
+ };
181102
182433
  export declare enum TownsquareProjectPhase {
181103
182434
  Done = "done",
181104
182435
  InProgress = "in_progress",
@@ -182782,6 +184113,10 @@ export declare type TrelloBaseBoardPlannerEventCardsArgs = {
182782
184113
  after?: InputMaybe<Scalars['String']['input']>;
182783
184114
  first?: InputMaybe<Scalars['Int']['input']>;
182784
184115
  };
184116
+ export declare type TrelloBaseBoardId = {
184117
+ id: Scalars['ID']['output'];
184118
+ objectId: Scalars['ID']['output'];
184119
+ };
182785
184120
  export declare type TrelloBaseBoardPrefs = {
182786
184121
  autoArchive?: Maybe<Scalars['Boolean']['output']>;
182787
184122
  background?: Maybe<TrelloBoardBackground>;
@@ -182856,6 +184191,11 @@ export declare type TrelloBaseCardPlannerEventsArgs = {
182856
184191
  export declare type TrelloBaseCardDeleted = {
182857
184192
  id: Scalars['ID']['output'];
182858
184193
  };
184194
+ export declare type TrelloBaseCardMoved = {
184195
+ id: Scalars['ID']['output'];
184196
+ list?: Maybe<TrelloListContainer>;
184197
+ objectId: Scalars['ID']['output'];
184198
+ };
182859
184199
  export declare type TrelloBaseCardUpdated = {
182860
184200
  actions?: Maybe<TrelloCardActionConnectionUpdated>;
182861
184201
  attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
@@ -183025,6 +184365,11 @@ export declare type TrelloBoardEdge = {
183025
184365
  cursor: Scalars['String']['output'];
183026
184366
  node: TrelloBoard;
183027
184367
  };
184368
+ export declare type TrelloBoardId = TrelloBaseBoardId & {
184369
+ __typename?: 'TrelloBoardId';
184370
+ id: Scalars['ID']['output'];
184371
+ objectId: Scalars['ID']['output'];
184372
+ };
183028
184373
  export declare type TrelloBoardLabelsLimits = {
183029
184374
  __typename?: 'TrelloBoardLabelsLimits';
183030
184375
  perBoard?: Maybe<TrelloLimitProps>;
@@ -183181,6 +184526,7 @@ export declare type TrelloBoardUpdated = TrelloBaseBoardUpdated & {
183181
184526
  enterprise?: Maybe<TrelloEnterprise>;
183182
184527
  id?: Maybe<Scalars['ID']['output']>;
183183
184528
  labels?: Maybe<TrelloLabelConnectionUpdated>;
184529
+ limits?: Maybe<TrelloBoardLimits>;
183184
184530
  lists?: Maybe<TrelloListUpdatedConnection>;
183185
184531
  members?: Maybe<TrelloBoardMembershipsConnection>;
183186
184532
  name?: Maybe<Scalars['String']['output']>;
@@ -183269,7 +184615,7 @@ export declare type TrelloCard = Node & TrelloBaseCard & {
183269
184615
  location?: Maybe<TrelloCardLocation>;
183270
184616
  members?: Maybe<TrelloMemberConnection>;
183271
184617
  membersVoted?: Maybe<TrelloMemberConnection>;
183272
- mirrorSource?: Maybe<TrelloCard>;
184618
+ mirrorSource?: Maybe<TrelloBaseCard>;
183273
184619
  mirrorSourceId?: Maybe<Scalars['ID']['output']>;
183274
184620
  mirrorSourceNodeId?: Maybe<Scalars['String']['output']>;
183275
184621
  name?: Maybe<Scalars['String']['output']>;
@@ -183583,6 +184929,7 @@ export declare type TrelloCardEdgeUpdated = {
183583
184929
  };
183584
184930
  export declare enum TrelloCardExternalSource {
183585
184931
  BrowserExtension = "BROWSER_EXTENSION",
184932
+ Confluence = "CONFLUENCE",
183586
184933
  Email = "EMAIL",
183587
184934
  Loom = "LOOM",
183588
184935
  Msteams = "MSTEAMS",
@@ -183620,6 +184967,12 @@ export declare type TrelloCardMemberEdgeUpdated = {
183620
184967
  __typename?: 'TrelloCardMemberEdgeUpdated';
183621
184968
  node?: Maybe<TrelloMember>;
183622
184969
  };
184970
+ export declare type TrelloCardMoved = TrelloBaseCardMoved & {
184971
+ __typename?: 'TrelloCardMoved';
184972
+ id: Scalars['ID']['output'];
184973
+ list?: Maybe<TrelloListContainer>;
184974
+ objectId: Scalars['ID']['output'];
184975
+ };
183623
184976
  export declare type TrelloCardPlannerEvent = {
183624
184977
  __typename?: 'TrelloCardPlannerEvent';
183625
184978
  event?: Maybe<TrelloPlannerCalendarEvent>;
@@ -183667,7 +185020,7 @@ export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
183667
185020
  location?: Maybe<TrelloCardLocation>;
183668
185021
  members?: Maybe<TrelloMemberUpdatedConnection>;
183669
185022
  membersVoted?: Maybe<TrelloMemberUpdatedConnection>;
183670
- mirrorSource?: Maybe<TrelloCard>;
185023
+ mirrorSource?: Maybe<TrelloBaseCard>;
183671
185024
  mirrorSourceId?: Maybe<Scalars['ID']['output']>;
183672
185025
  mirrorSourceObjectId?: Maybe<Scalars['ID']['output']>;
183673
185026
  name?: Maybe<Scalars['String']['output']>;
@@ -183739,7 +185092,7 @@ export declare enum TrelloCheckItemState {
183739
185092
  export declare type TrelloChecklist = Node & {
183740
185093
  __typename?: 'TrelloChecklist';
183741
185094
  board?: Maybe<TrelloBoard>;
183742
- card?: Maybe<TrelloCard>;
185095
+ card?: Maybe<TrelloBaseCard>;
183743
185096
  checkItems?: Maybe<TrelloCheckItemConnection>;
183744
185097
  id: Scalars['ID']['output'];
183745
185098
  name?: Maybe<Scalars['String']['output']>;
@@ -184113,7 +185466,7 @@ export declare type TrelloCustomFieldId = {
184113
185466
  export declare type TrelloCustomFieldItem = {
184114
185467
  __typename?: 'TrelloCustomFieldItem';
184115
185468
  customField?: Maybe<TrelloCustomField>;
184116
- model?: Maybe<TrelloCard>;
185469
+ model?: Maybe<TrelloBaseCard>;
184117
185470
  objectId: Scalars['ID']['output'];
184118
185471
  value?: Maybe<TrelloCustomFieldItemValueInfo>;
184119
185472
  };
@@ -184439,6 +185792,12 @@ export declare type TrelloInboxCardDeleted = TrelloBaseCardDeleted & {
184439
185792
  __typename?: 'TrelloInboxCardDeleted';
184440
185793
  id: Scalars['ID']['output'];
184441
185794
  };
185795
+ export declare type TrelloInboxCardMoved = TrelloBaseCardMoved & {
185796
+ __typename?: 'TrelloInboxCardMoved';
185797
+ id: Scalars['ID']['output'];
185798
+ list?: Maybe<TrelloListContainer>;
185799
+ objectId: Scalars['ID']['output'];
185800
+ };
184442
185801
  export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
184443
185802
  __typename?: 'TrelloInboxCardUpdated';
184444
185803
  actions?: Maybe<TrelloCardActionConnectionUpdated>;
@@ -184471,6 +185830,11 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
184471
185830
  startedAt?: Maybe<Scalars['DateTime']['output']>;
184472
185831
  url?: Maybe<Scalars['URL']['output']>;
184473
185832
  };
185833
+ export declare type TrelloInboxId = TrelloBaseBoardId & {
185834
+ __typename?: 'TrelloInboxId';
185835
+ id: Scalars['ID']['output'];
185836
+ objectId: Scalars['ID']['output'];
185837
+ };
184474
185838
  export declare type TrelloInboxNotificationsUpdated = {
184475
185839
  __typename?: 'TrelloInboxNotificationsUpdated';
184476
185840
  onQuickCaptureNotificationsCleared?: Maybe<Array<TrelloQuickCaptureNotificationCleared>>;
@@ -184622,6 +185986,12 @@ export declare type TrelloListConnection = {
184622
185986
  nodes?: Maybe<Array<TrelloList>>;
184623
185987
  pageInfo: PageInfo;
184624
185988
  };
185989
+ export declare type TrelloListContainer = {
185990
+ __typename?: 'TrelloListContainer';
185991
+ board?: Maybe<TrelloBaseBoardId>;
185992
+ id: Scalars['ID']['output'];
185993
+ objectId: Scalars['ID']['output'];
185994
+ };
184625
185995
  export declare type TrelloListDataSource = {
184626
185996
  __typename?: 'TrelloListDataSource';
184627
185997
  filter: Scalars['Boolean']['output'];
@@ -184657,6 +186027,7 @@ export declare type TrelloListUpdated = {
184657
186027
  name?: Maybe<Scalars['String']['output']>;
184658
186028
  objectId?: Maybe<Scalars['ID']['output']>;
184659
186029
  onCardDeleted?: Maybe<Array<TrelloBaseCardDeleted>>;
186030
+ onCardMoved?: Maybe<TrelloBaseCardMoved>;
184660
186031
  position?: Maybe<Scalars['Float']['output']>;
184661
186032
  softLimit?: Maybe<Scalars['Int']['output']>;
184662
186033
  };
@@ -186436,8 +187807,10 @@ export declare type TrelloSendBoardEmailKeyMessagePayload = Payload & {
186436
187807
  };
186437
187808
  export declare type TrelloSmartSchedulePreference = {
186438
187809
  __typename?: 'TrelloSmartSchedulePreference';
187810
+ includeInbox: Scalars['Boolean']['output'];
186439
187811
  lastActivity?: Maybe<Scalars['DateTime']['output']>;
186440
187812
  lastRun?: Maybe<Scalars['DateTime']['output']>;
187813
+ preferredBoards: Array<Scalars['ID']['output']>;
186441
187814
  preferredRunTime?: Maybe<Scalars['Int']['output']>;
186442
187815
  status: TrelloSmartScheduleStatus;
186443
187816
  };
@@ -186510,24 +187883,29 @@ export declare type TrelloSubscriptionApiOnBoardCardSetUpdatedArgs = {
186510
187883
  export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
186511
187884
  cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
186512
187885
  id: Scalars['ID']['input'];
187886
+ noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
186513
187887
  };
186514
187888
  export declare type TrelloSubscriptionApiOnCardBatchUpdatedArgs = {
186515
187889
  id: Scalars['ID']['input'];
186516
187890
  };
186517
187891
  export declare type TrelloSubscriptionApiOnInboxUpdatedArgs = {
186518
187892
  memberId: Scalars['ID']['input'];
187893
+ noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
186519
187894
  };
186520
187895
  export declare type TrelloSubscriptionApiOnMemberPlannerEventCardsUpdatedArgs = {
186521
187896
  memberId: Scalars['ID']['input'];
187897
+ noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
186522
187898
  };
186523
187899
  export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
186524
187900
  id: Scalars['ID']['input'];
187901
+ noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
186525
187902
  };
186526
187903
  export declare type TrelloSubscriptionApiOnWorkOverviewDashboardJobUpdatedArgs = {
186527
187904
  id: Scalars['ID']['input'];
186528
187905
  };
186529
187906
  export declare type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
186530
187907
  id: Scalars['ID']['input'];
187908
+ noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
186531
187909
  };
186532
187910
  export declare enum TrelloSupportedPlannerProviders {
186533
187911
  Google = "GOOGLE",
@@ -189265,6 +190643,7 @@ export declare type UpdatePolarisSnippetInput = {
189265
190643
  url?: InputMaybe<Scalars['String']['input']>;
189266
190644
  };
189267
190645
  export declare type UpdatePolarisTimelineConfig = {
190646
+ columnWidth?: InputMaybe<Scalars['Int']['input']>;
189268
190647
  dueDateField?: InputMaybe<Scalars['ID']['input']>;
189269
190648
  endTimestamp?: InputMaybe<Scalars['String']['input']>;
189270
190649
  mode?: InputMaybe<PolarisTimelineMode>;
@@ -189280,6 +190659,7 @@ export declare type UpdatePolarisTreeConfig = {
189280
190659
  treeDirection?: InputMaybe<PolarisTreeDirection>;
189281
190660
  };
189282
190661
  export declare type UpdatePolarisTreeHierarchyItem = {
190662
+ fields?: InputMaybe<Array<Scalars['ID']['input']>>;
189283
190663
  filter?: InputMaybe<Array<PolarisViewFilterInput>>;
189284
190664
  items?: InputMaybe<Array<Scalars['JSON']['input']>>;
189285
190665
  type?: InputMaybe<PolarisTreeHierarchyType>;