@forge/cli-shared 8.15.2-next.0-experimental-75a65ea → 8.15.2-next.0-experimental-1dcd593

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.
@@ -2511,6 +2511,7 @@ export declare type AdminEntitlement = {
2511
2511
  licenseLocks?: Maybe<Array<Scalars['String']['output']>>;
2512
2512
  plan?: Maybe<AdminWorkspacePlan>;
2513
2513
  seats?: Maybe<AdminSeats>;
2514
+ softCapacityLimit?: Maybe<Scalars['Int']['output']>;
2514
2515
  sourceSystem: Scalars['String']['output'];
2515
2516
  type?: Maybe<Scalars['String']['output']>;
2516
2517
  };
@@ -3934,6 +3935,7 @@ export declare type AgentStudioDataset = {
3934
3935
  __typename?: 'AgentStudioDataset';
3935
3936
  count?: Maybe<Scalars['Int']['output']>;
3936
3937
  createdAt: Scalars['String']['output'];
3938
+ datasetType?: Maybe<AgentStudioDatasetType>;
3937
3939
  id: Scalars['ID']['output'];
3938
3940
  name: Scalars['String']['output'];
3939
3941
  projectId: Scalars['String']['output'];
@@ -3948,6 +3950,7 @@ export declare type AgentStudioDatasetItem = {
3948
3950
  __typename?: 'AgentStudioDatasetItem';
3949
3951
  createdAt: Scalars['String']['output'];
3950
3952
  datasetId: Scalars['String']['output'];
3953
+ expectedAnswer?: Maybe<Scalars['String']['output']>;
3951
3954
  id: Scalars['ID']['output'];
3952
3955
  inputQuestion: Scalars['String']['output'];
3953
3956
  updatedAt?: Maybe<Scalars['String']['output']>;
@@ -3968,6 +3971,10 @@ export declare enum AgentStudioDatasetResolution {
3968
3971
  Resolved = "RESOLVED",
3969
3972
  Unresolved = "UNRESOLVED"
3970
3973
  }
3974
+ export declare enum AgentStudioDatasetType {
3975
+ QuestionAnswer = "QUESTION_ANSWER",
3976
+ QuestionOnly = "QUESTION_ONLY"
3977
+ }
3971
3978
  export declare type AgentStudioDatasetsResult = {
3972
3979
  __typename?: 'AgentStudioDatasetsResult';
3973
3980
  edges: Array<AgentStudioDatasetEdge>;
@@ -4019,6 +4026,7 @@ export declare type AgentStudioEvaluationResult = {
4019
4026
  datasetItemId: Scalars['String']['output'];
4020
4027
  errorMessage?: Maybe<Scalars['String']['output']>;
4021
4028
  evaluationDetailsJson?: Maybe<Scalars['String']['output']>;
4029
+ expectedAnswer?: Maybe<Scalars['String']['output']>;
4022
4030
  id: Scalars['ID']['output'];
4023
4031
  inputQuestion?: Maybe<Scalars['String']['output']>;
4024
4032
  jobId: Scalars['ID']['output'];
@@ -4742,6 +4750,87 @@ export declare type AgentWorkspaceCapacitySummary = {
4742
4750
  totalAssignedWorkItems: Scalars['Int']['output'];
4743
4751
  totalCapacity: Scalars['Int']['output'];
4744
4752
  };
4753
+ export declare type AgentWorkspaceCatalog = {
4754
+ __typename?: 'AgentWorkspaceCatalog';
4755
+ attributes?: Maybe<Scalars['JSON']['output']>;
4756
+ catalogTypeId: Scalars['ID']['output'];
4757
+ childCatalogIds?: Maybe<Array<Scalars['ID']['output']>>;
4758
+ description?: Maybe<Scalars['String']['output']>;
4759
+ id: Scalars['ID']['output'];
4760
+ lastEdited?: Maybe<Scalars['JSON']['output']>;
4761
+ name: Scalars['String']['output'];
4762
+ parentCatalogIds?: Maybe<Array<Scalars['ID']['output']>>;
4763
+ skillIds: Array<Scalars['ID']['output']>;
4764
+ userCatalogIds?: Maybe<Array<Scalars['ID']['output']>>;
4765
+ };
4766
+ export declare type AgentWorkspaceCatalogConnection = {
4767
+ __typename?: 'AgentWorkspaceCatalogConnection';
4768
+ nodes: Array<AgentWorkspaceCatalog>;
4769
+ pageInfo: AgentWorkspaceCatalogPageInfo;
4770
+ };
4771
+ export declare type AgentWorkspaceCatalogFilter = {
4772
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
4773
+ catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
4774
+ ids?: InputMaybe<Array<Scalars['ID']['input']>>;
4775
+ nameContains?: InputMaybe<Scalars['String']['input']>;
4776
+ parentCatalogId?: InputMaybe<Scalars['ID']['input']>;
4777
+ };
4778
+ export declare type AgentWorkspaceCatalogPageInfo = {
4779
+ __typename?: 'AgentWorkspaceCatalogPageInfo';
4780
+ currentPage: Scalars['Int']['output'];
4781
+ hasNextPage: Scalars['Boolean']['output'];
4782
+ hasPreviousPage: Scalars['Boolean']['output'];
4783
+ pageSize: Scalars['Int']['output'];
4784
+ totalCount: Scalars['Int']['output'];
4785
+ totalPages: Scalars['Int']['output'];
4786
+ };
4787
+ export declare type AgentWorkspaceCatalogType = {
4788
+ __typename?: 'AgentWorkspaceCatalogType';
4789
+ attributes?: Maybe<Scalars['JSON']['output']>;
4790
+ catalogIds?: Maybe<Array<Scalars['ID']['output']>>;
4791
+ id: Scalars['ID']['output'];
4792
+ name: Scalars['String']['output'];
4793
+ nestedChildCatalogTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
4794
+ parentTypeId?: Maybe<Scalars['ID']['output']>;
4795
+ };
4796
+ export declare type AgentWorkspaceCatalogTypeConnection = {
4797
+ __typename?: 'AgentWorkspaceCatalogTypeConnection';
4798
+ nodes: Array<AgentWorkspaceCatalogType>;
4799
+ pageInfo: AgentWorkspaceCatalogTypePageInfo;
4800
+ };
4801
+ export declare type AgentWorkspaceCatalogTypeFilter = {
4802
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
4803
+ ids?: InputMaybe<Array<Scalars['ID']['input']>>;
4804
+ nameContains?: InputMaybe<Scalars['String']['input']>;
4805
+ parentTypeId?: InputMaybe<Scalars['ID']['input']>;
4806
+ };
4807
+ export declare type AgentWorkspaceCatalogTypePageInfo = {
4808
+ __typename?: 'AgentWorkspaceCatalogTypePageInfo';
4809
+ currentPage: Scalars['Int']['output'];
4810
+ hasNextPage: Scalars['Boolean']['output'];
4811
+ hasPreviousPage: Scalars['Boolean']['output'];
4812
+ pageSize: Scalars['Int']['output'];
4813
+ totalCount: Scalars['Int']['output'];
4814
+ totalPages: Scalars['Int']['output'];
4815
+ };
4816
+ export declare type AgentWorkspaceCreateCatalogInput = {
4817
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
4818
+ catalogTypeId: Scalars['ID']['input'];
4819
+ cloudId: Scalars['ID']['input'];
4820
+ description?: InputMaybe<Scalars['String']['input']>;
4821
+ id: Scalars['ID']['input'];
4822
+ name: Scalars['String']['input'];
4823
+ parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4824
+ skillIds: Array<Scalars['ID']['input']>;
4825
+ };
4826
+ export declare type AgentWorkspaceCreateCatalogTypeInput = {
4827
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
4828
+ cloudId: Scalars['ID']['input'];
4829
+ id: Scalars['ID']['input'];
4830
+ name: Scalars['String']['input'];
4831
+ nestedChildCatalogTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4832
+ parentTypeId?: InputMaybe<Scalars['ID']['input']>;
4833
+ };
4745
4834
  export declare type AgentWorkspaceCreateScheduleInput = {
4746
4835
  agentIds: Array<Scalars['ID']['input']>;
4747
4836
  cloudId: Scalars['ID']['input'];
@@ -4760,6 +4849,16 @@ export declare type AgentWorkspaceCreateSchedulePayload = {
4760
4849
  schedule?: Maybe<AgentWorkspaceSchedule>;
4761
4850
  success: Scalars['Boolean']['output'];
4762
4851
  };
4852
+ export declare type AgentWorkspaceCreateSkillInput = {
4853
+ assessmentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4854
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
4855
+ cloudId: Scalars['ID']['input'];
4856
+ description?: InputMaybe<Scalars['String']['input']>;
4857
+ id: Scalars['ID']['input'];
4858
+ name: Scalars['String']['input'];
4859
+ parentCatalogIds: Array<Scalars['ID']['input']>;
4860
+ proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
4861
+ };
4763
4862
  export declare enum AgentWorkspaceDayOfWeek {
4764
4863
  Friday = "FRIDAY",
4765
4864
  Monday = "MONDAY",
@@ -4916,6 +5015,56 @@ export declare type AgentWorkspaceShiftsSummary = {
4916
5015
  scheduledAgents: Scalars['Int']['output'];
4917
5016
  totalShifts: Scalars['Int']['output'];
4918
5017
  };
5018
+ export declare type AgentWorkspaceSkill = {
5019
+ __typename?: 'AgentWorkspaceSkill';
5020
+ assessmentIds?: Maybe<Array<Scalars['ID']['output']>>;
5021
+ attributes?: Maybe<Scalars['JSON']['output']>;
5022
+ description?: Maybe<Scalars['String']['output']>;
5023
+ id: Scalars['ID']['output'];
5024
+ lastEdited?: Maybe<Scalars['JSON']['output']>;
5025
+ name: Scalars['String']['output'];
5026
+ parentCatalogIds: Array<Scalars['ID']['output']>;
5027
+ proficiencyDefinitions?: Maybe<Array<Scalars['String']['output']>>;
5028
+ userSkillIds?: Maybe<Array<Scalars['ID']['output']>>;
5029
+ };
5030
+ export declare type AgentWorkspaceSkillConnection = {
5031
+ __typename?: 'AgentWorkspaceSkillConnection';
5032
+ nodes: Array<AgentWorkspaceSkill>;
5033
+ pageInfo: AgentWorkspaceSkillPageInfo;
5034
+ };
5035
+ export declare type AgentWorkspaceSkillFilter = {
5036
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
5037
+ ids?: InputMaybe<Array<Scalars['ID']['input']>>;
5038
+ nameContains?: InputMaybe<Scalars['String']['input']>;
5039
+ parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5040
+ };
5041
+ export declare type AgentWorkspaceSkillPageInfo = {
5042
+ __typename?: 'AgentWorkspaceSkillPageInfo';
5043
+ currentPage: Scalars['Int']['output'];
5044
+ hasNextPage: Scalars['Boolean']['output'];
5045
+ hasPreviousPage: Scalars['Boolean']['output'];
5046
+ pageSize: Scalars['Int']['output'];
5047
+ totalCount: Scalars['Int']['output'];
5048
+ totalPages: Scalars['Int']['output'];
5049
+ };
5050
+ export declare type AgentWorkspaceUpdateCatalogInput = {
5051
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
5052
+ catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
5053
+ cloudId: Scalars['ID']['input'];
5054
+ description?: InputMaybe<Scalars['String']['input']>;
5055
+ id: Scalars['ID']['input'];
5056
+ name?: InputMaybe<Scalars['String']['input']>;
5057
+ parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5058
+ skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5059
+ };
5060
+ export declare type AgentWorkspaceUpdateCatalogTypeInput = {
5061
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
5062
+ cloudId: Scalars['ID']['input'];
5063
+ id: Scalars['ID']['input'];
5064
+ name?: InputMaybe<Scalars['String']['input']>;
5065
+ nestedChildCatalogTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5066
+ parentTypeId?: InputMaybe<Scalars['ID']['input']>;
5067
+ };
4919
5068
  export declare type AgentWorkspaceUpdateScheduleInput = {
4920
5069
  agentIds: Array<Scalars['ID']['input']>;
4921
5070
  cloudId: Scalars['ID']['input'];
@@ -4937,6 +5086,16 @@ export declare type AgentWorkspaceUpdateSchedulePayload = {
4937
5086
  schedule?: Maybe<AgentWorkspaceSchedule>;
4938
5087
  success: Scalars['Boolean']['output'];
4939
5088
  };
5089
+ export declare type AgentWorkspaceUpdateSkillInput = {
5090
+ assessmentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5091
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
5092
+ cloudId: Scalars['ID']['input'];
5093
+ description?: InputMaybe<Scalars['String']['input']>;
5094
+ id: Scalars['ID']['input'];
5095
+ name?: InputMaybe<Scalars['String']['input']>;
5096
+ parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5097
+ proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5098
+ };
4940
5099
  export declare enum AiCoreApiQuestionType {
4941
5100
  DraftDocument = "DRAFT_DOCUMENT",
4942
5101
  KnowledgeBase = "KNOWLEDGE_BASE"
@@ -9764,6 +9923,7 @@ export declare type BoardScope = Node & {
9764
9923
  sprints?: Maybe<Array<Maybe<Sprint>>>;
9765
9924
  startSprintPrototype?: Maybe<Sprint>;
9766
9925
  subqueryConfig?: Maybe<JswSubqueryConfig>;
9926
+ townsquareProjects?: Maybe<Array<Maybe<JiraTownsquareProjectEntry>>>;
9767
9927
  trackingStatistic?: Maybe<JswTrackingStatistic>;
9768
9928
  userSwimlaneStrategy?: Maybe<SwimlaneStrategy>;
9769
9929
  workingDaysConfig?: Maybe<JswWorkingDaysConfig>;
@@ -12497,6 +12657,8 @@ export declare type ChannelPlatformContact = {
12497
12657
  assigneeAaid?: Maybe<Scalars['String']['output']>;
12498
12658
  channel?: Maybe<ChannelPlatformChannelType>;
12499
12659
  contactId?: Maybe<Scalars['ID']['output']>;
12660
+ disconnectReason?: Maybe<Scalars['String']['output']>;
12661
+ disconnectTimestamp?: Maybe<Scalars['String']['output']>;
12500
12662
  phoneContact?: Maybe<ChannelPlatformPhoneContact>;
12501
12663
  state?: Maybe<ChannelPlatformContactState>;
12502
12664
  };
@@ -25645,9 +25807,12 @@ export declare type ConfluencePermissionTransitionPrincipalPageInfo = {
25645
25807
  hasNextPage: Scalars['Boolean']['output'];
25646
25808
  };
25647
25809
  export declare enum ConfluencePermissionTransitionPrincipalType {
25810
+ AccessClass = "ACCESS_CLASS",
25648
25811
  Anonymous = "ANONYMOUS",
25812
+ App = "APP",
25649
25813
  Group = "GROUP",
25650
25814
  Guest = "GUEST",
25815
+ Team = "TEAM",
25651
25816
  User = "USER"
25652
25817
  }
25653
25818
  export declare type ConfluencePermissionTransitionPrincipalsConnection = {
@@ -25655,6 +25820,11 @@ export declare type ConfluencePermissionTransitionPrincipalsConnection = {
25655
25820
  edges?: Maybe<Array<Maybe<ConfluencePermissionTransitionPrincipalEdge>>>;
25656
25821
  pageInfo: ConfluencePermissionTransitionPrincipalPageInfo;
25657
25822
  };
25823
+ export declare type ConfluencePermissionTransitionRecommendation = {
25824
+ __typename?: 'ConfluencePermissionTransitionRecommendation';
25825
+ action: ConfluenceRoleRecommendation;
25826
+ justification: ConfluenceRecommendationJustification;
25827
+ };
25658
25828
  export declare type ConfluencePermissionTransitionSpace = {
25659
25829
  __typename?: 'ConfluencePermissionTransitionSpace';
25660
25830
  icon: Scalars['String']['output'];
@@ -25662,7 +25832,7 @@ export declare type ConfluencePermissionTransitionSpace = {
25662
25832
  isPersonalSpace: Scalars['Boolean']['output'];
25663
25833
  key: Scalars['String']['output'];
25664
25834
  name: Scalars['String']['output'];
25665
- owner: ConfluencePermissionTransitionSpaceOwner;
25835
+ owner?: Maybe<ConfluencePermissionTransitionSpaceOwner>;
25666
25836
  };
25667
25837
  export declare type ConfluencePermissionTransitionSpaceConnection = {
25668
25838
  __typename?: 'ConfluencePermissionTransitionSpaceConnection';
@@ -25676,10 +25846,18 @@ export declare type ConfluencePermissionTransitionSpaceEdge = {
25676
25846
  };
25677
25847
  export declare type ConfluencePermissionTransitionSpaceOwner = {
25678
25848
  __typename?: 'ConfluencePermissionTransitionSpaceOwner';
25679
- email: Scalars['String']['output'];
25680
- name: Scalars['String']['output'];
25681
- profilePicture: Icon;
25849
+ displayName?: Maybe<Scalars['String']['output']>;
25850
+ email?: Maybe<Scalars['String']['output']>;
25851
+ name?: Maybe<Scalars['String']['output']>;
25852
+ ownerId?: Maybe<Scalars['String']['output']>;
25853
+ ownerType?: Maybe<ConfluencePermissionTransitionSpaceOwnerType>;
25854
+ profilePicture?: Maybe<Icon>;
25855
+ usageType?: Maybe<ConfluencePermissionTransitionSpaceUsageType>;
25682
25856
  };
25857
+ export declare enum ConfluencePermissionTransitionSpaceOwnerType {
25858
+ Group = "GROUP",
25859
+ User = "USER"
25860
+ }
25683
25861
  export declare type ConfluencePermissionTransitionSpaceTargetSelectionInput = {
25684
25862
  selectedSpaces?: InputMaybe<Array<InputMaybe<ConfluenceSpaceTargetInput>>>;
25685
25863
  spaceType: ConfluencePermissionTransitionSpaceType;
@@ -25697,6 +25875,11 @@ export declare enum ConfluencePermissionTransitionSpaceTypeFilter {
25697
25875
  KnowledgeBase = "KNOWLEDGE_BASE",
25698
25876
  Personal = "PERSONAL"
25699
25877
  }
25878
+ export declare enum ConfluencePermissionTransitionSpaceUsageType {
25879
+ AdminOversight = "ADMIN_OVERSIGHT",
25880
+ TeamCollaboration = "TEAM_COLLABORATION",
25881
+ UserbaseGroup = "USERBASE_GROUP"
25882
+ }
25700
25883
  export declare enum ConfluencePermissionTypeAssignabilityCode {
25701
25884
  AnonymousAssignable = "ANONYMOUS_ASSIGNABLE",
25702
25885
  Assignable = "ASSIGNABLE",
@@ -26144,6 +26327,14 @@ export declare enum ConfluenceRecipientType {
26144
26327
  Team = "TEAM",
26145
26328
  User = "USER"
26146
26329
  }
26330
+ export declare type ConfluenceRecommendationJustification = {
26331
+ __typename?: 'ConfluenceRecommendationJustification';
26332
+ description: Scalars['String']['output'];
26333
+ name: Scalars['String']['output'];
26334
+ };
26335
+ export declare enum ConfluenceRecommendedAction {
26336
+ ConvertToRole = "CONVERT_TO_ROLE"
26337
+ }
26147
26338
  export declare type ConfluenceRedactionMetadata = {
26148
26339
  __typename?: 'ConfluenceRedactionMetadata';
26149
26340
  creationDate?: Maybe<Scalars['String']['output']>;
@@ -26346,6 +26537,11 @@ export declare enum ConfluenceRoleAssignabilityCode {
26346
26537
  NoManageNonlicensedUsersPermNotAssignable = "NO_MANAGE_NONLICENSED_USERS_PERM_NOT_ASSIGNABLE",
26347
26538
  PrincipalInvalidRole = "PRINCIPAL_INVALID_ROLE"
26348
26539
  }
26540
+ export declare type ConfluenceRoleRecommendation = {
26541
+ __typename?: 'ConfluenceRoleRecommendation';
26542
+ action: ConfluenceRecommendedAction;
26543
+ roleIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
26544
+ };
26349
26545
  export declare type ConfluenceSaveOrUpdateSpaceOwnerInput = {
26350
26546
  ownerId: Scalars['ID']['input'];
26351
26547
  spaceId: Scalars['Long']['input'];
@@ -26614,6 +26810,7 @@ export declare type ConfluenceSpacePermissionCombination = {
26614
26810
  __typename?: 'ConfluenceSpacePermissionCombination';
26615
26811
  combinationId: Scalars['String']['output'];
26616
26812
  principalCount: Scalars['Long']['output'];
26813
+ recommendation?: Maybe<ConfluencePermissionTransitionRecommendation>;
26617
26814
  spaceCount: Scalars['Long']['output'];
26618
26815
  spaceRole?: Maybe<ConfluenceBasicSpaceRole>;
26619
26816
  };
@@ -30521,6 +30718,7 @@ export declare type CplsAddContributionsPayload = Payload & {
30521
30718
  contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
30522
30719
  errors?: Maybe<Array<MutationError>>;
30523
30720
  success: Scalars['Boolean']['output'];
30721
+ works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
30524
30722
  };
30525
30723
  export declare type CplsAddContributorScopeAssociationInput = {
30526
30724
  cloudId: Scalars['ID']['input'];
@@ -30800,6 +30998,7 @@ export declare type CplsFilters = {
30800
30998
  __typename?: 'CplsFilters';
30801
30999
  contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
30802
31000
  customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
31001
+ id: Scalars['ID']['output'];
30803
31002
  jiraWorkItemStatusNames?: Maybe<Array<Scalars['String']['output']>>;
30804
31003
  jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
30805
31004
  workTypes?: Maybe<Array<CplsWorkType>>;
@@ -30916,6 +31115,7 @@ export declare type CplsViewSettings = {
30916
31115
  __typename?: 'CplsViewSettings';
30917
31116
  alwaysShowNumbersInGraph?: Maybe<Scalars['Boolean']['output']>;
30918
31117
  contributionValueType?: Maybe<CplsContributionValueType>;
31118
+ id: Scalars['ID']['output'];
30919
31119
  timeScale?: Maybe<CplsTimeScaleType>;
30920
31120
  };
30921
31121
  export declare type CplsViewSettingsInput = {
@@ -38726,6 +38926,8 @@ export declare type ExternalExperimental = Node & {
38726
38926
  createdBy?: Maybe<ExternalUser>;
38727
38927
  description?: Maybe<Scalars['String']['output']>;
38728
38928
  displayName?: Maybe<Scalars['String']['output']>;
38929
+ experimentalEntityName?: Maybe<Scalars['String']['output']>;
38930
+ experimentalKey?: Maybe<Scalars['String']['output']>;
38729
38931
  externalId?: Maybe<Scalars['String']['output']>;
38730
38932
  id: Scalars['ID']['output'];
38731
38933
  lastUpdated?: Maybe<Scalars['String']['output']>;
@@ -45698,6 +45900,10 @@ export declare type GraphStore = {
45698
45900
  projectLinksToEntityInverseBatch?: Maybe<GraphStoreBatchProjectLinksToEntityConnection>;
45699
45901
  pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
45700
45902
  pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
45903
+ riskHasProject?: Maybe<GraphStoreSimplifiedRiskHasProjectConnection>;
45904
+ riskHasProjectBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
45905
+ riskHasProjectInverse?: Maybe<GraphStoreSimplifiedRiskHasProjectInverseConnection>;
45906
+ riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
45701
45907
  scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
45702
45908
  scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
45703
45909
  securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
@@ -50562,6 +50768,36 @@ export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
50562
50768
  queryContext?: InputMaybe<Scalars['String']['input']>;
50563
50769
  sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
50564
50770
  };
50771
+ export declare type GraphStoreRiskHasProjectArgs = {
50772
+ after?: InputMaybe<Scalars['String']['input']>;
50773
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
50774
+ first?: InputMaybe<Scalars['Int']['input']>;
50775
+ id: Scalars['ID']['input'];
50776
+ queryContext?: InputMaybe<Scalars['String']['input']>;
50777
+ sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
50778
+ };
50779
+ export declare type GraphStoreRiskHasProjectBatchArgs = {
50780
+ after?: InputMaybe<Scalars['String']['input']>;
50781
+ first?: InputMaybe<Scalars['Int']['input']>;
50782
+ ids: Array<Scalars['ID']['input']>;
50783
+ queryContext?: InputMaybe<Scalars['String']['input']>;
50784
+ sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
50785
+ };
50786
+ export declare type GraphStoreRiskHasProjectInverseArgs = {
50787
+ after?: InputMaybe<Scalars['String']['input']>;
50788
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
50789
+ first?: InputMaybe<Scalars['Int']['input']>;
50790
+ id: Scalars['ID']['input'];
50791
+ queryContext?: InputMaybe<Scalars['String']['input']>;
50792
+ sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
50793
+ };
50794
+ export declare type GraphStoreRiskHasProjectInverseBatchArgs = {
50795
+ after?: InputMaybe<Scalars['String']['input']>;
50796
+ first?: InputMaybe<Scalars['Int']['input']>;
50797
+ ids: Array<Scalars['ID']['input']>;
50798
+ queryContext?: InputMaybe<Scalars['String']['input']>;
50799
+ sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
50800
+ };
50565
50801
  export declare type GraphStoreScorecardHasAtlasGoalArgs = {
50566
50802
  after?: InputMaybe<Scalars['String']['input']>;
50567
50803
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -55131,6 +55367,47 @@ export declare type GraphStoreBatchProjectLinksToEntityStartNode = {
55131
55367
  id: Scalars['ID']['output'];
55132
55368
  };
55133
55369
  export declare type GraphStoreBatchProjectLinksToEntityStartUnion = TownsquareProject;
55370
+ export declare type GraphStoreBatchRiskHasProjectConnection = HasPageInfo & {
55371
+ __typename?: 'GraphStoreBatchRiskHasProjectConnection';
55372
+ edges: Array<Maybe<GraphStoreBatchRiskHasProjectEdge>>;
55373
+ nodes: Array<Maybe<GraphStoreBatchRiskHasProjectNode>>;
55374
+ pageInfo: PageInfo;
55375
+ };
55376
+ export declare type GraphStoreBatchRiskHasProjectEdge = {
55377
+ __typename?: 'GraphStoreBatchRiskHasProjectEdge';
55378
+ node: GraphStoreBatchRiskHasProjectInnerConnection;
55379
+ };
55380
+ export declare type GraphStoreBatchRiskHasProjectEndNode = {
55381
+ __typename?: 'GraphStoreBatchRiskHasProjectEndNode';
55382
+ data?: Maybe<GraphStoreBatchRiskHasProjectEndUnion>;
55383
+ id: Scalars['ID']['output'];
55384
+ };
55385
+ export declare type GraphStoreBatchRiskHasProjectEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
55386
+ export declare type GraphStoreBatchRiskHasProjectInnerConnection = {
55387
+ __typename?: 'GraphStoreBatchRiskHasProjectInnerConnection';
55388
+ edges: Array<Maybe<GraphStoreBatchRiskHasProjectInnerEdge>>;
55389
+ nodes: Array<Maybe<GraphStoreBatchRiskHasProjectNode>>;
55390
+ requestedId: Scalars['ID']['output'];
55391
+ };
55392
+ export declare type GraphStoreBatchRiskHasProjectInnerEdge = {
55393
+ __typename?: 'GraphStoreBatchRiskHasProjectInnerEdge';
55394
+ cursor?: Maybe<Scalars['String']['output']>;
55395
+ node: GraphStoreBatchRiskHasProjectNode;
55396
+ };
55397
+ export declare type GraphStoreBatchRiskHasProjectNode = Node & {
55398
+ __typename?: 'GraphStoreBatchRiskHasProjectNode';
55399
+ createdAt: Scalars['DateTime']['output'];
55400
+ from: GraphStoreBatchRiskHasProjectStartNode;
55401
+ id: Scalars['ID']['output'];
55402
+ lastUpdated: Scalars['DateTime']['output'];
55403
+ to: GraphStoreBatchRiskHasProjectEndNode;
55404
+ };
55405
+ export declare type GraphStoreBatchRiskHasProjectStartNode = {
55406
+ __typename?: 'GraphStoreBatchRiskHasProjectStartNode';
55407
+ data?: Maybe<GraphStoreBatchRiskHasProjectStartUnion>;
55408
+ id: Scalars['ID']['output'];
55409
+ };
55410
+ export declare type GraphStoreBatchRiskHasProjectStartUnion = MercuryRisk;
55134
55411
  export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
55135
55412
  __typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
55136
55413
  edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
@@ -61538,6 +61815,9 @@ export declare type GraphStoreProjectLinksToEntitySortInput = {
61538
61815
  export declare type GraphStorePullRequestLinksToServiceSortInput = {
61539
61816
  lastModified?: InputMaybe<GraphStoreSortInput>;
61540
61817
  };
61818
+ export declare type GraphStoreRiskHasProjectSortInput = {
61819
+ lastModified?: InputMaybe<GraphStoreSortInput>;
61820
+ };
61541
61821
  export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
61542
61822
  lastModified?: InputMaybe<GraphStoreSortInput>;
61543
61823
  };
@@ -67593,6 +67873,34 @@ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
67593
67873
  };
67594
67874
  export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
67595
67875
  export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
67876
+ export declare type GraphStoreSimplifiedRiskHasProjectConnection = HasPageInfo & {
67877
+ __typename?: 'GraphStoreSimplifiedRiskHasProjectConnection';
67878
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRiskHasProjectEdge>>>;
67879
+ pageInfo: PageInfo;
67880
+ };
67881
+ export declare type GraphStoreSimplifiedRiskHasProjectEdge = {
67882
+ __typename?: 'GraphStoreSimplifiedRiskHasProjectEdge';
67883
+ createdAt: Scalars['DateTime']['output'];
67884
+ cursor?: Maybe<Scalars['String']['output']>;
67885
+ id: Scalars['ID']['output'];
67886
+ lastUpdated: Scalars['DateTime']['output'];
67887
+ node?: Maybe<GraphStoreSimplifiedRiskHasProjectUnion>;
67888
+ };
67889
+ export declare type GraphStoreSimplifiedRiskHasProjectInverseConnection = HasPageInfo & {
67890
+ __typename?: 'GraphStoreSimplifiedRiskHasProjectInverseConnection';
67891
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRiskHasProjectInverseEdge>>>;
67892
+ pageInfo: PageInfo;
67893
+ };
67894
+ export declare type GraphStoreSimplifiedRiskHasProjectInverseEdge = {
67895
+ __typename?: 'GraphStoreSimplifiedRiskHasProjectInverseEdge';
67896
+ createdAt: Scalars['DateTime']['output'];
67897
+ cursor?: Maybe<Scalars['String']['output']>;
67898
+ id: Scalars['ID']['output'];
67899
+ lastUpdated: Scalars['DateTime']['output'];
67900
+ node?: Maybe<GraphStoreSimplifiedRiskHasProjectInverseUnion>;
67901
+ };
67902
+ export declare type GraphStoreSimplifiedRiskHasProjectInverseUnion = MercuryRisk;
67903
+ export declare type GraphStoreSimplifiedRiskHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
67596
67904
  export declare type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
67597
67905
  __typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
67598
67906
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
@@ -72907,7 +73215,6 @@ export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput =
72907
73215
  createdAt?: InputMaybe<GraphStoreDateFilterInput>;
72908
73216
  fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
72909
73217
  lastModified?: InputMaybe<GraphStoreDateFilterInput>;
72910
- relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
72911
73218
  relationship_rsvpStatus?: InputMaybe<GraphStoreUserAttendedCalendarEventRsvpStatusFilterInput>;
72912
73219
  toAti?: InputMaybe<GraphStoreAtiFilterInput>;
72913
73220
  to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
@@ -72933,7 +73240,6 @@ export declare type GraphStoreUserAttendedCalendarEventSortInput = {
72933
73240
  createdAt?: InputMaybe<GraphStoreSortInput>;
72934
73241
  fromAti?: InputMaybe<GraphStoreSortInput>;
72935
73242
  lastModified?: InputMaybe<GraphStoreSortInput>;
72936
- relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
72937
73243
  relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
72938
73244
  toAti?: InputMaybe<GraphStoreSortInput>;
72939
73245
  to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
@@ -73883,6 +74189,8 @@ export declare type GraphStoreV2 = {
73883
74189
  focusFocusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection>;
73884
74190
  focusFocusAreaHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection>;
73885
74191
  focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
74192
+ focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
74193
+ focusRiskHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection>;
73886
74194
  focusStrategicPlanContributesToFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection>;
73887
74195
  focusStrategicPlanContributesToFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseConnection>;
73888
74196
  focusStrategicPlanHasFocusStrategicPlanScenario?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioConnection>;
@@ -77587,6 +77895,20 @@ export declare type GraphStoreV2FocusFocusAreaHasWorkEntityInverseArgs = {
77587
77895
  id: Scalars['ID']['input'];
77588
77896
  sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasWorkEntitySortInput>;
77589
77897
  };
77898
+ export declare type GraphStoreV2FocusRiskHasWorkEntityArgs = {
77899
+ after?: InputMaybe<Scalars['String']['input']>;
77900
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
77901
+ first?: InputMaybe<Scalars['Int']['input']>;
77902
+ id: Scalars['ID']['input'];
77903
+ sort?: InputMaybe<GraphStoreV2FocusRiskHasWorkEntitySortInput>;
77904
+ };
77905
+ export declare type GraphStoreV2FocusRiskHasWorkEntityInverseArgs = {
77906
+ after?: InputMaybe<Scalars['String']['input']>;
77907
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
77908
+ first?: InputMaybe<Scalars['Int']['input']>;
77909
+ id: Scalars['ID']['input'];
77910
+ sort?: InputMaybe<GraphStoreV2FocusRiskHasWorkEntitySortInput>;
77911
+ };
77590
77912
  export declare type GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaArgs = {
77591
77913
  after?: InputMaybe<Scalars['String']['input']>;
77592
77914
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -80535,7 +80857,6 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventConditi
80535
80857
  createdAt?: InputMaybe<GraphStoreDateFilterInput>;
80536
80858
  fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
80537
80859
  lastModified?: InputMaybe<GraphStoreDateFilterInput>;
80538
- relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
80539
80860
  relationship_rsvpStatus?: InputMaybe<GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatusFilterInput>;
80540
80861
  toAti?: InputMaybe<GraphStoreAtiFilterInput>;
80541
80862
  to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
@@ -80561,7 +80882,6 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventSortInp
80561
80882
  createdAt?: InputMaybe<GraphStoreSortInput>;
80562
80883
  fromAti?: InputMaybe<GraphStoreSortInput>;
80563
80884
  lastModified?: InputMaybe<GraphStoreSortInput>;
80564
- relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
80565
80885
  relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
80566
80886
  toAti?: InputMaybe<GraphStoreSortInput>;
80567
80887
  to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
@@ -80797,6 +81117,9 @@ export declare type GraphStoreV2FocusFocusAreaHasThirdPartyDocumentSortInput = {
80797
81117
  export declare type GraphStoreV2FocusFocusAreaHasWorkEntitySortInput = {
80798
81118
  lastModified?: InputMaybe<GraphStoreSortInput>;
80799
81119
  };
81120
+ export declare type GraphStoreV2FocusRiskHasWorkEntitySortInput = {
81121
+ lastModified?: InputMaybe<GraphStoreSortInput>;
81122
+ };
80800
81123
  export declare type GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaSortInput = {
80801
81124
  lastModified?: InputMaybe<GraphStoreSortInput>;
80802
81125
  };
@@ -89378,6 +89701,34 @@ export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseEdge
89378
89701
  };
89379
89702
  export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseUnion = MercuryFocusArea;
89380
89703
  export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
89704
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection = HasPageInfo & {
89705
+ __typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection';
89706
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge>>>;
89707
+ pageInfo: PageInfo;
89708
+ };
89709
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge = {
89710
+ __typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge';
89711
+ createdAt: Scalars['DateTime']['output'];
89712
+ cursor?: Maybe<Scalars['String']['output']>;
89713
+ id: Scalars['ID']['output'];
89714
+ lastUpdated: Scalars['DateTime']['output'];
89715
+ node?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityUnion>;
89716
+ };
89717
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection = HasPageInfo & {
89718
+ __typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection';
89719
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge>>>;
89720
+ pageInfo: PageInfo;
89721
+ };
89722
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge = {
89723
+ __typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge';
89724
+ createdAt: Scalars['DateTime']['output'];
89725
+ cursor?: Maybe<Scalars['String']['output']>;
89726
+ id: Scalars['ID']['output'];
89727
+ lastUpdated: Scalars['DateTime']['output'];
89728
+ node?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseUnion>;
89729
+ };
89730
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseUnion = MercuryRisk;
89731
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
89381
89732
  export declare type GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection = HasPageInfo & {
89382
89733
  __typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection';
89383
89734
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaEdge>>>;
@@ -92727,6 +93078,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContext = {
92727
93078
  issueTypes?: Maybe<Array<Maybe<GrowthUnifiedProfileIssueType>>>;
92728
93079
  jiraFamiliarity?: Maybe<GrowthUnifiedProfileJiraFamiliarity>;
92729
93080
  jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
93081
+ matureExampleProjectIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
92730
93082
  persona?: Maybe<Scalars['String']['output']>;
92731
93083
  projectLandingSelection?: Maybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
92732
93084
  projectName?: Maybe<Scalars['String']['output']>;
@@ -92740,6 +93092,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
92740
93092
  issueTypes?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileIssueTypeInput>>>;
92741
93093
  jiraFamiliarity?: InputMaybe<GrowthUnifiedProfileJiraFamiliarity>;
92742
93094
  jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
93095
+ matureExampleProjectIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
92743
93096
  persona?: InputMaybe<Scalars['String']['input']>;
92744
93097
  projectLandingSelection?: InputMaybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
92745
93098
  projectName?: InputMaybe<Scalars['String']['input']>;
@@ -92868,6 +93221,12 @@ export declare type GrowthUnifiedProfilePaidFeatureUsageResult = {
92868
93221
  featureName: Scalars['String']['output'];
92869
93222
  featureSupportedEdition: Array<GrowthUnifiedProfileProductEdition>;
92870
93223
  featureType: GrowthUnifiedProfileFeatureType;
93224
+ usageSummary: Array<GrowthUnifiedProfilePaidFeatureUsageSummary>;
93225
+ };
93226
+ export declare type GrowthUnifiedProfilePaidFeatureUsageSummary = {
93227
+ __typename?: 'GrowthUnifiedProfilePaidFeatureUsageSummary';
93228
+ featureEngagementLevel: GrowthUnifiedProfileFeatureEngagementLevel;
93229
+ usageCount: Scalars['Int']['output'];
92871
93230
  };
92872
93231
  export declare enum GrowthUnifiedProfileProduct {
92873
93232
  Compass = "compass",
@@ -98610,6 +98969,26 @@ export declare type JiraBoardViewSettings = {
98610
98969
  swimlanesSupported?: InputMaybe<Scalars['Boolean']['input']>;
98611
98970
  textSearch?: InputMaybe<Scalars['String']['input']>;
98612
98971
  };
98972
+ export declare type JiraBoardViewSettingsCardOption = {
98973
+ __typename?: 'JiraBoardViewSettingsCardOption';
98974
+ enabled: Scalars['Boolean']['output'];
98975
+ id: Scalars['ID']['output'];
98976
+ };
98977
+ export declare type JiraBoardViewSettingsCardOptionEdge = {
98978
+ __typename?: 'JiraBoardViewSettingsCardOptionEdge';
98979
+ cursor?: Maybe<Scalars['String']['output']>;
98980
+ node?: Maybe<JiraBoardViewSettingsCardOption>;
98981
+ };
98982
+ export declare enum JiraBoardViewSettingsGroupBy {
98983
+ Assignee = "ASSIGNEE",
98984
+ Epic = "EPIC",
98985
+ None = "NONE",
98986
+ Projects = "PROJECTS",
98987
+ Queries = "QUERIES",
98988
+ Spaces = "SPACES",
98989
+ Stories = "STORIES",
98990
+ Unset = "UNSET"
98991
+ }
98613
98992
  export declare type JiraBoardViewStatus = {
98614
98993
  __typename?: 'JiraBoardViewStatus';
98615
98994
  associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
@@ -107397,6 +107776,30 @@ export declare enum JiraJqlViewContext {
107397
107776
  Jwm = "JWM",
107398
107777
  ShadowRequest = "SHADOW_REQUEST"
107399
107778
  }
107779
+ export declare type JiraJswBoardViewSettings = {
107780
+ __typename?: 'JiraJswBoardViewSettings';
107781
+ cardOptions?: Maybe<JiraJswBoardViewSettingsCardOptionConnection>;
107782
+ groupBy?: Maybe<JiraBoardViewSettingsGroupBy>;
107783
+ quickFilterToggle?: Maybe<Scalars['Boolean']['output']>;
107784
+ workSuggestionToggle?: Maybe<Scalars['Boolean']['output']>;
107785
+ };
107786
+ export declare type JiraJswBoardViewSettingsCardOptionsArgs = {
107787
+ after?: InputMaybe<Scalars['String']['input']>;
107788
+ first?: InputMaybe<Scalars['Int']['input']>;
107789
+ };
107790
+ export declare type JiraJswBoardViewSettingsCardOptionConnection = {
107791
+ __typename?: 'JiraJswBoardViewSettingsCardOptionConnection';
107792
+ edges?: Maybe<Array<Maybe<JiraBoardViewSettingsCardOptionEdge>>>;
107793
+ errors?: Maybe<Array<QueryError>>;
107794
+ pageInfo?: Maybe<PageInfo>;
107795
+ };
107796
+ export declare type JiraJswBoardViewSettingsCardOptionInput = {
107797
+ enabled: Scalars['Boolean']['input'];
107798
+ id: Scalars['ID']['input'];
107799
+ };
107800
+ export declare type JiraJswBoardViewSettingsQueryInput = {
107801
+ viewId: Scalars['ID']['input'];
107802
+ };
107400
107803
  export declare type JiraJwmField = {
107401
107804
  __typename?: 'JiraJwmField';
107402
107805
  encryptedData?: Maybe<Scalars['String']['output']>;
@@ -109212,7 +109615,6 @@ export declare enum JiraNavigationItemTypeKey {
109212
109615
  Requests = "REQUESTS",
109213
109616
  Security = "SECURITY",
109214
109617
  Shortcuts = "SHORTCUTS",
109215
- Staffing = "STAFFING",
109216
109618
  Summary = "SUMMARY",
109217
109619
  Teams = "TEAMS",
109218
109620
  Timeline = "TIMELINE"
@@ -115767,6 +116169,24 @@ export declare type JiraSetIssueSearchViewLayoutPayload = Payload & {
115767
116169
  errors?: Maybe<Array<MutationError>>;
115768
116170
  success: Scalars['Boolean']['output'];
115769
116171
  };
116172
+ export declare type JiraSetJswBoardViewSettingCardOptionsInput = {
116173
+ cardOptions: Array<JiraJswBoardViewSettingsCardOptionInput>;
116174
+ viewId: Scalars['ID']['input'];
116175
+ };
116176
+ export declare type JiraSetJswBoardViewSettingGroupByInput = {
116177
+ groupBy: JiraBoardViewSettingsGroupBy;
116178
+ viewId: Scalars['ID']['input'];
116179
+ };
116180
+ export declare type JiraSetJswBoardViewSettingsPayload = Payload & {
116181
+ __typename?: 'JiraSetJswBoardViewSettingsPayload';
116182
+ errors?: Maybe<Array<MutationError>>;
116183
+ jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
116184
+ success: Scalars['Boolean']['output'];
116185
+ };
116186
+ export declare type JiraSetJswBoardViewSettingsToggleInput = {
116187
+ enabled: Scalars['Boolean']['input'];
116188
+ viewId: Scalars['ID']['input'];
116189
+ };
115770
116190
  export declare type JiraSetLogoInput = {
115771
116191
  cloudId: Scalars['ID']['input'];
115772
116192
  logoImageInput: JiraLookAndFeelImageInput;
@@ -117363,6 +117783,16 @@ export declare type JiraTownsquareProject = {
117363
117783
  state?: Maybe<Scalars['String']['output']>;
117364
117784
  workspaceAri?: Maybe<Scalars['String']['output']>;
117365
117785
  };
117786
+ export declare type JiraTownsquareProjectEntry = {
117787
+ __typename?: 'JiraTownsquareProjectEntry';
117788
+ hasPermission?: Maybe<Scalars['Boolean']['output']>;
117789
+ iconName?: Maybe<Scalars['String']['output']>;
117790
+ id?: Maybe<Scalars['String']['output']>;
117791
+ key?: Maybe<Scalars['String']['output']>;
117792
+ name?: Maybe<Scalars['String']['output']>;
117793
+ privateProject?: Maybe<Scalars['Boolean']['output']>;
117794
+ state?: Maybe<Scalars['String']['output']>;
117795
+ };
117366
117796
  export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
117367
117797
  __typename?: 'JiraTownsquareProjectField';
117368
117798
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -121423,6 +121853,13 @@ export declare type KitsuneSection = Node & {
121423
121853
  id: Scalars['ID']['output'];
121424
121854
  name: Scalars['String']['output'];
121425
121855
  updatedAt: Scalars['DateTime']['output'];
121856
+ views: KitsuneViewConnection;
121857
+ };
121858
+ export declare type KitsuneSectionViewsArgs = {
121859
+ after?: InputMaybe<Scalars['String']['input']>;
121860
+ before?: InputMaybe<Scalars['String']['input']>;
121861
+ first?: InputMaybe<Scalars['Int']['input']>;
121862
+ last?: InputMaybe<Scalars['Int']['input']>;
121426
121863
  };
121427
121864
  export declare type KitsuneSourceCategory = {
121428
121865
  __typename?: 'KitsuneSourceCategory';
@@ -121456,6 +121893,7 @@ export declare type KitsuneSpace = Node & {
121456
121893
  id: Scalars['ID']['output'];
121457
121894
  name?: Maybe<Scalars['String']['output']>;
121458
121895
  sourceCategories: KitsuneSourceCategoryConnection;
121896
+ viewTree: KitsuneViewTreeConnection;
121459
121897
  };
121460
121898
  export declare type KitsuneSpaceFeedbacksArgs = {
121461
121899
  pagination?: InputMaybe<KitsunePaginationInput>;
@@ -121466,6 +121904,12 @@ export declare type KitsuneSpaceFieldsArgs = {
121466
121904
  export declare type KitsuneSpaceSourceCategoriesArgs = {
121467
121905
  pagination?: InputMaybe<KitsunePaginationInput>;
121468
121906
  };
121907
+ export declare type KitsuneSpaceViewTreeArgs = {
121908
+ after?: InputMaybe<Scalars['String']['input']>;
121909
+ before?: InputMaybe<Scalars['String']['input']>;
121910
+ first?: InputMaybe<Scalars['Int']['input']>;
121911
+ last?: InputMaybe<Scalars['Int']['input']>;
121912
+ };
121469
121913
  export declare type KitsuneSpaceConnection = KitsuneConnection & {
121470
121914
  __typename?: 'KitsuneSpaceConnection';
121471
121915
  edges: Array<KitsuneSpaceEdge>;
@@ -121486,7 +121930,8 @@ export declare type KitsuneView = Node & {
121486
121930
  config?: Maybe<KitsuneViewConfig>;
121487
121931
  description?: Maybe<Scalars['String']['output']>;
121488
121932
  id: Scalars['ID']['output'];
121489
- name?: Maybe<Scalars['String']['output']>;
121933
+ name: Scalars['String']['output'];
121934
+ type: KitsuneViewType;
121490
121935
  };
121491
121936
  export declare type KitsuneViewConfig = {
121492
121937
  __typename?: 'KitsuneViewConfig';
@@ -121504,6 +121949,27 @@ export declare enum KitsuneViewConfigStatus {
121504
121949
  Published = "PUBLISHED",
121505
121950
  Saved = "SAVED"
121506
121951
  }
121952
+ export declare type KitsuneViewConnection = KitsuneConnection & {
121953
+ __typename?: 'KitsuneViewConnection';
121954
+ edges: Array<KitsuneViewEdge>;
121955
+ pageInfo: PageInfo;
121956
+ };
121957
+ export declare type KitsuneViewEdge = KitsuneEdge & {
121958
+ __typename?: 'KitsuneViewEdge';
121959
+ cursor: Scalars['String']['output'];
121960
+ node?: Maybe<KitsuneView>;
121961
+ };
121962
+ export declare type KitsuneViewTree = KitsuneSection | KitsuneView;
121963
+ export declare type KitsuneViewTreeConnection = KitsuneConnection & {
121964
+ __typename?: 'KitsuneViewTreeConnection';
121965
+ edges: Array<KitsuneViewTreeEdge>;
121966
+ pageInfo: PageInfo;
121967
+ };
121968
+ export declare type KitsuneViewTreeEdge = KitsuneEdge & {
121969
+ __typename?: 'KitsuneViewTreeEdge';
121970
+ cursor: Scalars['String']['output'];
121971
+ node?: Maybe<KitsuneViewTree>;
121972
+ };
121507
121973
  export declare enum KitsuneViewType {
121508
121974
  Dashboard = "DASHBOARD",
121509
121975
  List = "LIST",
@@ -128546,6 +129012,7 @@ export declare type MercuryFundsMutationApi = {
128546
129012
  createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
128547
129013
  deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
128548
129014
  deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
129015
+ updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
128549
129016
  updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
128550
129017
  updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
128551
129018
  };
@@ -128564,6 +129031,9 @@ export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
128564
129031
  export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
128565
129032
  input: MercuryDeleteInvestmentCategoryInput;
128566
129033
  };
129034
+ export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
129035
+ input: MercuryUpdateActiveCurrencyInput;
129036
+ };
128567
129037
  export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
128568
129038
  input: MercuryUpdateCostSubtypeNameInput;
128569
129039
  };
@@ -128572,6 +129042,7 @@ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
128572
129042
  };
128573
129043
  export declare type MercuryFundsQueryApi = {
128574
129044
  __typename?: 'MercuryFundsQueryApi';
129045
+ activeCurrency: MercuryCurrency;
128575
129046
  activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
128576
129047
  costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
128577
129048
  costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
@@ -128581,6 +129052,10 @@ export declare type MercuryFundsQueryApi = {
128581
129052
  fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
128582
129053
  focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
128583
129054
  investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
129055
+ investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
129056
+ };
129057
+ export declare type MercuryFundsQueryApiActiveCurrencyArgs = {
129058
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
128584
129059
  };
128585
129060
  export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
128586
129061
  cloudId?: InputMaybe<Scalars['ID']['input']>;
@@ -128619,6 +129094,13 @@ export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
128619
129094
  export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
128620
129095
  ids: Array<Scalars['ID']['input']>;
128621
129096
  };
129097
+ export declare type MercuryFundsQueryApiInvestmentCategoriesSearchArgs = {
129098
+ after?: InputMaybe<Scalars['String']['input']>;
129099
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
129100
+ first?: InputMaybe<Scalars['Int']['input']>;
129101
+ q?: InputMaybe<Scalars['String']['input']>;
129102
+ sort?: InputMaybe<Array<InputMaybe<MercuryInvestmentCategorySort>>>;
129103
+ };
128622
129104
  export declare enum MercuryFundsType {
128623
129105
  Actual = "ACTUAL",
128624
129106
  Budget = "BUDGET",
@@ -128733,10 +129215,28 @@ export declare type MercuryInvestmentCategory = Node & {
128733
129215
  updatedBy?: Maybe<User>;
128734
129216
  updatedDate?: Maybe<Scalars['DateTime']['output']>;
128735
129217
  };
129218
+ export declare type MercuryInvestmentCategoryConnection = {
129219
+ __typename?: 'MercuryInvestmentCategoryConnection';
129220
+ edges?: Maybe<Array<MercuryInvestmentCategoryEdge>>;
129221
+ pageInfo: PageInfo;
129222
+ totalCount?: Maybe<Scalars['Int']['output']>;
129223
+ };
129224
+ export declare type MercuryInvestmentCategoryEdge = {
129225
+ __typename?: 'MercuryInvestmentCategoryEdge';
129226
+ cursor: Scalars['String']['output'];
129227
+ node?: Maybe<MercuryInvestmentCategory>;
129228
+ };
128736
129229
  export declare type MercuryInvestmentCategoryReferences = {
128737
129230
  __typename?: 'MercuryInvestmentCategoryReferences';
128738
129231
  count?: Maybe<Scalars['Int']['output']>;
128739
129232
  };
129233
+ export declare type MercuryInvestmentCategorySort = {
129234
+ field: MercuryInvestmentCategorySortField;
129235
+ order: SortOrder;
129236
+ };
129237
+ export declare enum MercuryInvestmentCategorySortField {
129238
+ Name = "NAME"
129239
+ }
128740
129240
  export declare type MercuryInviteInput = {
128741
129241
  cloudId: Scalars['ID']['input'];
128742
129242
  userId: Scalars['ID']['input'];
@@ -130643,6 +131143,16 @@ export declare type MercuryUnrankChangeProposalInViewPayload = Payload & {
130643
131143
  success: Scalars['Boolean']['output'];
130644
131144
  updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
130645
131145
  };
131146
+ export declare type MercuryUpdateActiveCurrencyInput = {
131147
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
131148
+ currencyCode: Scalars['String']['input'];
131149
+ };
131150
+ export declare type MercuryUpdateActiveCurrencyPayload = Payload & {
131151
+ __typename?: 'MercuryUpdateActiveCurrencyPayload';
131152
+ errors?: Maybe<Array<MutationError>>;
131153
+ success: Scalars['Boolean']['output'];
131154
+ updatedActiveCurrency?: Maybe<MercuryCurrency>;
131155
+ };
130646
131156
  export declare type MercuryUpdateChangeFocusAreaInput = {
130647
131157
  focusAreaId?: InputMaybe<Scalars['ID']['input']>;
130648
131158
  };
@@ -131321,12 +131831,21 @@ export declare type Mutation = {
131321
131831
  agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
131322
131832
  agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
131323
131833
  agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
131834
+ agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalog>;
131835
+ agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogType>;
131324
131836
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
131837
+ agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkill>;
131838
+ agentWorkspace_deleteCatalog?: Maybe<Scalars['Boolean']['output']>;
131839
+ agentWorkspace_deleteCatalogType?: Maybe<Scalars['Boolean']['output']>;
131325
131840
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
131841
+ agentWorkspace_deleteSkill?: Maybe<Scalars['Boolean']['output']>;
131326
131842
  agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
131327
131843
  agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
131328
131844
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
131845
+ agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalog>;
131846
+ agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogType>;
131329
131847
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
131848
+ agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkill>;
131330
131849
  appRecommendations?: Maybe<AppRecMutation>;
131331
131850
  appStorage?: Maybe<AppStorageMutation>;
131332
131851
  appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
@@ -131910,6 +132429,10 @@ export declare type Mutation = {
131910
132429
  jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
131911
132430
  jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
131912
132431
  jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
132432
+ jira_setJswBoardCardOptions?: Maybe<JiraSetJswBoardViewSettingsPayload>;
132433
+ jira_setJswBoardGroupBy?: Maybe<JiraSetJswBoardViewSettingsPayload>;
132434
+ jira_setJswBoardQuickFilterToggle?: Maybe<JiraSetJswBoardViewSettingsPayload>;
132435
+ jira_setJswBoardWorkSuggestionToggle?: Maybe<JiraSetJswBoardViewSettingsPayload>;
131913
132436
  jira_setLogo?: Maybe<JiraSetLogoPayload>;
131914
132437
  jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
131915
132438
  jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
@@ -131951,6 +132474,7 @@ export declare type Mutation = {
131951
132474
  kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
131952
132475
  kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
131953
132476
  kitsune_removeSection?: Maybe<KitsuneSection>;
132477
+ kitsune_removeView?: Maybe<GenericMutationResponse>;
131954
132478
  kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
131955
132479
  kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
131956
132480
  kitsune_updateSection?: Maybe<KitsuneSection>;
@@ -132531,12 +133055,33 @@ export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
132531
133055
  productType: AgentStudioProductType;
132532
133056
  projectContainerAri: Scalars['ID']['input'];
132533
133057
  };
133058
+ export declare type MutationAgentWorkspace_CreateCatalogArgs = {
133059
+ input: AgentWorkspaceCreateCatalogInput;
133060
+ };
133061
+ export declare type MutationAgentWorkspace_CreateCatalogTypeArgs = {
133062
+ input: AgentWorkspaceCreateCatalogTypeInput;
133063
+ };
132534
133064
  export declare type MutationAgentWorkspace_CreateScheduleArgs = {
132535
133065
  input: AgentWorkspaceCreateScheduleInput;
132536
133066
  };
133067
+ export declare type MutationAgentWorkspace_CreateSkillArgs = {
133068
+ input: AgentWorkspaceCreateSkillInput;
133069
+ };
133070
+ export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
133071
+ cloudId: Scalars['ID']['input'];
133072
+ id: Scalars['ID']['input'];
133073
+ };
133074
+ export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
133075
+ cloudId: Scalars['ID']['input'];
133076
+ id: Scalars['ID']['input'];
133077
+ };
132537
133078
  export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
132538
133079
  input: AgentWorkspaceDeleteScheduleInput;
132539
133080
  };
133081
+ export declare type MutationAgentWorkspace_DeleteSkillArgs = {
133082
+ cloudId: Scalars['ID']['input'];
133083
+ id: Scalars['ID']['input'];
133084
+ };
132540
133085
  export declare type MutationAgentWorkspace_EndBreakArgs = {
132541
133086
  agentId: Scalars['ID']['input'];
132542
133087
  cloudId: Scalars['ID']['input'];
@@ -132548,9 +133093,18 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
132548
133093
  agentId: Scalars['ID']['input'];
132549
133094
  cloudId: Scalars['ID']['input'];
132550
133095
  };
133096
+ export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
133097
+ input: AgentWorkspaceUpdateCatalogInput;
133098
+ };
133099
+ export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
133100
+ input: AgentWorkspaceUpdateCatalogTypeInput;
133101
+ };
132551
133102
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
132552
133103
  input: AgentWorkspaceUpdateScheduleInput;
132553
133104
  };
133105
+ export declare type MutationAgentWorkspace_UpdateSkillArgs = {
133106
+ input: AgentWorkspaceUpdateSkillInput;
133107
+ };
132554
133108
  export declare type MutationAppStorage_AdminArgs = {
132555
133109
  appId: Scalars['ID']['input'];
132556
133110
  };
@@ -134585,6 +135139,18 @@ export declare type MutationJira_SetIssueSearchJqlArgs = {
134585
135139
  export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
134586
135140
  input: JiraSetIssueSearchViewLayoutInput;
134587
135141
  };
135142
+ export declare type MutationJira_SetJswBoardCardOptionsArgs = {
135143
+ input: JiraSetJswBoardViewSettingCardOptionsInput;
135144
+ };
135145
+ export declare type MutationJira_SetJswBoardGroupByArgs = {
135146
+ input: JiraSetJswBoardViewSettingGroupByInput;
135147
+ };
135148
+ export declare type MutationJira_SetJswBoardQuickFilterToggleArgs = {
135149
+ input: JiraSetJswBoardViewSettingsToggleInput;
135150
+ };
135151
+ export declare type MutationJira_SetJswBoardWorkSuggestionToggleArgs = {
135152
+ input: JiraSetJswBoardViewSettingsToggleInput;
135153
+ };
134588
135154
  export declare type MutationJira_SetLogoArgs = {
134589
135155
  input: JiraSetLogoInput;
134590
135156
  };
@@ -134729,6 +135295,9 @@ export declare type MutationKitsune_RemoveFeedbackArgs = {
134729
135295
  export declare type MutationKitsune_RemoveSectionArgs = {
134730
135296
  sectionAri: Scalars['ID']['input'];
134731
135297
  };
135298
+ export declare type MutationKitsune_RemoveViewArgs = {
135299
+ viewAri: Scalars['ID']['input'];
135300
+ };
134732
135301
  export declare type MutationKitsune_SuggestSnippetsArgs = {
134733
135302
  title: Scalars['String']['input'];
134734
135303
  workspaceAri: Scalars['ID']['input'];
@@ -138816,10 +139385,16 @@ export declare type Query = {
138816
139385
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
138817
139386
  agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
138818
139387
  agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
139388
+ agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
139389
+ agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
139390
+ agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
139391
+ agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
138819
139392
  agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
138820
139393
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
138821
139394
  agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
138822
139395
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
139396
+ agentWorkspace_skill?: Maybe<AgentWorkspaceSkill>;
139397
+ agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
138823
139398
  aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
138824
139399
  aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
138825
139400
  aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
@@ -139421,6 +139996,7 @@ export declare type Query = {
139421
139996
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
139422
139997
  jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
139423
139998
  jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
139999
+ jira_jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
139424
140000
  jira_lookAndFeel?: Maybe<JiraLookAndFeel>;
139425
140001
  jira_mergeIssuesOperationProgress?: Maybe<JiraMergeIssuesOperationProgressResult>;
139426
140002
  jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
@@ -139666,6 +140242,9 @@ export declare type Query = {
139666
140242
  smarts?: Maybe<SmartsQueryApi>;
139667
140243
  socialSignals?: Maybe<SocialSignalsApi>;
139668
140244
  softwareBoards?: Maybe<BoardScopeConnection>;
140245
+ softwareCatalog_servicesWithActiveIncidents?: Maybe<SoftwareCatalogSearchResult>;
140246
+ softwareCatalog_servicesWithOpenAlerts?: Maybe<SoftwareCatalogSearchResult>;
140247
+ softwareCatalog_servicesWithUpcomingChanges?: Maybe<SoftwareCatalogSearchResult>;
139669
140248
  spaViewContext?: Maybe<SpaViewModel>;
139670
140249
  space?: Maybe<Space>;
139671
140250
  spaceContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
@@ -139854,25 +140433,25 @@ export declare type QueryAdmin_AppModulesArgs = {
139854
140433
  export declare type QueryAdmin_AuditLogEventActionsArgs = {
139855
140434
  after?: InputMaybe<Scalars['String']['input']>;
139856
140435
  before?: InputMaybe<Scalars['String']['input']>;
140436
+ container: AdminAuditLogContainer;
139857
140437
  first?: InputMaybe<Scalars['Int']['input']>;
139858
140438
  last?: InputMaybe<Scalars['Int']['input']>;
139859
- orgId: Scalars['ID']['input'];
139860
140439
  };
139861
140440
  export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
139862
140441
  after?: InputMaybe<Scalars['String']['input']>;
139863
140442
  before?: InputMaybe<Scalars['String']['input']>;
140443
+ container: AdminAuditLogContainer;
139864
140444
  filter?: InputMaybe<Scalars['String']['input']>;
139865
140445
  first?: InputMaybe<Scalars['Int']['input']>;
139866
140446
  last?: InputMaybe<Scalars['Int']['input']>;
139867
- orgId: Scalars['ID']['input'];
139868
140447
  };
139869
140448
  export declare type QueryAdmin_AuditLogEventLocationsArgs = {
139870
140449
  after?: InputMaybe<Scalars['String']['input']>;
139871
140450
  before?: InputMaybe<Scalars['String']['input']>;
140451
+ container: AdminAuditLogContainer;
139872
140452
  filter?: InputMaybe<Scalars['String']['input']>;
139873
140453
  first?: InputMaybe<Scalars['Int']['input']>;
139874
140454
  last?: InputMaybe<Scalars['Int']['input']>;
139875
- orgId: Scalars['ID']['input'];
139876
140455
  };
139877
140456
  export declare type QueryAdmin_AuditLogEventsArgs = {
139878
140457
  after?: InputMaybe<Scalars['String']['input']>;
@@ -140305,6 +140884,26 @@ export declare type QueryAgentWorkspace_AvailabilityArgs = {
140305
140884
  export declare type QueryAgentWorkspace_CapacityArgs = {
140306
140885
  input: AgentWorkspaceCapacityInput;
140307
140886
  };
140887
+ export declare type QueryAgentWorkspace_CatalogArgs = {
140888
+ cloudId: Scalars['ID']['input'];
140889
+ id: Scalars['ID']['input'];
140890
+ };
140891
+ export declare type QueryAgentWorkspace_CatalogTypeArgs = {
140892
+ cloudId: Scalars['ID']['input'];
140893
+ id: Scalars['ID']['input'];
140894
+ };
140895
+ export declare type QueryAgentWorkspace_CatalogTypesArgs = {
140896
+ cloudId: Scalars['ID']['input'];
140897
+ filter?: InputMaybe<AgentWorkspaceCatalogTypeFilter>;
140898
+ page?: InputMaybe<Scalars['Int']['input']>;
140899
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
140900
+ };
140901
+ export declare type QueryAgentWorkspace_CatalogsArgs = {
140902
+ cloudId: Scalars['ID']['input'];
140903
+ filter?: InputMaybe<AgentWorkspaceCatalogFilter>;
140904
+ page?: InputMaybe<Scalars['Int']['input']>;
140905
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
140906
+ };
140308
140907
  export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
140309
140908
  cloudId: Scalars['ID']['input'];
140310
140909
  projectKey: Scalars['String']['input'];
@@ -140325,6 +140924,16 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
140325
140924
  first?: InputMaybe<Scalars['Int']['input']>;
140326
140925
  input: AgentWorkspaceShiftsQueryInput;
140327
140926
  };
140927
+ export declare type QueryAgentWorkspace_SkillArgs = {
140928
+ cloudId: Scalars['ID']['input'];
140929
+ id: Scalars['ID']['input'];
140930
+ };
140931
+ export declare type QueryAgentWorkspace_SkillsArgs = {
140932
+ cloudId: Scalars['ID']['input'];
140933
+ filter?: InputMaybe<AgentWorkspaceSkillFilter>;
140934
+ page?: InputMaybe<Scalars['Int']['input']>;
140935
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
140936
+ };
140328
140937
  export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
140329
140938
  projectAri: Scalars['ID']['input'];
140330
140939
  };
@@ -141381,7 +141990,7 @@ export declare type QueryConfluence_GetActiveWorkflowApplicationArgs = {
141381
141990
  cloudId: Scalars['ID']['input'];
141382
141991
  contentId: Scalars['Long']['input'];
141383
141992
  contentStatus: Scalars['String']['input'];
141384
- contentVersion: Scalars['Int']['input'];
141993
+ contentVersion?: InputMaybe<Scalars['Int']['input']>;
141385
141994
  fetchWorkflowReview?: InputMaybe<Scalars['Boolean']['input']>;
141386
141995
  workflowId: Scalars['Long']['input'];
141387
141996
  };
@@ -142969,6 +143578,9 @@ export declare type QueryJira_IssuesByIdsArgs = {
142969
143578
  export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
142970
143579
  cloudId: Scalars['ID']['input'];
142971
143580
  };
143581
+ export declare type QueryJira_JswBoardViewSettingsArgs = {
143582
+ input: JiraJswBoardViewSettingsQueryInput;
143583
+ };
142972
143584
  export declare type QueryJira_LookAndFeelArgs = {
142973
143585
  cloudId: Scalars['ID']['input'];
142974
143586
  };
@@ -143836,6 +144448,21 @@ export declare type QuerySiteSettingsArgs = {
143836
144448
  export declare type QuerySoftwareBoardsArgs = {
143837
144449
  projectAri: Scalars['ID']['input'];
143838
144450
  };
144451
+ export declare type QuerySoftwareCatalog_ServicesWithActiveIncidentsArgs = {
144452
+ cloudId: Scalars['ID']['input'];
144453
+ limit?: InputMaybe<Scalars['Int']['input']>;
144454
+ offset?: InputMaybe<Scalars['Int']['input']>;
144455
+ };
144456
+ export declare type QuerySoftwareCatalog_ServicesWithOpenAlertsArgs = {
144457
+ cloudId: Scalars['ID']['input'];
144458
+ limit?: InputMaybe<Scalars['Int']['input']>;
144459
+ offset?: InputMaybe<Scalars['Int']['input']>;
144460
+ };
144461
+ export declare type QuerySoftwareCatalog_ServicesWithUpcomingChangesArgs = {
144462
+ cloudId: Scalars['ID']['input'];
144463
+ limit?: InputMaybe<Scalars['Int']['input']>;
144464
+ offset?: InputMaybe<Scalars['Int']['input']>;
144465
+ };
143839
144466
  export declare type QuerySpaceArgs = {
143840
144467
  cloudId?: InputMaybe<Scalars['ID']['input']>;
143841
144468
  id?: InputMaybe<Scalars['ID']['input']>;
@@ -167541,6 +168168,7 @@ export declare type SoftwareCard = {
167541
168168
  priority?: Maybe<CardPriority>;
167542
168169
  status?: Maybe<CardStatus>;
167543
168170
  summary?: Maybe<Scalars['String']['output']>;
168171
+ townsquareProjectId?: Maybe<Scalars['String']['output']>;
167544
168172
  type?: Maybe<CardType>;
167545
168173
  };
167546
168174
  export declare type SoftwareCardChildrenInfo = {
@@ -167585,6 +168213,13 @@ export declare enum SoftwareCardsDestinationEnum {
167585
168213
  ExistingSprint = "EXISTING_SPRINT",
167586
168214
  NewSprint = "NEW_SPRINT"
167587
168215
  }
168216
+ export declare type SoftwareCatalogSearchResult = {
168217
+ __typename?: 'SoftwareCatalogSearchResult';
168218
+ items?: Maybe<Array<Maybe<AssetsServiceObject>>>;
168219
+ limit: Scalars['Int']['output'];
168220
+ offset: Scalars['Int']['output'];
168221
+ totalCount: Scalars['Int']['output'];
168222
+ };
167588
168223
  export declare type SoftwareOperation = {
167589
168224
  __typename?: 'SoftwareOperation';
167590
168225
  icon?: Maybe<Icon>;
@@ -176231,6 +176866,7 @@ export declare type TrelloBoard = Node & TrelloBaseBoard & {
176231
176866
  __typename?: 'TrelloBoard';
176232
176867
  closed: Scalars['Boolean']['output'];
176233
176868
  creationMethod?: Maybe<Scalars['String']['output']>;
176869
+ creationMethodLoadingStartedAt?: Maybe<Scalars['DateTime']['output']>;
176234
176870
  creator?: Maybe<TrelloMember>;
176235
176871
  customFields?: Maybe<TrelloCustomFieldConnection>;
176236
176872
  description?: Maybe<TrelloUserGeneratedText>;
@@ -177616,16 +178252,7 @@ export declare type TrelloGenerateCheckItemsForCardInput = {
177616
178252
  };
177617
178253
  export declare type TrelloGenerateCheckItemsForCardPayload = {
177618
178254
  __typename?: 'TrelloGenerateCheckItemsForCardPayload';
177619
- card?: Maybe<TrelloCard>;
177620
- errors?: Maybe<Array<MutationError>>;
177621
- success: Scalars['Boolean']['output'];
177622
- };
177623
- export declare type TrelloGenerateChecklistsForCardInput = {
177624
- cardId: Scalars['ID']['input'];
177625
- };
177626
- export declare type TrelloGenerateChecklistsForCardPayload = Payload & {
177627
- __typename?: 'TrelloGenerateChecklistsForCardPayload';
177628
- card?: Maybe<TrelloCard>;
178255
+ card?: Maybe<TrelloBaseCard>;
177629
178256
  errors?: Maybe<Array<MutationError>>;
177630
178257
  success: Scalars['Boolean']['output'];
177631
178258
  };
@@ -178292,7 +178919,6 @@ export declare type TrelloMutationApi = {
178292
178919
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
178293
178920
  generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
178294
178921
  generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
178295
- generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
178296
178922
  markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
178297
178923
  markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
178298
178924
  mergeCards?: Maybe<TrelloMergeCardsPayload>;
@@ -178316,6 +178942,7 @@ export declare type TrelloMutationApi = {
178316
178942
  sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
178317
178943
  sortListCards?: Maybe<TrelloSortListCardsPayload>;
178318
178944
  submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
178945
+ toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
178319
178946
  unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
178320
178947
  unwatchCard?: Maybe<TrelloWatchCardPayload>;
178321
178948
  updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
@@ -178410,9 +179037,6 @@ export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
178410
179037
  export declare type TrelloMutationApiGenerateCheckItemsForCardArgs = {
178411
179038
  input: TrelloGenerateCheckItemsForCardInput;
178412
179039
  };
178413
- export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
178414
- input: TrelloGenerateChecklistsForCardInput;
178415
- };
178416
179040
  export declare type TrelloMutationApiMarkCardCompleteArgs = {
178417
179041
  input: TrelloMarkCardCompleteInput;
178418
179042
  };
@@ -178479,6 +179103,9 @@ export declare type TrelloMutationApiSortListCardsArgs = {
178479
179103
  export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
178480
179104
  input: TrelloCardBatchSpecificationInput;
178481
179105
  };
179106
+ export declare type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
179107
+ input: TrelloToggleLabsFeatureForMemberInput;
179108
+ };
178482
179109
  export declare type TrelloMutationApiUnarchiveCardArgs = {
178483
179110
  input: TrelloUnarchiveCardInput;
178484
179111
  };
@@ -178616,6 +179243,7 @@ export declare type TrelloPinCardPayload = Payload & {
178616
179243
  export declare type TrelloPlanner = {
178617
179244
  __typename?: 'TrelloPlanner';
178618
179245
  accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
179246
+ cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnection>;
178619
179247
  id: Scalars['ID']['output'];
178620
179248
  primaryAccountId?: Maybe<Scalars['ID']['output']>;
178621
179249
  primaryCalendarId?: Maybe<Scalars['ID']['output']>;
@@ -178626,10 +179254,21 @@ export declare type TrelloPlannerAccountsArgs = {
178626
179254
  after?: InputMaybe<Scalars['String']['input']>;
178627
179255
  first?: InputMaybe<Scalars['Int']['input']>;
178628
179256
  };
179257
+ export declare type TrelloPlannerCardsWithDueDatesArgs = {
179258
+ after?: InputMaybe<Scalars['String']['input']>;
179259
+ filter?: InputMaybe<TrelloPlannerCardsWithDueDatesFilter>;
179260
+ first?: InputMaybe<Scalars['Int']['input']>;
179261
+ };
178629
179262
  export declare type TrelloPlannerProposedEventsArgs = {
178630
179263
  after?: InputMaybe<Scalars['String']['input']>;
178631
179264
  first?: InputMaybe<Scalars['Int']['input']>;
178632
179265
  };
179266
+ export declare type TrelloPlannerBoardWithDueCards = {
179267
+ __typename?: 'TrelloPlannerBoardWithDueCards';
179268
+ board?: Maybe<TrelloBaseBoard>;
179269
+ id: Scalars['ID']['output'];
179270
+ lists?: Maybe<Array<TrelloPlannerListWithDueCards>>;
179271
+ };
178633
179272
  export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
178634
179273
  __typename?: 'TrelloPlannerCalendar';
178635
179274
  color?: Maybe<TrelloPlannerCalendarColor>;
@@ -178965,6 +179604,26 @@ export declare type TrelloPlannerCardUpdated = {
178965
179604
  list?: Maybe<TrelloPlannerCardListUpdated>;
178966
179605
  objectId?: Maybe<Scalars['ID']['output']>;
178967
179606
  };
179607
+ export declare type TrelloPlannerCardWithDueDate = {
179608
+ __typename?: 'TrelloPlannerCardWithDueDate';
179609
+ card?: Maybe<TrelloBaseCard>;
179610
+ id: Scalars['ID']['output'];
179611
+ };
179612
+ export declare type TrelloPlannerCardsWithDueDatesConnection = {
179613
+ __typename?: 'TrelloPlannerCardsWithDueDatesConnection';
179614
+ edges?: Maybe<Array<TrelloPlannerCardsWithDueDatesEdge>>;
179615
+ nodes?: Maybe<Array<TrelloPlannerBoardWithDueCards>>;
179616
+ pageInfo: PageInfo;
179617
+ };
179618
+ export declare type TrelloPlannerCardsWithDueDatesEdge = {
179619
+ __typename?: 'TrelloPlannerCardsWithDueDatesEdge';
179620
+ cursor?: Maybe<Scalars['String']['output']>;
179621
+ node?: Maybe<TrelloPlannerBoardWithDueCards>;
179622
+ };
179623
+ export declare type TrelloPlannerCardsWithDueDatesFilter = {
179624
+ dueEnd?: InputMaybe<Scalars['DateTime']['input']>;
179625
+ dueStart?: InputMaybe<Scalars['DateTime']['input']>;
179626
+ };
178968
179627
  export declare type TrelloPlannerEventCardConnection = {
178969
179628
  __typename?: 'TrelloPlannerEventCardConnection';
178970
179629
  calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
@@ -178996,6 +179655,12 @@ export declare enum TrelloPlannerEventTimeFilter {
178996
179655
  All = "ALL",
178997
179656
  Future = "FUTURE"
178998
179657
  }
179658
+ export declare type TrelloPlannerListWithDueCards = {
179659
+ __typename?: 'TrelloPlannerListWithDueCards';
179660
+ cards?: Maybe<Array<TrelloPlannerCardWithDueDate>>;
179661
+ id: Scalars['ID']['output'];
179662
+ list?: Maybe<TrelloList>;
179663
+ };
178999
179664
  export declare type TrelloPlannerProposedEventConnection = {
179000
179665
  __typename?: 'TrelloPlannerProposedEventConnection';
179001
179666
  edges?: Maybe<Array<TrelloPlannerProposedEventEdge>>;
@@ -179728,6 +180393,15 @@ export declare type TrelloTemplateGalleryLanguage = {
179728
180393
  locale: Scalars['String']['output'];
179729
180394
  localizedDescription: Scalars['String']['output'];
179730
180395
  };
180396
+ export declare type TrelloToggleLabsFeatureForMemberInput = {
180397
+ enabled: Scalars['Boolean']['input'];
180398
+ feature: TrelloLabsFeature;
180399
+ };
180400
+ export declare type TrelloToggleLabsFeatureForMemberPayload = Payload & {
180401
+ __typename?: 'TrelloToggleLabsFeatureForMemberPayload';
180402
+ errors?: Maybe<Array<MutationError>>;
180403
+ success: Scalars['Boolean']['output'];
180404
+ };
179731
180405
  export declare type TrelloUnarchiveCardInput = {
179732
180406
  cardId: Scalars['ID']['input'];
179733
180407
  };
@@ -180227,8 +180901,10 @@ export declare type TrelloWorkspaceUpdated = {
180227
180901
  __typename?: 'TrelloWorkspaceUpdated';
180228
180902
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
180229
180903
  description?: Maybe<Scalars['String']['output']>;
180904
+ displayName?: Maybe<Scalars['String']['output']>;
180230
180905
  enterprise?: Maybe<TrelloWorkspaceEnterpriseUpdated>;
180231
180906
  id: Scalars['ID']['output'];
180907
+ name?: Maybe<Scalars['String']['output']>;
180232
180908
  offering?: Maybe<Scalars['String']['output']>;
180233
180909
  onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
180234
180910
  planner?: Maybe<TrelloPlannerUpdated>;