@forge/cli-shared 8.15.2-next.0-experimental-75a65ea → 8.15.2-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.
@@ -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"
@@ -5605,6 +5764,7 @@ export declare type AppInstallation = {
5605
5764
  app?: Maybe<App>;
5606
5765
  appEnvironment?: Maybe<AppEnvironment>;
5607
5766
  appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
5767
+ appLicense?: Maybe<AppInstallationAppLicense>;
5608
5768
  computeVersion?: Maybe<AppEnvironmentVersion>;
5609
5769
  config?: Maybe<Array<Maybe<AppInstallationConfig>>>;
5610
5770
  createdAt: Scalars['DateTime']['output'];
@@ -5620,6 +5780,19 @@ export declare type AppInstallation = {
5620
5780
  secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
5621
5781
  version?: Maybe<AppVersion>;
5622
5782
  };
5783
+ export declare type AppInstallationAppLicense = {
5784
+ __typename?: 'AppInstallationAppLicense';
5785
+ active: Scalars['Boolean']['output'];
5786
+ billingPeriod?: Maybe<Scalars['String']['output']>;
5787
+ capabilitySet?: Maybe<AppLicenseCapabilitySet>;
5788
+ ccpEntitlementId?: Maybe<Scalars['String']['output']>;
5789
+ ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
5790
+ isEvaluation?: Maybe<Scalars['Boolean']['output']>;
5791
+ subscriptionEndDate?: Maybe<Scalars['DateTime']['output']>;
5792
+ supportEntitlementNumber?: Maybe<Scalars['String']['output']>;
5793
+ trialEndDate?: Maybe<Scalars['DateTime']['output']>;
5794
+ type?: Maybe<Scalars['String']['output']>;
5795
+ };
5623
5796
  export declare type AppInstallationByIndexConnection = {
5624
5797
  __typename?: 'AppInstallationByIndexConnection';
5625
5798
  edges?: Maybe<Array<Maybe<AppInstallationByIndexEdge>>>;
@@ -5787,6 +5960,10 @@ export declare type AppInstallationsFilter = {
5787
5960
  appId: Scalars['ID']['input'];
5788
5961
  environmentType?: InputMaybe<AppEnvironmentType>;
5789
5962
  };
5963
+ export declare enum AppLicenseCapabilitySet {
5964
+ CapabilityAdvanced = "capabilityAdvanced",
5965
+ CapabilityStandard = "capabilityStandard"
5966
+ }
5790
5967
  export declare type AppLog = FunctionInvocationMetadata & {
5791
5968
  __typename?: 'AppLog';
5792
5969
  appLogLines?: Maybe<AppLogLineConnection>;
@@ -9764,6 +9941,7 @@ export declare type BoardScope = Node & {
9764
9941
  sprints?: Maybe<Array<Maybe<Sprint>>>;
9765
9942
  startSprintPrototype?: Maybe<Sprint>;
9766
9943
  subqueryConfig?: Maybe<JswSubqueryConfig>;
9944
+ townsquareProjects?: Maybe<Array<Maybe<JiraTownsquareProjectEntry>>>;
9767
9945
  trackingStatistic?: Maybe<JswTrackingStatistic>;
9768
9946
  userSwimlaneStrategy?: Maybe<SwimlaneStrategy>;
9769
9947
  workingDaysConfig?: Maybe<JswWorkingDaysConfig>;
@@ -12497,6 +12675,8 @@ export declare type ChannelPlatformContact = {
12497
12675
  assigneeAaid?: Maybe<Scalars['String']['output']>;
12498
12676
  channel?: Maybe<ChannelPlatformChannelType>;
12499
12677
  contactId?: Maybe<Scalars['ID']['output']>;
12678
+ disconnectReason?: Maybe<Scalars['String']['output']>;
12679
+ disconnectTimestamp?: Maybe<Scalars['String']['output']>;
12500
12680
  phoneContact?: Maybe<ChannelPlatformPhoneContact>;
12501
12681
  state?: Maybe<ChannelPlatformContactState>;
12502
12682
  };
@@ -25645,9 +25825,12 @@ export declare type ConfluencePermissionTransitionPrincipalPageInfo = {
25645
25825
  hasNextPage: Scalars['Boolean']['output'];
25646
25826
  };
25647
25827
  export declare enum ConfluencePermissionTransitionPrincipalType {
25828
+ AccessClass = "ACCESS_CLASS",
25648
25829
  Anonymous = "ANONYMOUS",
25830
+ App = "APP",
25649
25831
  Group = "GROUP",
25650
25832
  Guest = "GUEST",
25833
+ Team = "TEAM",
25651
25834
  User = "USER"
25652
25835
  }
25653
25836
  export declare type ConfluencePermissionTransitionPrincipalsConnection = {
@@ -25655,6 +25838,11 @@ export declare type ConfluencePermissionTransitionPrincipalsConnection = {
25655
25838
  edges?: Maybe<Array<Maybe<ConfluencePermissionTransitionPrincipalEdge>>>;
25656
25839
  pageInfo: ConfluencePermissionTransitionPrincipalPageInfo;
25657
25840
  };
25841
+ export declare type ConfluencePermissionTransitionRecommendation = {
25842
+ __typename?: 'ConfluencePermissionTransitionRecommendation';
25843
+ action: ConfluenceRoleRecommendation;
25844
+ justification: ConfluenceRecommendationJustification;
25845
+ };
25658
25846
  export declare type ConfluencePermissionTransitionSpace = {
25659
25847
  __typename?: 'ConfluencePermissionTransitionSpace';
25660
25848
  icon: Scalars['String']['output'];
@@ -25662,7 +25850,7 @@ export declare type ConfluencePermissionTransitionSpace = {
25662
25850
  isPersonalSpace: Scalars['Boolean']['output'];
25663
25851
  key: Scalars['String']['output'];
25664
25852
  name: Scalars['String']['output'];
25665
- owner: ConfluencePermissionTransitionSpaceOwner;
25853
+ owner?: Maybe<ConfluencePermissionTransitionSpaceOwner>;
25666
25854
  };
25667
25855
  export declare type ConfluencePermissionTransitionSpaceConnection = {
25668
25856
  __typename?: 'ConfluencePermissionTransitionSpaceConnection';
@@ -25676,10 +25864,18 @@ export declare type ConfluencePermissionTransitionSpaceEdge = {
25676
25864
  };
25677
25865
  export declare type ConfluencePermissionTransitionSpaceOwner = {
25678
25866
  __typename?: 'ConfluencePermissionTransitionSpaceOwner';
25679
- email: Scalars['String']['output'];
25680
- name: Scalars['String']['output'];
25681
- profilePicture: Icon;
25867
+ displayName?: Maybe<Scalars['String']['output']>;
25868
+ email?: Maybe<Scalars['String']['output']>;
25869
+ name?: Maybe<Scalars['String']['output']>;
25870
+ ownerId?: Maybe<Scalars['String']['output']>;
25871
+ ownerType?: Maybe<ConfluencePermissionTransitionSpaceOwnerType>;
25872
+ profilePicture?: Maybe<Icon>;
25873
+ usageType?: Maybe<ConfluencePermissionTransitionSpaceUsageType>;
25682
25874
  };
25875
+ export declare enum ConfluencePermissionTransitionSpaceOwnerType {
25876
+ Group = "GROUP",
25877
+ User = "USER"
25878
+ }
25683
25879
  export declare type ConfluencePermissionTransitionSpaceTargetSelectionInput = {
25684
25880
  selectedSpaces?: InputMaybe<Array<InputMaybe<ConfluenceSpaceTargetInput>>>;
25685
25881
  spaceType: ConfluencePermissionTransitionSpaceType;
@@ -25697,6 +25893,11 @@ export declare enum ConfluencePermissionTransitionSpaceTypeFilter {
25697
25893
  KnowledgeBase = "KNOWLEDGE_BASE",
25698
25894
  Personal = "PERSONAL"
25699
25895
  }
25896
+ export declare enum ConfluencePermissionTransitionSpaceUsageType {
25897
+ AdminOversight = "ADMIN_OVERSIGHT",
25898
+ TeamCollaboration = "TEAM_COLLABORATION",
25899
+ UserbaseGroup = "USERBASE_GROUP"
25900
+ }
25700
25901
  export declare enum ConfluencePermissionTypeAssignabilityCode {
25701
25902
  AnonymousAssignable = "ANONYMOUS_ASSIGNABLE",
25702
25903
  Assignable = "ASSIGNABLE",
@@ -26144,6 +26345,14 @@ export declare enum ConfluenceRecipientType {
26144
26345
  Team = "TEAM",
26145
26346
  User = "USER"
26146
26347
  }
26348
+ export declare type ConfluenceRecommendationJustification = {
26349
+ __typename?: 'ConfluenceRecommendationJustification';
26350
+ description: Scalars['String']['output'];
26351
+ name: Scalars['String']['output'];
26352
+ };
26353
+ export declare enum ConfluenceRecommendedAction {
26354
+ ConvertToRole = "CONVERT_TO_ROLE"
26355
+ }
26147
26356
  export declare type ConfluenceRedactionMetadata = {
26148
26357
  __typename?: 'ConfluenceRedactionMetadata';
26149
26358
  creationDate?: Maybe<Scalars['String']['output']>;
@@ -26346,6 +26555,11 @@ export declare enum ConfluenceRoleAssignabilityCode {
26346
26555
  NoManageNonlicensedUsersPermNotAssignable = "NO_MANAGE_NONLICENSED_USERS_PERM_NOT_ASSIGNABLE",
26347
26556
  PrincipalInvalidRole = "PRINCIPAL_INVALID_ROLE"
26348
26557
  }
26558
+ export declare type ConfluenceRoleRecommendation = {
26559
+ __typename?: 'ConfluenceRoleRecommendation';
26560
+ action: ConfluenceRecommendedAction;
26561
+ roleIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
26562
+ };
26349
26563
  export declare type ConfluenceSaveOrUpdateSpaceOwnerInput = {
26350
26564
  ownerId: Scalars['ID']['input'];
26351
26565
  spaceId: Scalars['Long']['input'];
@@ -26614,6 +26828,7 @@ export declare type ConfluenceSpacePermissionCombination = {
26614
26828
  __typename?: 'ConfluenceSpacePermissionCombination';
26615
26829
  combinationId: Scalars['String']['output'];
26616
26830
  principalCount: Scalars['Long']['output'];
26831
+ recommendation?: Maybe<ConfluencePermissionTransitionRecommendation>;
26617
26832
  spaceCount: Scalars['Long']['output'];
26618
26833
  spaceRole?: Maybe<ConfluenceBasicSpaceRole>;
26619
26834
  };
@@ -30521,6 +30736,7 @@ export declare type CplsAddContributionsPayload = Payload & {
30521
30736
  contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
30522
30737
  errors?: Maybe<Array<MutationError>>;
30523
30738
  success: Scalars['Boolean']['output'];
30739
+ works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
30524
30740
  };
30525
30741
  export declare type CplsAddContributorScopeAssociationInput = {
30526
30742
  cloudId: Scalars['ID']['input'];
@@ -30800,6 +31016,7 @@ export declare type CplsFilters = {
30800
31016
  __typename?: 'CplsFilters';
30801
31017
  contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
30802
31018
  customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
31019
+ id: Scalars['ID']['output'];
30803
31020
  jiraWorkItemStatusNames?: Maybe<Array<Scalars['String']['output']>>;
30804
31021
  jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
30805
31022
  workTypes?: Maybe<Array<CplsWorkType>>;
@@ -30916,6 +31133,7 @@ export declare type CplsViewSettings = {
30916
31133
  __typename?: 'CplsViewSettings';
30917
31134
  alwaysShowNumbersInGraph?: Maybe<Scalars['Boolean']['output']>;
30918
31135
  contributionValueType?: Maybe<CplsContributionValueType>;
31136
+ id: Scalars['ID']['output'];
30919
31137
  timeScale?: Maybe<CplsTimeScaleType>;
30920
31138
  };
30921
31139
  export declare type CplsViewSettingsInput = {
@@ -38726,6 +38944,8 @@ export declare type ExternalExperimental = Node & {
38726
38944
  createdBy?: Maybe<ExternalUser>;
38727
38945
  description?: Maybe<Scalars['String']['output']>;
38728
38946
  displayName?: Maybe<Scalars['String']['output']>;
38947
+ experimentalEntityName?: Maybe<Scalars['String']['output']>;
38948
+ experimentalKey?: Maybe<Scalars['String']['output']>;
38729
38949
  externalId?: Maybe<Scalars['String']['output']>;
38730
38950
  id: Scalars['ID']['output'];
38731
38951
  lastUpdated?: Maybe<Scalars['String']['output']>;
@@ -45698,6 +45918,10 @@ export declare type GraphStore = {
45698
45918
  projectLinksToEntityInverseBatch?: Maybe<GraphStoreBatchProjectLinksToEntityConnection>;
45699
45919
  pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
45700
45920
  pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
45921
+ riskHasProject?: Maybe<GraphStoreSimplifiedRiskHasProjectConnection>;
45922
+ riskHasProjectBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
45923
+ riskHasProjectInverse?: Maybe<GraphStoreSimplifiedRiskHasProjectInverseConnection>;
45924
+ riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
45701
45925
  scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
45702
45926
  scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
45703
45927
  securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
@@ -50562,6 +50786,36 @@ export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
50562
50786
  queryContext?: InputMaybe<Scalars['String']['input']>;
50563
50787
  sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
50564
50788
  };
50789
+ export declare type GraphStoreRiskHasProjectArgs = {
50790
+ after?: InputMaybe<Scalars['String']['input']>;
50791
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
50792
+ first?: InputMaybe<Scalars['Int']['input']>;
50793
+ id: Scalars['ID']['input'];
50794
+ queryContext?: InputMaybe<Scalars['String']['input']>;
50795
+ sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
50796
+ };
50797
+ export declare type GraphStoreRiskHasProjectBatchArgs = {
50798
+ after?: InputMaybe<Scalars['String']['input']>;
50799
+ first?: InputMaybe<Scalars['Int']['input']>;
50800
+ ids: Array<Scalars['ID']['input']>;
50801
+ queryContext?: InputMaybe<Scalars['String']['input']>;
50802
+ sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
50803
+ };
50804
+ export declare type GraphStoreRiskHasProjectInverseArgs = {
50805
+ after?: InputMaybe<Scalars['String']['input']>;
50806
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
50807
+ first?: InputMaybe<Scalars['Int']['input']>;
50808
+ id: Scalars['ID']['input'];
50809
+ queryContext?: InputMaybe<Scalars['String']['input']>;
50810
+ sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
50811
+ };
50812
+ export declare type GraphStoreRiskHasProjectInverseBatchArgs = {
50813
+ after?: InputMaybe<Scalars['String']['input']>;
50814
+ first?: InputMaybe<Scalars['Int']['input']>;
50815
+ ids: Array<Scalars['ID']['input']>;
50816
+ queryContext?: InputMaybe<Scalars['String']['input']>;
50817
+ sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
50818
+ };
50565
50819
  export declare type GraphStoreScorecardHasAtlasGoalArgs = {
50566
50820
  after?: InputMaybe<Scalars['String']['input']>;
50567
50821
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -55131,6 +55385,47 @@ export declare type GraphStoreBatchProjectLinksToEntityStartNode = {
55131
55385
  id: Scalars['ID']['output'];
55132
55386
  };
55133
55387
  export declare type GraphStoreBatchProjectLinksToEntityStartUnion = TownsquareProject;
55388
+ export declare type GraphStoreBatchRiskHasProjectConnection = HasPageInfo & {
55389
+ __typename?: 'GraphStoreBatchRiskHasProjectConnection';
55390
+ edges: Array<Maybe<GraphStoreBatchRiskHasProjectEdge>>;
55391
+ nodes: Array<Maybe<GraphStoreBatchRiskHasProjectNode>>;
55392
+ pageInfo: PageInfo;
55393
+ };
55394
+ export declare type GraphStoreBatchRiskHasProjectEdge = {
55395
+ __typename?: 'GraphStoreBatchRiskHasProjectEdge';
55396
+ node: GraphStoreBatchRiskHasProjectInnerConnection;
55397
+ };
55398
+ export declare type GraphStoreBatchRiskHasProjectEndNode = {
55399
+ __typename?: 'GraphStoreBatchRiskHasProjectEndNode';
55400
+ data?: Maybe<GraphStoreBatchRiskHasProjectEndUnion>;
55401
+ id: Scalars['ID']['output'];
55402
+ };
55403
+ export declare type GraphStoreBatchRiskHasProjectEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
55404
+ export declare type GraphStoreBatchRiskHasProjectInnerConnection = {
55405
+ __typename?: 'GraphStoreBatchRiskHasProjectInnerConnection';
55406
+ edges: Array<Maybe<GraphStoreBatchRiskHasProjectInnerEdge>>;
55407
+ nodes: Array<Maybe<GraphStoreBatchRiskHasProjectNode>>;
55408
+ requestedId: Scalars['ID']['output'];
55409
+ };
55410
+ export declare type GraphStoreBatchRiskHasProjectInnerEdge = {
55411
+ __typename?: 'GraphStoreBatchRiskHasProjectInnerEdge';
55412
+ cursor?: Maybe<Scalars['String']['output']>;
55413
+ node: GraphStoreBatchRiskHasProjectNode;
55414
+ };
55415
+ export declare type GraphStoreBatchRiskHasProjectNode = Node & {
55416
+ __typename?: 'GraphStoreBatchRiskHasProjectNode';
55417
+ createdAt: Scalars['DateTime']['output'];
55418
+ from: GraphStoreBatchRiskHasProjectStartNode;
55419
+ id: Scalars['ID']['output'];
55420
+ lastUpdated: Scalars['DateTime']['output'];
55421
+ to: GraphStoreBatchRiskHasProjectEndNode;
55422
+ };
55423
+ export declare type GraphStoreBatchRiskHasProjectStartNode = {
55424
+ __typename?: 'GraphStoreBatchRiskHasProjectStartNode';
55425
+ data?: Maybe<GraphStoreBatchRiskHasProjectStartUnion>;
55426
+ id: Scalars['ID']['output'];
55427
+ };
55428
+ export declare type GraphStoreBatchRiskHasProjectStartUnion = MercuryRisk;
55134
55429
  export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
55135
55430
  __typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
55136
55431
  edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
@@ -61538,6 +61833,9 @@ export declare type GraphStoreProjectLinksToEntitySortInput = {
61538
61833
  export declare type GraphStorePullRequestLinksToServiceSortInput = {
61539
61834
  lastModified?: InputMaybe<GraphStoreSortInput>;
61540
61835
  };
61836
+ export declare type GraphStoreRiskHasProjectSortInput = {
61837
+ lastModified?: InputMaybe<GraphStoreSortInput>;
61838
+ };
61541
61839
  export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
61542
61840
  lastModified?: InputMaybe<GraphStoreSortInput>;
61543
61841
  };
@@ -67593,6 +67891,34 @@ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
67593
67891
  };
67594
67892
  export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
67595
67893
  export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
67894
+ export declare type GraphStoreSimplifiedRiskHasProjectConnection = HasPageInfo & {
67895
+ __typename?: 'GraphStoreSimplifiedRiskHasProjectConnection';
67896
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRiskHasProjectEdge>>>;
67897
+ pageInfo: PageInfo;
67898
+ };
67899
+ export declare type GraphStoreSimplifiedRiskHasProjectEdge = {
67900
+ __typename?: 'GraphStoreSimplifiedRiskHasProjectEdge';
67901
+ createdAt: Scalars['DateTime']['output'];
67902
+ cursor?: Maybe<Scalars['String']['output']>;
67903
+ id: Scalars['ID']['output'];
67904
+ lastUpdated: Scalars['DateTime']['output'];
67905
+ node?: Maybe<GraphStoreSimplifiedRiskHasProjectUnion>;
67906
+ };
67907
+ export declare type GraphStoreSimplifiedRiskHasProjectInverseConnection = HasPageInfo & {
67908
+ __typename?: 'GraphStoreSimplifiedRiskHasProjectInverseConnection';
67909
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRiskHasProjectInverseEdge>>>;
67910
+ pageInfo: PageInfo;
67911
+ };
67912
+ export declare type GraphStoreSimplifiedRiskHasProjectInverseEdge = {
67913
+ __typename?: 'GraphStoreSimplifiedRiskHasProjectInverseEdge';
67914
+ createdAt: Scalars['DateTime']['output'];
67915
+ cursor?: Maybe<Scalars['String']['output']>;
67916
+ id: Scalars['ID']['output'];
67917
+ lastUpdated: Scalars['DateTime']['output'];
67918
+ node?: Maybe<GraphStoreSimplifiedRiskHasProjectInverseUnion>;
67919
+ };
67920
+ export declare type GraphStoreSimplifiedRiskHasProjectInverseUnion = MercuryRisk;
67921
+ export declare type GraphStoreSimplifiedRiskHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
67596
67922
  export declare type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
67597
67923
  __typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
67598
67924
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
@@ -72907,7 +73233,6 @@ export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput =
72907
73233
  createdAt?: InputMaybe<GraphStoreDateFilterInput>;
72908
73234
  fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
72909
73235
  lastModified?: InputMaybe<GraphStoreDateFilterInput>;
72910
- relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
72911
73236
  relationship_rsvpStatus?: InputMaybe<GraphStoreUserAttendedCalendarEventRsvpStatusFilterInput>;
72912
73237
  toAti?: InputMaybe<GraphStoreAtiFilterInput>;
72913
73238
  to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
@@ -72933,7 +73258,6 @@ export declare type GraphStoreUserAttendedCalendarEventSortInput = {
72933
73258
  createdAt?: InputMaybe<GraphStoreSortInput>;
72934
73259
  fromAti?: InputMaybe<GraphStoreSortInput>;
72935
73260
  lastModified?: InputMaybe<GraphStoreSortInput>;
72936
- relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
72937
73261
  relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
72938
73262
  toAti?: InputMaybe<GraphStoreSortInput>;
72939
73263
  to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
@@ -73883,6 +74207,8 @@ export declare type GraphStoreV2 = {
73883
74207
  focusFocusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection>;
73884
74208
  focusFocusAreaHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection>;
73885
74209
  focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
74210
+ focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
74211
+ focusRiskHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection>;
73886
74212
  focusStrategicPlanContributesToFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection>;
73887
74213
  focusStrategicPlanContributesToFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseConnection>;
73888
74214
  focusStrategicPlanHasFocusStrategicPlanScenario?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioConnection>;
@@ -77587,6 +77913,20 @@ export declare type GraphStoreV2FocusFocusAreaHasWorkEntityInverseArgs = {
77587
77913
  id: Scalars['ID']['input'];
77588
77914
  sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasWorkEntitySortInput>;
77589
77915
  };
77916
+ export declare type GraphStoreV2FocusRiskHasWorkEntityArgs = {
77917
+ after?: InputMaybe<Scalars['String']['input']>;
77918
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
77919
+ first?: InputMaybe<Scalars['Int']['input']>;
77920
+ id: Scalars['ID']['input'];
77921
+ sort?: InputMaybe<GraphStoreV2FocusRiskHasWorkEntitySortInput>;
77922
+ };
77923
+ export declare type GraphStoreV2FocusRiskHasWorkEntityInverseArgs = {
77924
+ after?: InputMaybe<Scalars['String']['input']>;
77925
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
77926
+ first?: InputMaybe<Scalars['Int']['input']>;
77927
+ id: Scalars['ID']['input'];
77928
+ sort?: InputMaybe<GraphStoreV2FocusRiskHasWorkEntitySortInput>;
77929
+ };
77590
77930
  export declare type GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaArgs = {
77591
77931
  after?: InputMaybe<Scalars['String']['input']>;
77592
77932
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -80535,7 +80875,6 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventConditi
80535
80875
  createdAt?: InputMaybe<GraphStoreDateFilterInput>;
80536
80876
  fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
80537
80877
  lastModified?: InputMaybe<GraphStoreDateFilterInput>;
80538
- relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
80539
80878
  relationship_rsvpStatus?: InputMaybe<GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatusFilterInput>;
80540
80879
  toAti?: InputMaybe<GraphStoreAtiFilterInput>;
80541
80880
  to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
@@ -80561,7 +80900,6 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventSortInp
80561
80900
  createdAt?: InputMaybe<GraphStoreSortInput>;
80562
80901
  fromAti?: InputMaybe<GraphStoreSortInput>;
80563
80902
  lastModified?: InputMaybe<GraphStoreSortInput>;
80564
- relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
80565
80903
  relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
80566
80904
  toAti?: InputMaybe<GraphStoreSortInput>;
80567
80905
  to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
@@ -80797,6 +81135,9 @@ export declare type GraphStoreV2FocusFocusAreaHasThirdPartyDocumentSortInput = {
80797
81135
  export declare type GraphStoreV2FocusFocusAreaHasWorkEntitySortInput = {
80798
81136
  lastModified?: InputMaybe<GraphStoreSortInput>;
80799
81137
  };
81138
+ export declare type GraphStoreV2FocusRiskHasWorkEntitySortInput = {
81139
+ lastModified?: InputMaybe<GraphStoreSortInput>;
81140
+ };
80800
81141
  export declare type GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaSortInput = {
80801
81142
  lastModified?: InputMaybe<GraphStoreSortInput>;
80802
81143
  };
@@ -89378,6 +89719,34 @@ export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseEdge
89378
89719
  };
89379
89720
  export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseUnion = MercuryFocusArea;
89380
89721
  export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
89722
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection = HasPageInfo & {
89723
+ __typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection';
89724
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge>>>;
89725
+ pageInfo: PageInfo;
89726
+ };
89727
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge = {
89728
+ __typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge';
89729
+ createdAt: Scalars['DateTime']['output'];
89730
+ cursor?: Maybe<Scalars['String']['output']>;
89731
+ id: Scalars['ID']['output'];
89732
+ lastUpdated: Scalars['DateTime']['output'];
89733
+ node?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityUnion>;
89734
+ };
89735
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection = HasPageInfo & {
89736
+ __typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection';
89737
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge>>>;
89738
+ pageInfo: PageInfo;
89739
+ };
89740
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge = {
89741
+ __typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge';
89742
+ createdAt: Scalars['DateTime']['output'];
89743
+ cursor?: Maybe<Scalars['String']['output']>;
89744
+ id: Scalars['ID']['output'];
89745
+ lastUpdated: Scalars['DateTime']['output'];
89746
+ node?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseUnion>;
89747
+ };
89748
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseUnion = MercuryRisk;
89749
+ export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
89381
89750
  export declare type GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection = HasPageInfo & {
89382
89751
  __typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection';
89383
89752
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaEdge>>>;
@@ -92727,6 +93096,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContext = {
92727
93096
  issueTypes?: Maybe<Array<Maybe<GrowthUnifiedProfileIssueType>>>;
92728
93097
  jiraFamiliarity?: Maybe<GrowthUnifiedProfileJiraFamiliarity>;
92729
93098
  jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
93099
+ matureExampleProjectIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
92730
93100
  persona?: Maybe<Scalars['String']['output']>;
92731
93101
  projectLandingSelection?: Maybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
92732
93102
  projectName?: Maybe<Scalars['String']['output']>;
@@ -92740,6 +93110,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
92740
93110
  issueTypes?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileIssueTypeInput>>>;
92741
93111
  jiraFamiliarity?: InputMaybe<GrowthUnifiedProfileJiraFamiliarity>;
92742
93112
  jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
93113
+ matureExampleProjectIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
92743
93114
  persona?: InputMaybe<Scalars['String']['input']>;
92744
93115
  projectLandingSelection?: InputMaybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
92745
93116
  projectName?: InputMaybe<Scalars['String']['input']>;
@@ -92868,6 +93239,12 @@ export declare type GrowthUnifiedProfilePaidFeatureUsageResult = {
92868
93239
  featureName: Scalars['String']['output'];
92869
93240
  featureSupportedEdition: Array<GrowthUnifiedProfileProductEdition>;
92870
93241
  featureType: GrowthUnifiedProfileFeatureType;
93242
+ usageSummary: Array<GrowthUnifiedProfilePaidFeatureUsageSummary>;
93243
+ };
93244
+ export declare type GrowthUnifiedProfilePaidFeatureUsageSummary = {
93245
+ __typename?: 'GrowthUnifiedProfilePaidFeatureUsageSummary';
93246
+ featureEngagementLevel: GrowthUnifiedProfileFeatureEngagementLevel;
93247
+ usageCount: Scalars['Int']['output'];
92871
93248
  };
92872
93249
  export declare enum GrowthUnifiedProfileProduct {
92873
93250
  Compass = "compass",
@@ -98610,6 +98987,26 @@ export declare type JiraBoardViewSettings = {
98610
98987
  swimlanesSupported?: InputMaybe<Scalars['Boolean']['input']>;
98611
98988
  textSearch?: InputMaybe<Scalars['String']['input']>;
98612
98989
  };
98990
+ export declare type JiraBoardViewSettingsCardOption = {
98991
+ __typename?: 'JiraBoardViewSettingsCardOption';
98992
+ enabled: Scalars['Boolean']['output'];
98993
+ id: Scalars['ID']['output'];
98994
+ };
98995
+ export declare type JiraBoardViewSettingsCardOptionEdge = {
98996
+ __typename?: 'JiraBoardViewSettingsCardOptionEdge';
98997
+ cursor?: Maybe<Scalars['String']['output']>;
98998
+ node?: Maybe<JiraBoardViewSettingsCardOption>;
98999
+ };
99000
+ export declare enum JiraBoardViewSettingsGroupBy {
99001
+ Assignee = "ASSIGNEE",
99002
+ Epic = "EPIC",
99003
+ None = "NONE",
99004
+ Projects = "PROJECTS",
99005
+ Queries = "QUERIES",
99006
+ Spaces = "SPACES",
99007
+ Stories = "STORIES",
99008
+ Unset = "UNSET"
99009
+ }
98613
99010
  export declare type JiraBoardViewStatus = {
98614
99011
  __typename?: 'JiraBoardViewStatus';
98615
99012
  associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
@@ -103581,6 +103978,7 @@ export declare type JiraGradientBackground = JiraBackground & {
103581
103978
  };
103582
103979
  export declare type JiraGrantTypeKey = {
103583
103980
  __typename?: 'JiraGrantTypeKey';
103981
+ grantsPerPermissionLimit?: Maybe<Scalars['Int']['output']>;
103584
103982
  key: JiraGrantTypeKeyEnum;
103585
103983
  name: Scalars['String']['output'];
103586
103984
  };
@@ -107397,6 +107795,30 @@ export declare enum JiraJqlViewContext {
107397
107795
  Jwm = "JWM",
107398
107796
  ShadowRequest = "SHADOW_REQUEST"
107399
107797
  }
107798
+ export declare type JiraJswBoardViewSettings = {
107799
+ __typename?: 'JiraJswBoardViewSettings';
107800
+ cardOptions?: Maybe<JiraJswBoardViewSettingsCardOptionConnection>;
107801
+ groupBy?: Maybe<JiraBoardViewSettingsGroupBy>;
107802
+ quickFilterToggle?: Maybe<Scalars['Boolean']['output']>;
107803
+ workSuggestionToggle?: Maybe<Scalars['Boolean']['output']>;
107804
+ };
107805
+ export declare type JiraJswBoardViewSettingsCardOptionsArgs = {
107806
+ after?: InputMaybe<Scalars['String']['input']>;
107807
+ first?: InputMaybe<Scalars['Int']['input']>;
107808
+ };
107809
+ export declare type JiraJswBoardViewSettingsCardOptionConnection = {
107810
+ __typename?: 'JiraJswBoardViewSettingsCardOptionConnection';
107811
+ edges?: Maybe<Array<Maybe<JiraBoardViewSettingsCardOptionEdge>>>;
107812
+ errors?: Maybe<Array<QueryError>>;
107813
+ pageInfo?: Maybe<PageInfo>;
107814
+ };
107815
+ export declare type JiraJswBoardViewSettingsCardOptionInput = {
107816
+ enabled: Scalars['Boolean']['input'];
107817
+ id: Scalars['ID']['input'];
107818
+ };
107819
+ export declare type JiraJswBoardViewSettingsQueryInput = {
107820
+ viewId: Scalars['ID']['input'];
107821
+ };
107400
107822
  export declare type JiraJwmField = {
107401
107823
  __typename?: 'JiraJwmField';
107402
107824
  encryptedData?: Maybe<Scalars['String']['output']>;
@@ -109212,7 +109634,6 @@ export declare enum JiraNavigationItemTypeKey {
109212
109634
  Requests = "REQUESTS",
109213
109635
  Security = "SECURITY",
109214
109636
  Shortcuts = "SHORTCUTS",
109215
- Staffing = "STAFFING",
109216
109637
  Summary = "SUMMARY",
109217
109638
  Teams = "TEAMS",
109218
109639
  Timeline = "TIMELINE"
@@ -110100,6 +110521,7 @@ export declare type JiraPermissionGrants = {
110100
110521
  __typename?: 'JiraPermissionGrants';
110101
110522
  grantType: JiraGrantTypeKey;
110102
110523
  grantValues?: Maybe<Array<JiraPermissionGrantValue>>;
110524
+ grantsPerPermissionLimit?: Maybe<Scalars['Int']['output']>;
110103
110525
  totalCount?: Maybe<Scalars['Int']['output']>;
110104
110526
  };
110105
110527
  export declare type JiraPermissionLevel = {
@@ -115600,6 +116022,10 @@ export declare type JiraSetBoardViewWorkflowSelectedPayload = Payload & {
115600
116022
  errors?: Maybe<Array<MutationError>>;
115601
116023
  success: Scalars['Boolean']['output'];
115602
116024
  };
116025
+ export declare type JiraSetCalendarViewFilterInput = {
116026
+ jql: Scalars['String']['input'];
116027
+ viewId: Scalars['ID']['input'];
116028
+ };
115603
116029
  export declare type JiraSetCapacityMostRecentSubRouteInput = {
115604
116030
  cloudId: Scalars['ID']['input'];
115605
116031
  scopeId: Scalars['ID']['input'];
@@ -115767,6 +116193,24 @@ export declare type JiraSetIssueSearchViewLayoutPayload = Payload & {
115767
116193
  errors?: Maybe<Array<MutationError>>;
115768
116194
  success: Scalars['Boolean']['output'];
115769
116195
  };
116196
+ export declare type JiraSetJswBoardViewSettingCardOptionsInput = {
116197
+ cardOptions: Array<JiraJswBoardViewSettingsCardOptionInput>;
116198
+ viewId: Scalars['ID']['input'];
116199
+ };
116200
+ export declare type JiraSetJswBoardViewSettingGroupByInput = {
116201
+ groupBy: JiraBoardViewSettingsGroupBy;
116202
+ viewId: Scalars['ID']['input'];
116203
+ };
116204
+ export declare type JiraSetJswBoardViewSettingsPayload = Payload & {
116205
+ __typename?: 'JiraSetJswBoardViewSettingsPayload';
116206
+ errors?: Maybe<Array<MutationError>>;
116207
+ jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
116208
+ success: Scalars['Boolean']['output'];
116209
+ };
116210
+ export declare type JiraSetJswBoardViewSettingsToggleInput = {
116211
+ enabled: Scalars['Boolean']['input'];
116212
+ viewId: Scalars['ID']['input'];
116213
+ };
115770
116214
  export declare type JiraSetLogoInput = {
115771
116215
  cloudId: Scalars['ID']['input'];
115772
116216
  logoImageInput: JiraLookAndFeelImageInput;
@@ -117363,6 +117807,16 @@ export declare type JiraTownsquareProject = {
117363
117807
  state?: Maybe<Scalars['String']['output']>;
117364
117808
  workspaceAri?: Maybe<Scalars['String']['output']>;
117365
117809
  };
117810
+ export declare type JiraTownsquareProjectEntry = {
117811
+ __typename?: 'JiraTownsquareProjectEntry';
117812
+ hasPermission?: Maybe<Scalars['Boolean']['output']>;
117813
+ iconName?: Maybe<Scalars['String']['output']>;
117814
+ id?: Maybe<Scalars['String']['output']>;
117815
+ key?: Maybe<Scalars['String']['output']>;
117816
+ name?: Maybe<Scalars['String']['output']>;
117817
+ privateProject?: Maybe<Scalars['Boolean']['output']>;
117818
+ state?: Maybe<Scalars['String']['output']>;
117819
+ };
117366
117820
  export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
117367
117821
  __typename?: 'JiraTownsquareProjectField';
117368
117822
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -121423,6 +121877,13 @@ export declare type KitsuneSection = Node & {
121423
121877
  id: Scalars['ID']['output'];
121424
121878
  name: Scalars['String']['output'];
121425
121879
  updatedAt: Scalars['DateTime']['output'];
121880
+ views: KitsuneViewConnection;
121881
+ };
121882
+ export declare type KitsuneSectionViewsArgs = {
121883
+ after?: InputMaybe<Scalars['String']['input']>;
121884
+ before?: InputMaybe<Scalars['String']['input']>;
121885
+ first?: InputMaybe<Scalars['Int']['input']>;
121886
+ last?: InputMaybe<Scalars['Int']['input']>;
121426
121887
  };
121427
121888
  export declare type KitsuneSourceCategory = {
121428
121889
  __typename?: 'KitsuneSourceCategory';
@@ -121456,6 +121917,7 @@ export declare type KitsuneSpace = Node & {
121456
121917
  id: Scalars['ID']['output'];
121457
121918
  name?: Maybe<Scalars['String']['output']>;
121458
121919
  sourceCategories: KitsuneSourceCategoryConnection;
121920
+ viewTree: KitsuneViewTreeConnection;
121459
121921
  };
121460
121922
  export declare type KitsuneSpaceFeedbacksArgs = {
121461
121923
  pagination?: InputMaybe<KitsunePaginationInput>;
@@ -121466,6 +121928,12 @@ export declare type KitsuneSpaceFieldsArgs = {
121466
121928
  export declare type KitsuneSpaceSourceCategoriesArgs = {
121467
121929
  pagination?: InputMaybe<KitsunePaginationInput>;
121468
121930
  };
121931
+ export declare type KitsuneSpaceViewTreeArgs = {
121932
+ after?: InputMaybe<Scalars['String']['input']>;
121933
+ before?: InputMaybe<Scalars['String']['input']>;
121934
+ first?: InputMaybe<Scalars['Int']['input']>;
121935
+ last?: InputMaybe<Scalars['Int']['input']>;
121936
+ };
121469
121937
  export declare type KitsuneSpaceConnection = KitsuneConnection & {
121470
121938
  __typename?: 'KitsuneSpaceConnection';
121471
121939
  edges: Array<KitsuneSpaceEdge>;
@@ -121486,7 +121954,8 @@ export declare type KitsuneView = Node & {
121486
121954
  config?: Maybe<KitsuneViewConfig>;
121487
121955
  description?: Maybe<Scalars['String']['output']>;
121488
121956
  id: Scalars['ID']['output'];
121489
- name?: Maybe<Scalars['String']['output']>;
121957
+ name: Scalars['String']['output'];
121958
+ type: KitsuneViewType;
121490
121959
  };
121491
121960
  export declare type KitsuneViewConfig = {
121492
121961
  __typename?: 'KitsuneViewConfig';
@@ -121504,6 +121973,27 @@ export declare enum KitsuneViewConfigStatus {
121504
121973
  Published = "PUBLISHED",
121505
121974
  Saved = "SAVED"
121506
121975
  }
121976
+ export declare type KitsuneViewConnection = KitsuneConnection & {
121977
+ __typename?: 'KitsuneViewConnection';
121978
+ edges: Array<KitsuneViewEdge>;
121979
+ pageInfo: PageInfo;
121980
+ };
121981
+ export declare type KitsuneViewEdge = KitsuneEdge & {
121982
+ __typename?: 'KitsuneViewEdge';
121983
+ cursor: Scalars['String']['output'];
121984
+ node?: Maybe<KitsuneView>;
121985
+ };
121986
+ export declare type KitsuneViewTree = KitsuneSection | KitsuneView;
121987
+ export declare type KitsuneViewTreeConnection = KitsuneConnection & {
121988
+ __typename?: 'KitsuneViewTreeConnection';
121989
+ edges: Array<KitsuneViewTreeEdge>;
121990
+ pageInfo: PageInfo;
121991
+ };
121992
+ export declare type KitsuneViewTreeEdge = KitsuneEdge & {
121993
+ __typename?: 'KitsuneViewTreeEdge';
121994
+ cursor: Scalars['String']['output'];
121995
+ node?: Maybe<KitsuneViewTree>;
121996
+ };
121507
121997
  export declare enum KitsuneViewType {
121508
121998
  Dashboard = "DASHBOARD",
121509
121999
  List = "LIST",
@@ -128546,6 +129036,7 @@ export declare type MercuryFundsMutationApi = {
128546
129036
  createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
128547
129037
  deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
128548
129038
  deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
129039
+ updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
128549
129040
  updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
128550
129041
  updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
128551
129042
  };
@@ -128564,6 +129055,9 @@ export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
128564
129055
  export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
128565
129056
  input: MercuryDeleteInvestmentCategoryInput;
128566
129057
  };
129058
+ export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
129059
+ input: MercuryUpdateActiveCurrencyInput;
129060
+ };
128567
129061
  export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
128568
129062
  input: MercuryUpdateCostSubtypeNameInput;
128569
129063
  };
@@ -128572,6 +129066,7 @@ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
128572
129066
  };
128573
129067
  export declare type MercuryFundsQueryApi = {
128574
129068
  __typename?: 'MercuryFundsQueryApi';
129069
+ activeCurrency: MercuryCurrency;
128575
129070
  activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
128576
129071
  costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
128577
129072
  costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
@@ -128581,6 +129076,10 @@ export declare type MercuryFundsQueryApi = {
128581
129076
  fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
128582
129077
  focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
128583
129078
  investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
129079
+ investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
129080
+ };
129081
+ export declare type MercuryFundsQueryApiActiveCurrencyArgs = {
129082
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
128584
129083
  };
128585
129084
  export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
128586
129085
  cloudId?: InputMaybe<Scalars['ID']['input']>;
@@ -128619,6 +129118,13 @@ export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
128619
129118
  export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
128620
129119
  ids: Array<Scalars['ID']['input']>;
128621
129120
  };
129121
+ export declare type MercuryFundsQueryApiInvestmentCategoriesSearchArgs = {
129122
+ after?: InputMaybe<Scalars['String']['input']>;
129123
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
129124
+ first?: InputMaybe<Scalars['Int']['input']>;
129125
+ q?: InputMaybe<Scalars['String']['input']>;
129126
+ sort?: InputMaybe<Array<InputMaybe<MercuryInvestmentCategorySort>>>;
129127
+ };
128622
129128
  export declare enum MercuryFundsType {
128623
129129
  Actual = "ACTUAL",
128624
129130
  Budget = "BUDGET",
@@ -128733,10 +129239,28 @@ export declare type MercuryInvestmentCategory = Node & {
128733
129239
  updatedBy?: Maybe<User>;
128734
129240
  updatedDate?: Maybe<Scalars['DateTime']['output']>;
128735
129241
  };
129242
+ export declare type MercuryInvestmentCategoryConnection = {
129243
+ __typename?: 'MercuryInvestmentCategoryConnection';
129244
+ edges?: Maybe<Array<MercuryInvestmentCategoryEdge>>;
129245
+ pageInfo: PageInfo;
129246
+ totalCount?: Maybe<Scalars['Int']['output']>;
129247
+ };
129248
+ export declare type MercuryInvestmentCategoryEdge = {
129249
+ __typename?: 'MercuryInvestmentCategoryEdge';
129250
+ cursor: Scalars['String']['output'];
129251
+ node?: Maybe<MercuryInvestmentCategory>;
129252
+ };
128736
129253
  export declare type MercuryInvestmentCategoryReferences = {
128737
129254
  __typename?: 'MercuryInvestmentCategoryReferences';
128738
129255
  count?: Maybe<Scalars['Int']['output']>;
128739
129256
  };
129257
+ export declare type MercuryInvestmentCategorySort = {
129258
+ field: MercuryInvestmentCategorySortField;
129259
+ order: SortOrder;
129260
+ };
129261
+ export declare enum MercuryInvestmentCategorySortField {
129262
+ Name = "NAME"
129263
+ }
128740
129264
  export declare type MercuryInviteInput = {
128741
129265
  cloudId: Scalars['ID']['input'];
128742
129266
  userId: Scalars['ID']['input'];
@@ -130643,6 +131167,16 @@ export declare type MercuryUnrankChangeProposalInViewPayload = Payload & {
130643
131167
  success: Scalars['Boolean']['output'];
130644
131168
  updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
130645
131169
  };
131170
+ export declare type MercuryUpdateActiveCurrencyInput = {
131171
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
131172
+ currencyCode: Scalars['String']['input'];
131173
+ };
131174
+ export declare type MercuryUpdateActiveCurrencyPayload = Payload & {
131175
+ __typename?: 'MercuryUpdateActiveCurrencyPayload';
131176
+ errors?: Maybe<Array<MutationError>>;
131177
+ success: Scalars['Boolean']['output'];
131178
+ updatedActiveCurrency?: Maybe<MercuryCurrency>;
131179
+ };
130646
131180
  export declare type MercuryUpdateChangeFocusAreaInput = {
130647
131181
  focusAreaId?: InputMaybe<Scalars['ID']['input']>;
130648
131182
  };
@@ -131321,12 +131855,21 @@ export declare type Mutation = {
131321
131855
  agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
131322
131856
  agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
131323
131857
  agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
131858
+ agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalog>;
131859
+ agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogType>;
131324
131860
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
131861
+ agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkill>;
131862
+ agentWorkspace_deleteCatalog?: Maybe<Scalars['Boolean']['output']>;
131863
+ agentWorkspace_deleteCatalogType?: Maybe<Scalars['Boolean']['output']>;
131325
131864
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
131865
+ agentWorkspace_deleteSkill?: Maybe<Scalars['Boolean']['output']>;
131326
131866
  agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
131327
131867
  agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
131328
131868
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
131869
+ agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalog>;
131870
+ agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogType>;
131329
131871
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
131872
+ agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkill>;
131330
131873
  appRecommendations?: Maybe<AppRecMutation>;
131331
131874
  appStorage?: Maybe<AppStorageMutation>;
131332
131875
  appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
@@ -131896,6 +132439,7 @@ export declare type Mutation = {
131896
132439
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
131897
132440
  jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
131898
132441
  jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
132442
+ jira_setCalendarViewFilter?: Maybe<JiraUpdateCalendarViewConfigPayload>;
131899
132443
  jira_setCapacityMostRecentSubRoute?: Maybe<JiraSetCapacityMostRecentSubRoutePayload>;
131900
132444
  jira_setCustomFieldTranslation?: Maybe<JiraSetCustomFieldTranslationPayload>;
131901
132445
  jira_setFavicon?: Maybe<JiraSetFaviconPayload>;
@@ -131910,6 +132454,10 @@ export declare type Mutation = {
131910
132454
  jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
131911
132455
  jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
131912
132456
  jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
132457
+ jira_setJswBoardCardOptions?: Maybe<JiraSetJswBoardViewSettingsPayload>;
132458
+ jira_setJswBoardGroupBy?: Maybe<JiraSetJswBoardViewSettingsPayload>;
132459
+ jira_setJswBoardQuickFilterToggle?: Maybe<JiraSetJswBoardViewSettingsPayload>;
132460
+ jira_setJswBoardWorkSuggestionToggle?: Maybe<JiraSetJswBoardViewSettingsPayload>;
131913
132461
  jira_setLogo?: Maybe<JiraSetLogoPayload>;
131914
132462
  jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
131915
132463
  jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
@@ -131951,6 +132499,7 @@ export declare type Mutation = {
131951
132499
  kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
131952
132500
  kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
131953
132501
  kitsune_removeSection?: Maybe<KitsuneSection>;
132502
+ kitsune_removeView?: Maybe<GenericMutationResponse>;
131954
132503
  kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
131955
132504
  kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
131956
132505
  kitsune_updateSection?: Maybe<KitsuneSection>;
@@ -132531,12 +133080,33 @@ export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
132531
133080
  productType: AgentStudioProductType;
132532
133081
  projectContainerAri: Scalars['ID']['input'];
132533
133082
  };
133083
+ export declare type MutationAgentWorkspace_CreateCatalogArgs = {
133084
+ input: AgentWorkspaceCreateCatalogInput;
133085
+ };
133086
+ export declare type MutationAgentWorkspace_CreateCatalogTypeArgs = {
133087
+ input: AgentWorkspaceCreateCatalogTypeInput;
133088
+ };
132534
133089
  export declare type MutationAgentWorkspace_CreateScheduleArgs = {
132535
133090
  input: AgentWorkspaceCreateScheduleInput;
132536
133091
  };
133092
+ export declare type MutationAgentWorkspace_CreateSkillArgs = {
133093
+ input: AgentWorkspaceCreateSkillInput;
133094
+ };
133095
+ export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
133096
+ cloudId: Scalars['ID']['input'];
133097
+ id: Scalars['ID']['input'];
133098
+ };
133099
+ export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
133100
+ cloudId: Scalars['ID']['input'];
133101
+ id: Scalars['ID']['input'];
133102
+ };
132537
133103
  export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
132538
133104
  input: AgentWorkspaceDeleteScheduleInput;
132539
133105
  };
133106
+ export declare type MutationAgentWorkspace_DeleteSkillArgs = {
133107
+ cloudId: Scalars['ID']['input'];
133108
+ id: Scalars['ID']['input'];
133109
+ };
132540
133110
  export declare type MutationAgentWorkspace_EndBreakArgs = {
132541
133111
  agentId: Scalars['ID']['input'];
132542
133112
  cloudId: Scalars['ID']['input'];
@@ -132548,9 +133118,18 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
132548
133118
  agentId: Scalars['ID']['input'];
132549
133119
  cloudId: Scalars['ID']['input'];
132550
133120
  };
133121
+ export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
133122
+ input: AgentWorkspaceUpdateCatalogInput;
133123
+ };
133124
+ export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
133125
+ input: AgentWorkspaceUpdateCatalogTypeInput;
133126
+ };
132551
133127
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
132552
133128
  input: AgentWorkspaceUpdateScheduleInput;
132553
133129
  };
133130
+ export declare type MutationAgentWorkspace_UpdateSkillArgs = {
133131
+ input: AgentWorkspaceUpdateSkillInput;
133132
+ };
132554
133133
  export declare type MutationAppStorage_AdminArgs = {
132555
133134
  appId: Scalars['ID']['input'];
132556
133135
  };
@@ -134540,6 +135119,9 @@ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
134540
135119
  export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
134541
135120
  input: JiraSetBoardViewWorkflowSelectedInput;
134542
135121
  };
135122
+ export declare type MutationJira_SetCalendarViewFilterArgs = {
135123
+ input: JiraSetCalendarViewFilterInput;
135124
+ };
134543
135125
  export declare type MutationJira_SetCapacityMostRecentSubRouteArgs = {
134544
135126
  input: JiraSetCapacityMostRecentSubRouteInput;
134545
135127
  };
@@ -134585,6 +135167,18 @@ export declare type MutationJira_SetIssueSearchJqlArgs = {
134585
135167
  export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
134586
135168
  input: JiraSetIssueSearchViewLayoutInput;
134587
135169
  };
135170
+ export declare type MutationJira_SetJswBoardCardOptionsArgs = {
135171
+ input: JiraSetJswBoardViewSettingCardOptionsInput;
135172
+ };
135173
+ export declare type MutationJira_SetJswBoardGroupByArgs = {
135174
+ input: JiraSetJswBoardViewSettingGroupByInput;
135175
+ };
135176
+ export declare type MutationJira_SetJswBoardQuickFilterToggleArgs = {
135177
+ input: JiraSetJswBoardViewSettingsToggleInput;
135178
+ };
135179
+ export declare type MutationJira_SetJswBoardWorkSuggestionToggleArgs = {
135180
+ input: JiraSetJswBoardViewSettingsToggleInput;
135181
+ };
134588
135182
  export declare type MutationJira_SetLogoArgs = {
134589
135183
  input: JiraSetLogoInput;
134590
135184
  };
@@ -134729,6 +135323,9 @@ export declare type MutationKitsune_RemoveFeedbackArgs = {
134729
135323
  export declare type MutationKitsune_RemoveSectionArgs = {
134730
135324
  sectionAri: Scalars['ID']['input'];
134731
135325
  };
135326
+ export declare type MutationKitsune_RemoveViewArgs = {
135327
+ viewAri: Scalars['ID']['input'];
135328
+ };
134732
135329
  export declare type MutationKitsune_SuggestSnippetsArgs = {
134733
135330
  title: Scalars['String']['input'];
134734
135331
  workspaceAri: Scalars['ID']['input'];
@@ -138816,10 +139413,16 @@ export declare type Query = {
138816
139413
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
138817
139414
  agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
138818
139415
  agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
139416
+ agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
139417
+ agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
139418
+ agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
139419
+ agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
138819
139420
  agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
138820
139421
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
138821
139422
  agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
138822
139423
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
139424
+ agentWorkspace_skill?: Maybe<AgentWorkspaceSkill>;
139425
+ agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
138823
139426
  aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
138824
139427
  aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
138825
139428
  aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
@@ -139415,12 +140018,14 @@ export declare type Query = {
139415
140018
  jira_fieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
139416
140019
  jira_fieldsPerSchemeLimit?: Maybe<Scalars['Int']['output']>;
139417
140020
  jira_isAgentAssignable?: Maybe<Scalars['Boolean']['output']>;
140021
+ jira_isBetaAiFeaturesEnabled?: Maybe<Scalars['Boolean']['output']>;
139418
140022
  jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
139419
140023
  jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
139420
140024
  jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
139421
140025
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
139422
140026
  jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
139423
140027
  jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
140028
+ jira_jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
139424
140029
  jira_lookAndFeel?: Maybe<JiraLookAndFeel>;
139425
140030
  jira_mergeIssuesOperationProgress?: Maybe<JiraMergeIssuesOperationProgressResult>;
139426
140031
  jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
@@ -139666,6 +140271,9 @@ export declare type Query = {
139666
140271
  smarts?: Maybe<SmartsQueryApi>;
139667
140272
  socialSignals?: Maybe<SocialSignalsApi>;
139668
140273
  softwareBoards?: Maybe<BoardScopeConnection>;
140274
+ softwareCatalog_servicesWithActiveIncidents?: Maybe<SoftwareCatalogSearchResult>;
140275
+ softwareCatalog_servicesWithOpenAlerts?: Maybe<SoftwareCatalogSearchResult>;
140276
+ softwareCatalog_servicesWithUpcomingChanges?: Maybe<SoftwareCatalogSearchResult>;
139669
140277
  spaViewContext?: Maybe<SpaViewModel>;
139670
140278
  space?: Maybe<Space>;
139671
140279
  spaceContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
@@ -139854,25 +140462,25 @@ export declare type QueryAdmin_AppModulesArgs = {
139854
140462
  export declare type QueryAdmin_AuditLogEventActionsArgs = {
139855
140463
  after?: InputMaybe<Scalars['String']['input']>;
139856
140464
  before?: InputMaybe<Scalars['String']['input']>;
140465
+ container: AdminAuditLogContainer;
139857
140466
  first?: InputMaybe<Scalars['Int']['input']>;
139858
140467
  last?: InputMaybe<Scalars['Int']['input']>;
139859
- orgId: Scalars['ID']['input'];
139860
140468
  };
139861
140469
  export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
139862
140470
  after?: InputMaybe<Scalars['String']['input']>;
139863
140471
  before?: InputMaybe<Scalars['String']['input']>;
140472
+ container: AdminAuditLogContainer;
139864
140473
  filter?: InputMaybe<Scalars['String']['input']>;
139865
140474
  first?: InputMaybe<Scalars['Int']['input']>;
139866
140475
  last?: InputMaybe<Scalars['Int']['input']>;
139867
- orgId: Scalars['ID']['input'];
139868
140476
  };
139869
140477
  export declare type QueryAdmin_AuditLogEventLocationsArgs = {
139870
140478
  after?: InputMaybe<Scalars['String']['input']>;
139871
140479
  before?: InputMaybe<Scalars['String']['input']>;
140480
+ container: AdminAuditLogContainer;
139872
140481
  filter?: InputMaybe<Scalars['String']['input']>;
139873
140482
  first?: InputMaybe<Scalars['Int']['input']>;
139874
140483
  last?: InputMaybe<Scalars['Int']['input']>;
139875
- orgId: Scalars['ID']['input'];
139876
140484
  };
139877
140485
  export declare type QueryAdmin_AuditLogEventsArgs = {
139878
140486
  after?: InputMaybe<Scalars['String']['input']>;
@@ -140305,6 +140913,26 @@ export declare type QueryAgentWorkspace_AvailabilityArgs = {
140305
140913
  export declare type QueryAgentWorkspace_CapacityArgs = {
140306
140914
  input: AgentWorkspaceCapacityInput;
140307
140915
  };
140916
+ export declare type QueryAgentWorkspace_CatalogArgs = {
140917
+ cloudId: Scalars['ID']['input'];
140918
+ id: Scalars['ID']['input'];
140919
+ };
140920
+ export declare type QueryAgentWorkspace_CatalogTypeArgs = {
140921
+ cloudId: Scalars['ID']['input'];
140922
+ id: Scalars['ID']['input'];
140923
+ };
140924
+ export declare type QueryAgentWorkspace_CatalogTypesArgs = {
140925
+ cloudId: Scalars['ID']['input'];
140926
+ filter?: InputMaybe<AgentWorkspaceCatalogTypeFilter>;
140927
+ page?: InputMaybe<Scalars['Int']['input']>;
140928
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
140929
+ };
140930
+ export declare type QueryAgentWorkspace_CatalogsArgs = {
140931
+ cloudId: Scalars['ID']['input'];
140932
+ filter?: InputMaybe<AgentWorkspaceCatalogFilter>;
140933
+ page?: InputMaybe<Scalars['Int']['input']>;
140934
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
140935
+ };
140308
140936
  export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
140309
140937
  cloudId: Scalars['ID']['input'];
140310
140938
  projectKey: Scalars['String']['input'];
@@ -140325,6 +140953,16 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
140325
140953
  first?: InputMaybe<Scalars['Int']['input']>;
140326
140954
  input: AgentWorkspaceShiftsQueryInput;
140327
140955
  };
140956
+ export declare type QueryAgentWorkspace_SkillArgs = {
140957
+ cloudId: Scalars['ID']['input'];
140958
+ id: Scalars['ID']['input'];
140959
+ };
140960
+ export declare type QueryAgentWorkspace_SkillsArgs = {
140961
+ cloudId: Scalars['ID']['input'];
140962
+ filter?: InputMaybe<AgentWorkspaceSkillFilter>;
140963
+ page?: InputMaybe<Scalars['Int']['input']>;
140964
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
140965
+ };
140328
140966
  export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
140329
140967
  projectAri: Scalars['ID']['input'];
140330
140968
  };
@@ -141381,7 +142019,7 @@ export declare type QueryConfluence_GetActiveWorkflowApplicationArgs = {
141381
142019
  cloudId: Scalars['ID']['input'];
141382
142020
  contentId: Scalars['Long']['input'];
141383
142021
  contentStatus: Scalars['String']['input'];
141384
- contentVersion: Scalars['Int']['input'];
142022
+ contentVersion?: InputMaybe<Scalars['Int']['input']>;
141385
142023
  fetchWorkflowReview?: InputMaybe<Scalars['Boolean']['input']>;
141386
142024
  workflowId: Scalars['Long']['input'];
141387
142025
  };
@@ -142949,6 +143587,9 @@ export declare type QueryJira_IsAgentAssignableArgs = {
142949
143587
  agentInput: JiraAgentAssignableInput;
142950
143588
  cloudId: Scalars['ID']['input'];
142951
143589
  };
143590
+ export declare type QueryJira_IsBetaAiFeaturesEnabledArgs = {
143591
+ cloudId: Scalars['ID']['input'];
143592
+ };
142952
143593
  export declare type QueryJira_IsRovoLlmEnabledArgs = {
142953
143594
  cloudId: Scalars['ID']['input'];
142954
143595
  };
@@ -142969,6 +143610,9 @@ export declare type QueryJira_IssuesByIdsArgs = {
142969
143610
  export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
142970
143611
  cloudId: Scalars['ID']['input'];
142971
143612
  };
143613
+ export declare type QueryJira_JswBoardViewSettingsArgs = {
143614
+ input: JiraJswBoardViewSettingsQueryInput;
143615
+ };
142972
143616
  export declare type QueryJira_LookAndFeelArgs = {
142973
143617
  cloudId: Scalars['ID']['input'];
142974
143618
  };
@@ -143836,6 +144480,21 @@ export declare type QuerySiteSettingsArgs = {
143836
144480
  export declare type QuerySoftwareBoardsArgs = {
143837
144481
  projectAri: Scalars['ID']['input'];
143838
144482
  };
144483
+ export declare type QuerySoftwareCatalog_ServicesWithActiveIncidentsArgs = {
144484
+ cloudId: Scalars['ID']['input'];
144485
+ limit?: InputMaybe<Scalars['Int']['input']>;
144486
+ offset?: InputMaybe<Scalars['Int']['input']>;
144487
+ };
144488
+ export declare type QuerySoftwareCatalog_ServicesWithOpenAlertsArgs = {
144489
+ cloudId: Scalars['ID']['input'];
144490
+ limit?: InputMaybe<Scalars['Int']['input']>;
144491
+ offset?: InputMaybe<Scalars['Int']['input']>;
144492
+ };
144493
+ export declare type QuerySoftwareCatalog_ServicesWithUpcomingChangesArgs = {
144494
+ cloudId: Scalars['ID']['input'];
144495
+ limit?: InputMaybe<Scalars['Int']['input']>;
144496
+ offset?: InputMaybe<Scalars['Int']['input']>;
144497
+ };
143839
144498
  export declare type QuerySpaceArgs = {
143840
144499
  cloudId?: InputMaybe<Scalars['ID']['input']>;
143841
144500
  id?: InputMaybe<Scalars['ID']['input']>;
@@ -167541,6 +168200,7 @@ export declare type SoftwareCard = {
167541
168200
  priority?: Maybe<CardPriority>;
167542
168201
  status?: Maybe<CardStatus>;
167543
168202
  summary?: Maybe<Scalars['String']['output']>;
168203
+ townsquareProjectId?: Maybe<Scalars['String']['output']>;
167544
168204
  type?: Maybe<CardType>;
167545
168205
  };
167546
168206
  export declare type SoftwareCardChildrenInfo = {
@@ -167585,6 +168245,13 @@ export declare enum SoftwareCardsDestinationEnum {
167585
168245
  ExistingSprint = "EXISTING_SPRINT",
167586
168246
  NewSprint = "NEW_SPRINT"
167587
168247
  }
168248
+ export declare type SoftwareCatalogSearchResult = {
168249
+ __typename?: 'SoftwareCatalogSearchResult';
168250
+ items?: Maybe<Array<Maybe<AssetsServiceObject>>>;
168251
+ limit: Scalars['Int']['output'];
168252
+ offset: Scalars['Int']['output'];
168253
+ totalCount: Scalars['Int']['output'];
168254
+ };
167588
168255
  export declare type SoftwareOperation = {
167589
168256
  __typename?: 'SoftwareOperation';
167590
168257
  icon?: Maybe<Icon>;
@@ -171518,6 +172185,7 @@ export declare type TeamMutation = {
171518
172185
  setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
171519
172186
  setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
171520
172187
  unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
172188
+ updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
171521
172189
  updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
171522
172190
  updateTeam?: Maybe<TeamUpdatePayload>;
171523
172191
  updateType?: Maybe<TeamType>;
@@ -171595,6 +172263,10 @@ export declare type TeamMutationUnlinkCustomFieldFromOptionArgs = {
171595
172263
  customFieldValueId: Scalars['ID']['input'];
171596
172264
  teamId: Scalars['ID']['input'];
171597
172265
  };
172266
+ export declare type TeamMutationUpdateCustomFieldArgs = {
172267
+ customFieldData: TeamUpdateCustomFieldPayload;
172268
+ id: Scalars['ID']['input'];
172269
+ };
171598
172270
  export declare type TeamMutationUpdateRoleAssignmentsArgs = {
171599
172271
  organizationId: Scalars['ID']['input'];
171600
172272
  principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
@@ -171859,6 +172531,10 @@ export declare type TeamTypeUpdatePayload = {
171859
172531
  description?: InputMaybe<Scalars['String']['input']>;
171860
172532
  name?: InputMaybe<Scalars['String']['input']>;
171861
172533
  };
172534
+ export declare type TeamUpdateCustomFieldPayload = {
172535
+ description?: InputMaybe<Scalars['String']['input']>;
172536
+ name?: InputMaybe<Scalars['String']['input']>;
172537
+ };
171862
172538
  export declare type TeamUpdatePayload = Payload & {
171863
172539
  __typename?: 'TeamUpdatePayload';
171864
172540
  errors?: Maybe<Array<MutationError>>;
@@ -172942,6 +173618,7 @@ export declare type TownsquareGoal = Node & {
172942
173618
  latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
172943
173619
  latestUserUpdate?: Maybe<TownsquareGoalUpdate>;
172944
173620
  metricTargets?: Maybe<TownsquareMetricTargetConnection>;
173621
+ msteamsChannels?: Maybe<TownsquareMsteamsConnectedChannelConnection>;
172945
173622
  name: Scalars['String']['output'];
172946
173623
  owner?: Maybe<User>;
172947
173624
  parentGoal?: Maybe<TownsquareGoal>;
@@ -173005,6 +173682,10 @@ export declare type TownsquareGoalMetricTargetsArgs = {
173005
173682
  after?: InputMaybe<Scalars['String']['input']>;
173006
173683
  first?: InputMaybe<Scalars['Int']['input']>;
173007
173684
  };
173685
+ export declare type TownsquareGoalMsteamsChannelsArgs = {
173686
+ after?: InputMaybe<Scalars['String']['input']>;
173687
+ first?: InputMaybe<Scalars['Int']['input']>;
173688
+ };
173008
173689
  export declare type TownsquareGoalParentGoalSuggestionsArgs = {
173009
173690
  after?: InputMaybe<Scalars['String']['input']>;
173010
173691
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -174121,6 +174802,44 @@ export declare enum TownsquareMetricValueSortEnum {
174121
174802
  TimeAsc = "TIME_ASC",
174122
174803
  TimeDesc = "TIME_DESC"
174123
174804
  }
174805
+ export declare type TownsquareMsteamsConnectedChannelChannelInfo = {
174806
+ __typename?: 'TownsquareMsteamsConnectedChannelChannelInfo';
174807
+ channelId?: Maybe<Scalars['String']['output']>;
174808
+ displayName?: Maybe<Scalars['String']['output']>;
174809
+ isPrivate?: Maybe<Scalars['Boolean']['output']>;
174810
+ membershipType?: Maybe<Scalars['String']['output']>;
174811
+ };
174812
+ export declare type TownsquareMsteamsConnectedChannelConnection = {
174813
+ __typename?: 'TownsquareMsteamsConnectedChannelConnection';
174814
+ edges?: Maybe<Array<Maybe<TownsquareMsteamsConnectedChannelEdge>>>;
174815
+ pageInfo: PageInfo;
174816
+ };
174817
+ export declare type TownsquareMsteamsConnectedChannelEdge = {
174818
+ __typename?: 'TownsquareMsteamsConnectedChannelEdge';
174819
+ cursor: Scalars['String']['output'];
174820
+ node?: Maybe<TownsquareMsteamsConnectedChannelInfo>;
174821
+ };
174822
+ export declare type TownsquareMsteamsConnectedChannelInfo = {
174823
+ __typename?: 'TownsquareMsteamsConnectedChannelInfo';
174824
+ channel?: Maybe<TownsquareMsteamsConnectedChannelChannelInfo>;
174825
+ creationDate?: Maybe<Scalars['DateTime']['output']>;
174826
+ subscriber?: Maybe<User>;
174827
+ team?: Maybe<TownsquareMsteamsConnectedChannelTeamInfo>;
174828
+ tenant?: Maybe<TownsquareMsteamsConnectedChannelTenantInfo>;
174829
+ };
174830
+ export declare type TownsquareMsteamsConnectedChannelTeamInfo = {
174831
+ __typename?: 'TownsquareMsteamsConnectedChannelTeamInfo';
174832
+ displayName?: Maybe<Scalars['String']['output']>;
174833
+ internalId?: Maybe<Scalars['String']['output']>;
174834
+ isPrivate?: Maybe<Scalars['Boolean']['output']>;
174835
+ visibility?: Maybe<Scalars['String']['output']>;
174836
+ };
174837
+ export declare type TownsquareMsteamsConnectedChannelTenantInfo = {
174838
+ __typename?: 'TownsquareMsteamsConnectedChannelTenantInfo';
174839
+ displayName?: Maybe<Scalars['String']['output']>;
174840
+ isUserLoggedIn?: Maybe<Scalars['Boolean']['output']>;
174841
+ microsoftTenantId?: Maybe<Scalars['String']['output']>;
174842
+ };
174124
174843
  export declare type TownsquareMutationApi = {
174125
174844
  __typename?: 'TownsquareMutationApi';
174126
174845
  archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
@@ -174238,6 +174957,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
174238
174957
  mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
174239
174958
  mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
174240
174959
  mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
174960
+ msteamsChannels?: Maybe<TownsquareMsteamsConnectedChannelConnection>;
174241
174961
  name: Scalars['String']['output'];
174242
174962
  owner?: Maybe<User>;
174243
174963
  risks?: Maybe<TownsquareRiskConnection>;
@@ -174314,6 +175034,10 @@ export declare type TownsquareProjectMembersArgs = {
174314
175034
  after?: InputMaybe<Scalars['String']['input']>;
174315
175035
  first?: InputMaybe<Scalars['Int']['input']>;
174316
175036
  };
175037
+ export declare type TownsquareProjectMsteamsChannelsArgs = {
175038
+ after?: InputMaybe<Scalars['String']['input']>;
175039
+ first?: InputMaybe<Scalars['Int']['input']>;
175040
+ };
174317
175041
  export declare type TownsquareProjectRisksArgs = {
174318
175042
  after?: InputMaybe<Scalars['String']['input']>;
174319
175043
  createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
@@ -176231,6 +176955,7 @@ export declare type TrelloBoard = Node & TrelloBaseBoard & {
176231
176955
  __typename?: 'TrelloBoard';
176232
176956
  closed: Scalars['Boolean']['output'];
176233
176957
  creationMethod?: Maybe<Scalars['String']['output']>;
176958
+ creationMethodLoadingStartedAt?: Maybe<Scalars['DateTime']['output']>;
176234
176959
  creator?: Maybe<TrelloMember>;
176235
176960
  customFields?: Maybe<TrelloCustomFieldConnection>;
176236
176961
  description?: Maybe<TrelloUserGeneratedText>;
@@ -177616,16 +178341,7 @@ export declare type TrelloGenerateCheckItemsForCardInput = {
177616
178341
  };
177617
178342
  export declare type TrelloGenerateCheckItemsForCardPayload = {
177618
178343
  __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>;
178344
+ card?: Maybe<TrelloBaseCard>;
177629
178345
  errors?: Maybe<Array<MutationError>>;
177630
178346
  success: Scalars['Boolean']['output'];
177631
178347
  };
@@ -178292,7 +179008,6 @@ export declare type TrelloMutationApi = {
178292
179008
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
178293
179009
  generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
178294
179010
  generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
178295
- generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
178296
179011
  markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
178297
179012
  markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
178298
179013
  mergeCards?: Maybe<TrelloMergeCardsPayload>;
@@ -178316,6 +179031,7 @@ export declare type TrelloMutationApi = {
178316
179031
  sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
178317
179032
  sortListCards?: Maybe<TrelloSortListCardsPayload>;
178318
179033
  submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
179034
+ toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
178319
179035
  unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
178320
179036
  unwatchCard?: Maybe<TrelloWatchCardPayload>;
178321
179037
  updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
@@ -178410,9 +179126,6 @@ export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
178410
179126
  export declare type TrelloMutationApiGenerateCheckItemsForCardArgs = {
178411
179127
  input: TrelloGenerateCheckItemsForCardInput;
178412
179128
  };
178413
- export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
178414
- input: TrelloGenerateChecklistsForCardInput;
178415
- };
178416
179129
  export declare type TrelloMutationApiMarkCardCompleteArgs = {
178417
179130
  input: TrelloMarkCardCompleteInput;
178418
179131
  };
@@ -178479,6 +179192,9 @@ export declare type TrelloMutationApiSortListCardsArgs = {
178479
179192
  export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
178480
179193
  input: TrelloCardBatchSpecificationInput;
178481
179194
  };
179195
+ export declare type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
179196
+ input: TrelloToggleLabsFeatureForMemberInput;
179197
+ };
178482
179198
  export declare type TrelloMutationApiUnarchiveCardArgs = {
178483
179199
  input: TrelloUnarchiveCardInput;
178484
179200
  };
@@ -178616,6 +179332,7 @@ export declare type TrelloPinCardPayload = Payload & {
178616
179332
  export declare type TrelloPlanner = {
178617
179333
  __typename?: 'TrelloPlanner';
178618
179334
  accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
179335
+ cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnection>;
178619
179336
  id: Scalars['ID']['output'];
178620
179337
  primaryAccountId?: Maybe<Scalars['ID']['output']>;
178621
179338
  primaryCalendarId?: Maybe<Scalars['ID']['output']>;
@@ -178626,10 +179343,21 @@ export declare type TrelloPlannerAccountsArgs = {
178626
179343
  after?: InputMaybe<Scalars['String']['input']>;
178627
179344
  first?: InputMaybe<Scalars['Int']['input']>;
178628
179345
  };
179346
+ export declare type TrelloPlannerCardsWithDueDatesArgs = {
179347
+ after?: InputMaybe<Scalars['String']['input']>;
179348
+ filter?: InputMaybe<TrelloPlannerCardsWithDueDatesFilter>;
179349
+ first?: InputMaybe<Scalars['Int']['input']>;
179350
+ };
178629
179351
  export declare type TrelloPlannerProposedEventsArgs = {
178630
179352
  after?: InputMaybe<Scalars['String']['input']>;
178631
179353
  first?: InputMaybe<Scalars['Int']['input']>;
178632
179354
  };
179355
+ export declare type TrelloPlannerBoardWithDueCards = {
179356
+ __typename?: 'TrelloPlannerBoardWithDueCards';
179357
+ board?: Maybe<TrelloBaseBoard>;
179358
+ id: Scalars['ID']['output'];
179359
+ lists?: Maybe<Array<TrelloPlannerListWithDueCards>>;
179360
+ };
178633
179361
  export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
178634
179362
  __typename?: 'TrelloPlannerCalendar';
178635
179363
  color?: Maybe<TrelloPlannerCalendarColor>;
@@ -178965,6 +179693,26 @@ export declare type TrelloPlannerCardUpdated = {
178965
179693
  list?: Maybe<TrelloPlannerCardListUpdated>;
178966
179694
  objectId?: Maybe<Scalars['ID']['output']>;
178967
179695
  };
179696
+ export declare type TrelloPlannerCardWithDueDate = {
179697
+ __typename?: 'TrelloPlannerCardWithDueDate';
179698
+ card?: Maybe<TrelloBaseCard>;
179699
+ id: Scalars['ID']['output'];
179700
+ };
179701
+ export declare type TrelloPlannerCardsWithDueDatesConnection = {
179702
+ __typename?: 'TrelloPlannerCardsWithDueDatesConnection';
179703
+ edges?: Maybe<Array<TrelloPlannerCardsWithDueDatesEdge>>;
179704
+ nodes?: Maybe<Array<TrelloPlannerBoardWithDueCards>>;
179705
+ pageInfo: PageInfo;
179706
+ };
179707
+ export declare type TrelloPlannerCardsWithDueDatesEdge = {
179708
+ __typename?: 'TrelloPlannerCardsWithDueDatesEdge';
179709
+ cursor?: Maybe<Scalars['String']['output']>;
179710
+ node?: Maybe<TrelloPlannerBoardWithDueCards>;
179711
+ };
179712
+ export declare type TrelloPlannerCardsWithDueDatesFilter = {
179713
+ dueEnd?: InputMaybe<Scalars['DateTime']['input']>;
179714
+ dueStart?: InputMaybe<Scalars['DateTime']['input']>;
179715
+ };
178968
179716
  export declare type TrelloPlannerEventCardConnection = {
178969
179717
  __typename?: 'TrelloPlannerEventCardConnection';
178970
179718
  calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
@@ -178996,6 +179744,12 @@ export declare enum TrelloPlannerEventTimeFilter {
178996
179744
  All = "ALL",
178997
179745
  Future = "FUTURE"
178998
179746
  }
179747
+ export declare type TrelloPlannerListWithDueCards = {
179748
+ __typename?: 'TrelloPlannerListWithDueCards';
179749
+ cards?: Maybe<Array<TrelloPlannerCardWithDueDate>>;
179750
+ id: Scalars['ID']['output'];
179751
+ list?: Maybe<TrelloList>;
179752
+ };
178999
179753
  export declare type TrelloPlannerProposedEventConnection = {
179000
179754
  __typename?: 'TrelloPlannerProposedEventConnection';
179001
179755
  edges?: Maybe<Array<TrelloPlannerProposedEventEdge>>;
@@ -179728,6 +180482,15 @@ export declare type TrelloTemplateGalleryLanguage = {
179728
180482
  locale: Scalars['String']['output'];
179729
180483
  localizedDescription: Scalars['String']['output'];
179730
180484
  };
180485
+ export declare type TrelloToggleLabsFeatureForMemberInput = {
180486
+ enabled: Scalars['Boolean']['input'];
180487
+ feature: TrelloLabsFeature;
180488
+ };
180489
+ export declare type TrelloToggleLabsFeatureForMemberPayload = Payload & {
180490
+ __typename?: 'TrelloToggleLabsFeatureForMemberPayload';
180491
+ errors?: Maybe<Array<MutationError>>;
180492
+ success: Scalars['Boolean']['output'];
180493
+ };
179731
180494
  export declare type TrelloUnarchiveCardInput = {
179732
180495
  cardId: Scalars['ID']['input'];
179733
180496
  };
@@ -180227,8 +180990,10 @@ export declare type TrelloWorkspaceUpdated = {
180227
180990
  __typename?: 'TrelloWorkspaceUpdated';
180228
180991
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
180229
180992
  description?: Maybe<Scalars['String']['output']>;
180993
+ displayName?: Maybe<Scalars['String']['output']>;
180230
180994
  enterprise?: Maybe<TrelloWorkspaceEnterpriseUpdated>;
180231
180995
  id: Scalars['ID']['output'];
180996
+ name?: Maybe<Scalars['String']['output']>;
180232
180997
  offering?: Maybe<Scalars['String']['output']>;
180233
180998
  onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
180234
180999
  planner?: Maybe<TrelloPlannerUpdated>;