@forge/cli-shared 8.9.1-next.3 → 8.9.1-next.4

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.
@@ -15420,6 +15420,11 @@ export declare type ConfluenceAttachmentSettings = {
15420
15420
  maxAttachmentSize?: Maybe<Scalars['Long']['output']>;
15421
15421
  maxAttachmentsPerUpload?: Maybe<Scalars['Int']['output']>;
15422
15422
  };
15423
+ export declare type ConfluenceAudioPreference = {
15424
+ __typename?: 'ConfluenceAudioPreference';
15425
+ length: ConfluenceLength;
15426
+ tone: ConfluenceTone;
15427
+ };
15423
15428
  export declare type ConfluenceBasicSpaceRole = {
15424
15429
  __typename?: 'ConfluenceBasicSpaceRole';
15425
15430
  description: Scalars['String']['output'];
@@ -15909,6 +15914,10 @@ export declare enum ConfluenceContentAccessRequestStatus {
15909
15914
  Pending = "PENDING",
15910
15915
  PendingSiteApproval = "PENDING_SITE_APPROVAL"
15911
15916
  }
15917
+ export declare type ConfluenceContentAccessRequested = {
15918
+ __typename?: 'ConfluenceContentAccessRequested';
15919
+ contentId?: Maybe<Scalars['ID']['output']>;
15920
+ };
15912
15921
  export declare type ConfluenceContentAnalyticsCountUserByContentType = {
15913
15922
  __typename?: 'ConfluenceContentAnalyticsCountUserByContentType';
15914
15923
  nodes: Array<ConfluenceCountGroupByContentItem>;
@@ -15979,6 +15988,7 @@ export declare type ConfluenceContentModified = {
15979
15988
  commentReopened?: Maybe<ConfluenceCommentUpdated>;
15980
15989
  commentResolved?: Maybe<ConfluenceCommentCreated>;
15981
15990
  commentUpdated?: Maybe<ConfluenceCommentUpdated>;
15991
+ contentAccessRequested?: Maybe<ConfluenceContentAccessRequested>;
15982
15992
  contentModeUpdated?: Maybe<ConfluenceContentModeUpdated>;
15983
15993
  contentRestrictionUpdated?: Maybe<ConfluenceContentRestrictionUpdated>;
15984
15994
  contentStateDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
@@ -17157,23 +17167,37 @@ export declare enum ConfluenceImportSpaceTaskState {
17157
17167
  }
17158
17168
  export declare enum ConfluenceImportStatus {
17159
17169
  CombinedManifests = "COMBINED_MANIFESTS",
17170
+ CombiningManifests = "COMBINING_MANIFESTS",
17160
17171
  Created = "CREATED",
17172
+ CreatedPagesAndSpaces = "CREATED_PAGES_AND_SPACES",
17161
17173
  CreatedSpace = "CREATED_SPACE",
17162
17174
  CreatingPagesAndSpaces = "CREATING_PAGES_AND_SPACES",
17175
+ CreatingSpace = "CREATING_SPACE",
17163
17176
  DetectedExportType = "DETECTED_EXPORT_TYPE",
17177
+ DetectingExportType = "DETECTING_EXPORT_TYPE",
17164
17178
  ExportedFrom_3P = "EXPORTED_FROM_3P",
17165
17179
  ExportingFrom_3P = "EXPORTING_FROM_3P",
17166
17180
  Failed = "FAILED",
17167
17181
  FetchedEntitiesToExport = "FETCHED_ENTITIES_TO_EXPORT",
17168
17182
  FetchedIdsFrom_3P = "FETCHED_IDS_FROM_3P",
17169
17183
  FetchingEntitiesToExport = "FETCHING_ENTITIES_TO_EXPORT",
17184
+ FetchingIdsFrom_3P = "FETCHING_IDS_FROM_3P",
17185
+ Finished = "FINISHED",
17170
17186
  ImportedUser = "IMPORTED_USER",
17171
17187
  ImportedWhiteboard = "IMPORTED_WHITEBOARD",
17188
+ ImportedWhiteboards = "IMPORTED_WHITEBOARDS",
17172
17189
  ImportingUser = "IMPORTING_USER",
17173
17190
  ImportingWhiteboards = "IMPORTING_WHITEBOARDS",
17174
17191
  NestedUnzipping = "NESTED_UNZIPPING",
17175
17192
  PartialFailed = "PARTIAL_FAILED",
17193
+ PreparedMetadata = "PREPARED_METADATA",
17194
+ PreparingMetadata = "PREPARING_METADATA",
17176
17195
  Queued = "QUEUED",
17196
+ RenamedExportFrom_3P = "RENAMED_EXPORT_FROM_3P",
17197
+ RenamingExportFrom_3P = "RENAMING_EXPORT_FROM_3P",
17198
+ SendingNotification = "SENDING_NOTIFICATION",
17199
+ Started = "STARTED",
17200
+ Success = "SUCCESS",
17177
17201
  Unzipped = "UNZIPPED",
17178
17202
  Unzipping = "UNZIPPING",
17179
17203
  Updated = "UPDATED",
@@ -22530,8 +22554,14 @@ export declare type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
22530
22554
  export declare type ConvoAiErrorMessage = ConvoAiAgentMessage & {
22531
22555
  __typename?: 'ConvoAiErrorMessage';
22532
22556
  contentSummary?: Maybe<Scalars['String']['output']>;
22557
+ messageTemplate: ConvoAiErrorMessageTemplate;
22558
+ statusCode: Scalars['Int']['output'];
22533
22559
  timeCreated: Scalars['DateTime']['output'];
22534
22560
  };
22561
+ export declare enum ConvoAiErrorMessageTemplate {
22562
+ AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS",
22563
+ Error = "ERROR"
22564
+ }
22535
22565
  export declare type ConvoAiHomeThread = {
22536
22566
  __typename?: 'ConvoAiHomeThread';
22537
22567
  conversationStarters?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -22791,7 +22821,7 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
22791
22821
  export declare type CplsCapacityPlanningPeopleView = {
22792
22822
  __typename?: 'CplsCapacityPlanningPeopleView';
22793
22823
  contributor?: Maybe<CplsContributor>;
22794
- contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
22824
+ contributorDataIds?: Maybe<CplsContributorDataIdConnection>;
22795
22825
  contributors: CplsContributorConnection;
22796
22826
  id: Scalars['ID']['output'];
22797
22827
  timeCells: Array<CplsTimeCell>;
@@ -22800,6 +22830,12 @@ export declare type CplsCapacityPlanningPeopleView = {
22800
22830
  export declare type CplsCapacityPlanningPeopleViewContributorArgs = {
22801
22831
  id: Scalars['ID']['input'];
22802
22832
  };
22833
+ export declare type CplsCapacityPlanningPeopleViewContributorDataIdsArgs = {
22834
+ after?: InputMaybe<Scalars['String']['input']>;
22835
+ before?: InputMaybe<Scalars['String']['input']>;
22836
+ first?: InputMaybe<Scalars['Int']['input']>;
22837
+ last?: InputMaybe<Scalars['Int']['input']>;
22838
+ };
22803
22839
  export declare type CplsCapacityPlanningPeopleViewContributorsArgs = {
22804
22840
  after?: InputMaybe<Scalars['String']['input']>;
22805
22841
  before?: InputMaybe<Scalars['String']['input']>;
@@ -22848,6 +22884,20 @@ export declare type CplsContributorConnection = HasPageInfo & {
22848
22884
  pageInfo: PageInfo;
22849
22885
  };
22850
22886
  export declare type CplsContributorData = AppUser | AtlassianAccountUser | CustomerUser;
22887
+ export declare type CplsContributorDataId = {
22888
+ __typename?: 'CplsContributorDataId';
22889
+ id: Scalars['ID']['output'];
22890
+ };
22891
+ export declare type CplsContributorDataIdConnection = HasPageInfo & {
22892
+ __typename?: 'CplsContributorDataIdConnection';
22893
+ edges?: Maybe<Array<Maybe<CplsContributorDataIdEdge>>>;
22894
+ pageInfo: PageInfo;
22895
+ };
22896
+ export declare type CplsContributorDataIdEdge = {
22897
+ __typename?: 'CplsContributorDataIdEdge';
22898
+ cursor: Scalars['String']['output'];
22899
+ node?: Maybe<CplsContributorDataId>;
22900
+ };
22851
22901
  export declare type CplsContributorEdge = {
22852
22902
  __typename?: 'CplsContributorEdge';
22853
22903
  cursor: Scalars['String']['output'];
@@ -23826,6 +23876,7 @@ export declare type CsmAiAgentVersion = {
23826
23876
  coachingContents?: Maybe<Array<CsmAiCoachingContentResult>>;
23827
23877
  handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
23828
23878
  knowledgeCollection?: Maybe<CsmAiKnowledgeCollectionResult>;
23879
+ publishedAt?: Maybe<Scalars['Long']['output']>;
23829
23880
  versionId: Scalars['ID']['output'];
23830
23881
  versionNumber?: Maybe<Scalars['Int']['output']>;
23831
23882
  versionType?: Maybe<Scalars['String']['output']>;
@@ -27053,9 +27104,15 @@ export declare type DevConsoleAppUsageTopSitesResponse = {
27053
27104
  error?: Maybe<QueryError>;
27054
27105
  resourceUsage?: Maybe<Array<DevConsoleResourceUsageTopSite>>;
27055
27106
  };
27107
+ export declare type DevConsoleAppWithoutConsent = {
27108
+ __typename?: 'DevConsoleAppWithoutConsent';
27109
+ id: Scalars['String']['output'];
27110
+ name: Scalars['String']['output'];
27111
+ };
27056
27112
  export declare type DevConsoleAppsWithoutConsentResponse = {
27057
27113
  __typename?: 'DevConsoleAppsWithoutConsentResponse';
27058
27114
  appIds: Array<Scalars['String']['output']>;
27115
+ apps: Array<DevConsoleAppWithoutConsent>;
27059
27116
  error?: Maybe<QueryError>;
27060
27117
  };
27061
27118
  export declare type DevConsoleArchiveDeveloperSpaceInput = {
@@ -44687,7 +44744,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
44687
44744
  data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
44688
44745
  id: Scalars['ID']['output'];
44689
44746
  };
44690
- export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
44747
+ export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
44691
44748
  export declare type GraphStoreCypherQueryStringObject = {
44692
44749
  __typename?: 'GraphStoreCypherQueryStringObject';
44693
44750
  value: Scalars['String']['output'];
@@ -44701,13 +44758,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
44701
44758
  data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
44702
44759
  id: Scalars['ID']['output'];
44703
44760
  };
44704
- export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
44761
+ export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
44705
44762
  export declare type GraphStoreCypherQueryV2BatchAriNode = {
44706
44763
  __typename?: 'GraphStoreCypherQueryV2BatchAriNode';
44707
44764
  data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
44708
44765
  id: Scalars['ID']['output'];
44709
44766
  };
44710
- export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
44767
+ export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
44711
44768
  export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
44712
44769
  __typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
44713
44770
  value: Scalars['Boolean']['output'];
@@ -44816,7 +44873,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
44816
44873
  V2 = "V2",
44817
44874
  V3 = "V3"
44818
44875
  }
44819
- export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
44876
+ export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
44820
44877
  export declare type GraphStoreCypherQueryValueNode = {
44821
44878
  __typename?: 'GraphStoreCypherQueryValueNode';
44822
44879
  data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
@@ -60747,6 +60804,21 @@ export declare type HelpCenterHomePageTitleInput = {
60747
60804
  default: Scalars['String']['input'];
60748
60805
  translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
60749
60806
  };
60807
+ export declare type HelpCenterHubProductEntityData = HelpCenterJsmRequestTypesData | QueryError;
60808
+ export declare type HelpCenterHubProductEntityResult = {
60809
+ __typename?: 'HelpCenterHubProductEntityResult';
60810
+ data?: Maybe<HelpCenterProductEntityConnection>;
60811
+ entityType: Scalars['String']['output'];
60812
+ filterCriteria: HelpCenterProductEntityFilterCriteria;
60813
+ };
60814
+ export declare type HelpCenterJsmRequestTypesData = {
60815
+ __typename?: 'HelpCenterJSMRequestTypesData';
60816
+ description?: Maybe<Scalars['String']['output']>;
60817
+ displayLink?: Maybe<Scalars['String']['output']>;
60818
+ iconUrl?: Maybe<Scalars['String']['output']>;
60819
+ id: Scalars['ID']['output'];
60820
+ name?: Maybe<Scalars['String']['output']>;
60821
+ };
60750
60822
  export declare type HelpCenterLayoutAdf = {
60751
60823
  __typename?: 'HelpCenterLayoutAdf';
60752
60824
  content?: Maybe<HelpCenterLayoutAdfContentConnection>;
@@ -61021,6 +61093,23 @@ export declare enum HelpCenterPortalsType {
61021
61093
  Hidden = "HIDDEN",
61022
61094
  Visible = "VISIBLE"
61023
61095
  }
61096
+ export declare type HelpCenterProductEntityConnection = {
61097
+ __typename?: 'HelpCenterProductEntityConnection';
61098
+ edges?: Maybe<Array<HelpCenterProductEntityEdge>>;
61099
+ pageInfo: PageInfo;
61100
+ };
61101
+ export declare type HelpCenterProductEntityEdge = {
61102
+ __typename?: 'HelpCenterProductEntityEdge';
61103
+ cursor: Scalars['String']['output'];
61104
+ node?: Maybe<HelpCenterHubProductEntityData>;
61105
+ };
61106
+ export declare type HelpCenterProductEntityFilterCriteria = {
61107
+ __typename?: 'HelpCenterProductEntityFilterCriteria';
61108
+ after?: Maybe<Scalars['String']['output']>;
61109
+ cloudId: Scalars['ID']['output'];
61110
+ first?: Maybe<Scalars['Int']['output']>;
61111
+ parentId: Scalars['ID']['output'];
61112
+ };
61024
61113
  export declare type HelpCenterProductEntityImageInput = {
61025
61114
  entityId: Scalars['String']['input'];
61026
61115
  entityType: HelpCenterProductEntityType;
@@ -61033,7 +61122,14 @@ export declare type HelpCenterProductEntityImages = {
61033
61122
  entityType?: Maybe<HelpCenterProductEntityType>;
61034
61123
  imageUrl?: Maybe<Scalars['String']['output']>;
61035
61124
  };
61125
+ export declare type HelpCenterProductEntityRequestInput = {
61126
+ after?: InputMaybe<Scalars['String']['input']>;
61127
+ first?: InputMaybe<Scalars['Int']['input']>;
61128
+ parentId?: InputMaybe<Scalars['ID']['input']>;
61129
+ type: HelpCenterProductEntityType;
61130
+ };
61036
61131
  export declare enum HelpCenterProductEntityType {
61132
+ JsmRequestTypes = "JSM_REQUEST_TYPES",
61037
61133
  KnowledgeCards = "KNOWLEDGE_CARDS"
61038
61134
  }
61039
61135
  export declare type HelpCenterProjectMappingData = {
@@ -61081,6 +61177,7 @@ export declare type HelpCenterQueryApi = {
61081
61177
  helpCentersConfig?: Maybe<HelpCentersConfigResult>;
61082
61178
  helpCentersList?: Maybe<HelpCentersListQueryResult>;
61083
61179
  hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
61180
+ hubProductEntities: Array<HelpCenterHubProductEntityResult>;
61084
61181
  mediaConfig?: Maybe<HelpCenterMediaConfig>;
61085
61182
  };
61086
61183
  export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdArgs = {
@@ -61146,6 +61243,10 @@ export declare type HelpCenterQueryApiHubMediaConfigArgs = {
61146
61243
  ari: Scalars['ID']['input'];
61147
61244
  operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
61148
61245
  };
61246
+ export declare type HelpCenterQueryApiHubProductEntitiesArgs = {
61247
+ helpCenterAri: Scalars['ID']['input'];
61248
+ inputs: Array<HelpCenterProductEntityRequestInput>;
61249
+ };
61149
61250
  export declare type HelpCenterQueryApiMediaConfigArgs = {
61150
61251
  helpCenterAri: Scalars['ID']['input'];
61151
61252
  operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
@@ -62151,6 +62252,15 @@ export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
62151
62252
  errors?: Maybe<Array<MutationError>>;
62152
62253
  success: Scalars['Boolean']['output'];
62153
62254
  };
62255
+ export declare type HelpObjectStoreEntityData = {
62256
+ __typename?: 'HelpObjectStoreEntityData';
62257
+ description?: Maybe<Scalars['String']['output']>;
62258
+ displayLink?: Maybe<Scalars['String']['output']>;
62259
+ iconUrl?: Maybe<Scalars['String']['output']>;
62260
+ id: Scalars['ID']['output'];
62261
+ name?: Maybe<Scalars['String']['output']>;
62262
+ };
62263
+ export declare type HelpObjectStoreEntityDataGeneric = HelpObjectStoreEntityData;
62154
62264
  export declare type HelpObjectStoreHelpCenterSearchResult = HelpObjectStoreQueryError | HelpObjectStoreSearchResult;
62155
62265
  export declare type HelpObjectStoreHelpObject = {
62156
62266
  ari: Scalars['ID']['output'];
@@ -62223,11 +62333,31 @@ export declare enum HelpObjectStorePortalSearchStrategy {
62223
62333
  Jira = "JIRA",
62224
62334
  SearchPlatform = "SEARCH_PLATFORM"
62225
62335
  }
62336
+ export declare type HelpObjectStoreProductEntityConnection = {
62337
+ __typename?: 'HelpObjectStoreProductEntityConnection';
62338
+ edges?: Maybe<Array<HelpObjectStoreProductEntityEdge>>;
62339
+ pageInfo: PageInfo;
62340
+ };
62341
+ export declare type HelpObjectStoreProductEntityEdge = {
62342
+ __typename?: 'HelpObjectStoreProductEntityEdge';
62343
+ cursor: Scalars['String']['output'];
62344
+ node?: Maybe<HelpObjectStoreEntityDataGeneric>;
62345
+ };
62346
+ export declare type HelpObjectStoreProductEntityInput = {
62347
+ after?: InputMaybe<Scalars['String']['input']>;
62348
+ cloudId: Scalars['ID']['input'];
62349
+ first?: InputMaybe<Scalars['Int']['input']>;
62350
+ parentId: Scalars['ID']['input'];
62351
+ };
62352
+ export declare type HelpObjectStoreProductEntityResult = HelpObjectStoreProductEntityConnection | QueryError;
62226
62353
  export declare type HelpObjectStoreQueryApi = {
62227
62354
  __typename?: 'HelpObjectStoreQueryApi';
62228
62355
  articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
62229
62356
  channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
62357
+ extResources?: Maybe<HelpObjectStoreProductEntityResult>;
62358
+ kbArticles?: Maybe<HelpObjectStoreProductEntityResult>;
62230
62359
  requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
62360
+ requestTypes?: Maybe<HelpObjectStoreProductEntityResult>;
62231
62361
  searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
62232
62362
  };
62233
62363
  export declare type HelpObjectStoreQueryApiArticlesArgs = {
@@ -62236,9 +62366,18 @@ export declare type HelpObjectStoreQueryApiArticlesArgs = {
62236
62366
  export declare type HelpObjectStoreQueryApiChannelsArgs = {
62237
62367
  ids: Array<Scalars['ID']['input']>;
62238
62368
  };
62369
+ export declare type HelpObjectStoreQueryApiExtResourcesArgs = {
62370
+ input: HelpObjectStoreProductEntityInput;
62371
+ };
62372
+ export declare type HelpObjectStoreQueryApiKbArticlesArgs = {
62373
+ input: HelpObjectStoreProductEntityInput;
62374
+ };
62239
62375
  export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
62240
62376
  ids: Array<Scalars['ID']['input']>;
62241
62377
  };
62378
+ export declare type HelpObjectStoreQueryApiRequestTypesArgs = {
62379
+ input: HelpObjectStoreProductEntityInput;
62380
+ };
62242
62381
  export declare type HelpObjectStoreQueryApiSearchHelpObjectsArgs = {
62243
62382
  searchInput: HelpObjectStoreSearchInput;
62244
62383
  };
@@ -65738,6 +65877,7 @@ export declare type JiraCfoBoardFilterInput = {
65738
65877
  creatorAccountId?: InputMaybe<Array<Scalars['ID']['input']>>;
65739
65878
  keyword?: InputMaybe<Scalars['String']['input']>;
65740
65879
  performanceStatus?: InputMaybe<Array<InputMaybe<JiraCfoBoardPerformanceStatus>>>;
65880
+ sortInput?: InputMaybe<Array<InputMaybe<JiraCfoBoardPerformanceSortInput>>>;
65741
65881
  };
65742
65882
  export declare type JiraCfoBoardPerfStats = {
65743
65883
  __typename?: 'JiraCFOBoardPerfStats';
@@ -65775,6 +65915,14 @@ export declare type JiraCfoBoardPerformanceMetricSummary = JiraCfoMetricSummary
65775
65915
  boardPerfStats?: Maybe<JiraCfoBoardPerfStats>;
65776
65916
  periodComparison?: Maybe<Array<Maybe<JiraCfoMetricComparison>>>;
65777
65917
  };
65918
+ export declare type JiraCfoBoardPerformanceSortInput = {
65919
+ key?: InputMaybe<Scalars['String']['input']>;
65920
+ order?: InputMaybe<JiraCfoBoardPerformanceSortOrder>;
65921
+ };
65922
+ export declare enum JiraCfoBoardPerformanceSortOrder {
65923
+ Asc = "ASC",
65924
+ Desc = "DESC"
65925
+ }
65778
65926
  export declare enum JiraCfoBoardPerformanceStatus {
65779
65927
  Fast = "FAST",
65780
65928
  Moderate = "MODERATE",
@@ -69210,7 +69358,7 @@ export declare type JiraFieldToFieldSchemeAssociationsInput = {
69210
69358
  schemeIdsToAdd: Array<Scalars['ID']['input']>;
69211
69359
  schemeIdsToRemove: Array<Scalars['ID']['input']>;
69212
69360
  };
69213
- export declare type JiraFieldToFieldSchemeAssociationsPayload = {
69361
+ export declare type JiraFieldToFieldSchemeAssociationsPayload = Payload & {
69214
69362
  __typename?: 'JiraFieldToFieldSchemeAssociationsPayload';
69215
69363
  errors?: Maybe<Array<MutationError>>;
69216
69364
  success: Scalars['Boolean']['output'];
@@ -70527,6 +70675,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
70527
70675
  isArchived?: Maybe<Scalars['Boolean']['output']>;
70528
70676
  isRemoteIssue?: Maybe<Scalars['Boolean']['output']>;
70529
70677
  isResolved?: Maybe<Scalars['Boolean']['output']>;
70678
+ issueAISummary?: Maybe<JiraIssueAiSummaryResult>;
70530
70679
  issueColorField?: Maybe<JiraColorField>;
70531
70680
  issueId: Scalars['String']['output'];
70532
70681
  issueLinkField?: Maybe<JiraIssueLinkField>;
@@ -70783,6 +70932,9 @@ export declare type JiraIssueHistoryArgs = {
70783
70932
  last?: InputMaybe<Scalars['Int']['input']>;
70784
70933
  orderBy?: InputMaybe<Scalars['String']['input']>;
70785
70934
  };
70935
+ export declare type JiraIssueIssueAiSummaryArgs = {
70936
+ type: JiraIssueAiSummaryType;
70937
+ };
70786
70938
  export declare type JiraIssueIssueLinksArgs = {
70787
70939
  after?: InputMaybe<Scalars['String']['input']>;
70788
70940
  before?: InputMaybe<Scalars['String']['input']>;
@@ -70863,6 +71015,17 @@ export declare type JiraIssueWorklogsArgs = {
70863
71015
  sortBy?: InputMaybe<JiraWorklogSortInput>;
70864
71016
  targetId?: InputMaybe<Scalars['String']['input']>;
70865
71017
  };
71018
+ export declare type JiraIssueAiSummary = {
71019
+ __typename?: 'JiraIssueAISummary';
71020
+ hasUserOptedOut: Scalars['Boolean']['output'];
71021
+ lastUpdated?: Maybe<Scalars['DateTime']['output']>;
71022
+ summary?: Maybe<JiraRichText>;
71023
+ };
71024
+ export declare type JiraIssueAiSummaryResult = JiraIssueAiSummary | QueryError;
71025
+ export declare enum JiraIssueAiSummaryType {
71026
+ OnDemand = "ON_DEMAND",
71027
+ PageLoad = "PAGE_LOAD"
71028
+ }
70866
71029
  export declare enum JiraIssueActivityType {
70867
71030
  Created = "CREATED",
70868
71031
  Updated = "UPDATED"
@@ -85658,7 +85821,27 @@ export declare type JpdViewUpdatedEvent = {
85658
85821
  viewId: Scalars['Int']['output'];
85659
85822
  viewUuid: Scalars['ID']['output'];
85660
85823
  };
85824
+ export declare enum JsmChannelsConnectionType {
85825
+ Okta = "OKTA"
85826
+ }
85661
85827
  export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
85828
+ export declare type JsmChannelsEstablishConnectionInput = {
85829
+ clientId: Scalars['String']['input'];
85830
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
85831
+ connectionType: JsmChannelsConnectionType;
85832
+ displayName: Scalars['String']['input'];
85833
+ exchangeUrl?: InputMaybe<Scalars['String']['input']>;
85834
+ hostUrl: Scalars['String']['input'];
85835
+ profileRetrieverUrl?: InputMaybe<Scalars['String']['input']>;
85836
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
85837
+ scopes?: InputMaybe<Array<Scalars['String']['input']>>;
85838
+ };
85839
+ export declare type JsmChannelsEstablishConnectionPayload = Payload & {
85840
+ __typename?: 'JsmChannelsEstablishConnectionPayload';
85841
+ errors?: Maybe<Array<MutationError>>;
85842
+ serviceId?: Maybe<Scalars['String']['output']>;
85843
+ success: Scalars['Boolean']['output'];
85844
+ };
85662
85845
  export declare enum JsmChannelsExperience {
85663
85846
  EmployeeOnboardingAgent = "EMPLOYEE_ONBOARDING_AGENT",
85664
85847
  EmployeeServiceAgent = "EMPLOYEE_SERVICE_AGENT"
@@ -85686,6 +85869,12 @@ export declare type JsmChannelsFilterConfiguration = {
85686
85869
  export declare type JsmChannelsFilterConfigurationInput = {
85687
85870
  requestTypes?: InputMaybe<Array<JsmChannelsRequestTypesInput>>;
85688
85871
  };
85872
+ export declare type JsmChannelsOktaTaskAgentConfiguration = {
85873
+ __typename?: 'JsmChannelsOktaTaskAgentConfiguration';
85874
+ accountId: Scalars['String']['output'];
85875
+ baseUrl: Scalars['String']['output'];
85876
+ serviceKey: Scalars['String']['output'];
85877
+ };
85689
85878
  export declare type JsmChannelsOrchestratorConversation = Node & {
85690
85879
  __typename?: 'JsmChannelsOrchestratorConversation';
85691
85880
  action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
@@ -85777,6 +85966,33 @@ export declare type JsmChannelsServiceAgentResolutionRunbook = {
85777
85966
  title: Scalars['String']['output'];
85778
85967
  url: Scalars['String']['output'];
85779
85968
  };
85969
+ export declare type JsmChannelsTaskAgent = {
85970
+ __typename?: 'JsmChannelsTaskAgent';
85971
+ agentName: Scalars['String']['output'];
85972
+ configuration?: Maybe<JsmChannelsTaskAgentConfigurationDetails>;
85973
+ displayName: Scalars['String']['output'];
85974
+ status: JsmChannelsTaskAgentStatus;
85975
+ };
85976
+ export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsOktaTaskAgentConfiguration;
85977
+ export declare type JsmChannelsTaskAgentConfigurationInput = {
85978
+ configuration?: InputMaybe<Scalars['JSON']['input']>;
85979
+ status: JsmChannelsTaskAgentStatus;
85980
+ };
85981
+ export declare type JsmChannelsTaskAgentConfigurationPayload = Payload & {
85982
+ __typename?: 'JsmChannelsTaskAgentConfigurationPayload';
85983
+ errors?: Maybe<Array<MutationError>>;
85984
+ success: Scalars['Boolean']['output'];
85985
+ taskAgent?: Maybe<JsmChannelsTaskAgent>;
85986
+ };
85987
+ export declare enum JsmChannelsTaskAgentStatus {
85988
+ Disabled = "DISABLED",
85989
+ Enabled = "ENABLED"
85990
+ }
85991
+ export declare type JsmChannelsTaskAgentsQueryPayload = {
85992
+ __typename?: 'JsmChannelsTaskAgentsQueryPayload';
85993
+ taskAgents?: Maybe<Array<JsmChannelsTaskAgent>>;
85994
+ };
85995
+ export declare type JsmChannelsTaskAgentsResult = JsmChannelsTaskAgentsQueryPayload | QueryError;
85780
85996
  export declare type JsmChannelsTicketServiceAgentResolutionState = {
85781
85997
  __typename?: 'JsmChannelsTicketServiceAgentResolutionState';
85782
85998
  isLoading: Scalars['Boolean']['output'];
@@ -88038,6 +88254,7 @@ export declare type LoomMeeting = Node & {
88038
88254
  __typename?: 'LoomMeeting';
88039
88255
  endsAt?: Maybe<Scalars['String']['output']>;
88040
88256
  external?: Maybe<Scalars['Boolean']['output']>;
88257
+ externalCalendarEventId?: Maybe<Scalars['String']['output']>;
88041
88258
  id: Scalars['ID']['output'];
88042
88259
  recorder?: Maybe<User>;
88043
88260
  recorderId?: Maybe<Scalars['ID']['output']>;
@@ -95325,11 +95542,16 @@ export declare type Mutation = {
95325
95542
  goals_clone?: Maybe<TownsquareGoalsClonePayload>;
95326
95543
  goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
95327
95544
  goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
95545
+ goals_createGoalTypePair?: Maybe<TownsquareCreateGoalTypePairPayload>;
95328
95546
  goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
95329
95547
  goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
95330
95548
  goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
95549
+ goals_deleteComment?: Maybe<TownsquareGoalsDeleteCommentPayload>;
95550
+ goals_deleteDecision?: Maybe<TownsquareGoalsDeleteDecisionPayload>;
95331
95551
  goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
95552
+ goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
95332
95553
  goals_deleteProjectLink?: Maybe<TownsquareGoalsDeleteProjectLinkPayload>;
95554
+ goals_deleteRisk?: Maybe<TownsquareGoalsDeleteRiskPayload>;
95333
95555
  goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
95334
95556
  goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
95335
95557
  goals_editLearning?: Maybe<TownsquareGoalsEditLearningPayload>;
@@ -95469,7 +95691,9 @@ export declare type Mutation = {
95469
95691
  jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
95470
95692
  jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
95471
95693
  jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
95694
+ jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
95472
95695
  jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
95696
+ jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
95473
95697
  jsmChat?: Maybe<JsmChatMutation>;
95474
95698
  jsw?: Maybe<JswMutation>;
95475
95699
  knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
@@ -95522,12 +95746,18 @@ export declare type Mutation = {
95522
95746
  projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
95523
95747
  projects_clone?: Maybe<TownsquareProjectsClonePayload>;
95524
95748
  projects_create?: Maybe<TownsquareProjectsCreatePayload>;
95749
+ projects_createDecision?: Maybe<TownsquareProjectsCreateDecisionPayload>;
95750
+ projects_createLearning?: Maybe<TownsquareProjectsCreateLearningPayload>;
95525
95751
  projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
95752
+ projects_createRisk?: Maybe<TownsquareProjectsCreateRiskPayload>;
95526
95753
  projects_createUpdate?: Maybe<TownsquareProjectsCreateUpdatePayload>;
95527
95754
  projects_deleteLatestUpdate?: Maybe<TownsquareProjectsDeleteLatestUpdatePayload>;
95528
95755
  projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
95529
95756
  projects_edit?: Maybe<TownsquareProjectsEditPayload>;
95757
+ projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
95758
+ projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
95530
95759
  projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
95760
+ projects_editRisk?: Maybe<TownsquareProjectsEditRiskPayload>;
95531
95761
  projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
95532
95762
  projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
95533
95763
  projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
@@ -97132,6 +97362,9 @@ export declare type MutationGoals_CreateAndAddMetricTargetArgs = {
97132
97362
  export declare type MutationGoals_CreateDecisionArgs = {
97133
97363
  input: TownsquareGoalsCreateDecisionInput;
97134
97364
  };
97365
+ export declare type MutationGoals_CreateGoalTypePairArgs = {
97366
+ input: TownsquareGoalsCreateGoalTypePairInput;
97367
+ };
97135
97368
  export declare type MutationGoals_CreateLearningArgs = {
97136
97369
  input: TownsquareGoalsCreateLearningInput;
97137
97370
  };
@@ -97141,12 +97374,24 @@ export declare type MutationGoals_CreateRiskArgs = {
97141
97374
  export declare type MutationGoals_CreateUpdateArgs = {
97142
97375
  input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
97143
97376
  };
97377
+ export declare type MutationGoals_DeleteCommentArgs = {
97378
+ input: TownsquareGoalsDeleteCommentInput;
97379
+ };
97380
+ export declare type MutationGoals_DeleteDecisionArgs = {
97381
+ input: TownsquareGoalsDeleteDecisionInput;
97382
+ };
97144
97383
  export declare type MutationGoals_DeleteLatestUpdateArgs = {
97145
97384
  input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
97146
97385
  };
97386
+ export declare type MutationGoals_DeleteLearningArgs = {
97387
+ input: TownsquareGoalsDeleteLearningInput;
97388
+ };
97147
97389
  export declare type MutationGoals_DeleteProjectLinkArgs = {
97148
97390
  input: TownsquareGoalsDeleteProjectLinkInput;
97149
97391
  };
97392
+ export declare type MutationGoals_DeleteRiskArgs = {
97393
+ input: TownsquareGoalsDeleteRiskInput;
97394
+ };
97150
97395
  export declare type MutationGoals_EditCommentArgs = {
97151
97396
  input: TownsquareGoalsEditCommentInput;
97152
97397
  };
@@ -97572,11 +97817,21 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
97572
97817
  cloudId: Scalars['ID']['input'];
97573
97818
  input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
97574
97819
  };
97820
+ export declare type MutationJsmChannels_EstablishConnectionArgs = {
97821
+ input: JsmChannelsEstablishConnectionInput;
97822
+ jiraProjectAri: Scalars['ID']['input'];
97823
+ };
97575
97824
  export declare type MutationJsmChannels_UpdateExperienceConfigurationArgs = {
97576
97825
  experience: JsmChannelsExperience;
97577
97826
  input: JsmChannelsExperienceConfigurationInput;
97578
97827
  jiraProjectAri: Scalars['ID']['input'];
97579
97828
  };
97829
+ export declare type MutationJsmChannels_UpdateTaskAgentConfigurationArgs = {
97830
+ agentName: Scalars['String']['input'];
97831
+ experience: JsmChannelsExperience;
97832
+ input: JsmChannelsTaskAgentConfigurationInput;
97833
+ jiraProjectAri: Scalars['ID']['input'];
97834
+ };
97580
97835
  export declare type MutationKnowledgeBaseArgs = {
97581
97836
  cloudId: Scalars['ID']['input'];
97582
97837
  };
@@ -97706,9 +97961,18 @@ export declare type MutationProjects_CloneArgs = {
97706
97961
  export declare type MutationProjects_CreateArgs = {
97707
97962
  input: TownsquareProjectsCreateInput;
97708
97963
  };
97964
+ export declare type MutationProjects_CreateDecisionArgs = {
97965
+ input: TownsquareProjectsCreateDecisionInput;
97966
+ };
97967
+ export declare type MutationProjects_CreateLearningArgs = {
97968
+ input: TownsquareProjectsCreateLearningInput;
97969
+ };
97709
97970
  export declare type MutationProjects_CreateLinkArgs = {
97710
97971
  input?: InputMaybe<TownsquareProjectsCreateLinkInput>;
97711
97972
  };
97973
+ export declare type MutationProjects_CreateRiskArgs = {
97974
+ input: TownsquareProjectsCreateRiskInput;
97975
+ };
97712
97976
  export declare type MutationProjects_CreateUpdateArgs = {
97713
97977
  input?: InputMaybe<TownsquareProjectsCreateUpdateInput>;
97714
97978
  };
@@ -97721,9 +97985,18 @@ export declare type MutationProjects_DeleteLinkArgs = {
97721
97985
  export declare type MutationProjects_EditArgs = {
97722
97986
  input?: InputMaybe<TownsquareProjectsEditInput>;
97723
97987
  };
97988
+ export declare type MutationProjects_EditDecisionArgs = {
97989
+ input: TownsquareProjectsEditDecisionInput;
97990
+ };
97991
+ export declare type MutationProjects_EditLearningArgs = {
97992
+ input: TownsquareProjectsEditLearningInput;
97993
+ };
97724
97994
  export declare type MutationProjects_EditLinkArgs = {
97725
97995
  input?: InputMaybe<TownsquareProjectsEditLinkInput>;
97726
97996
  };
97997
+ export declare type MutationProjects_EditRiskArgs = {
97998
+ input: TownsquareProjectsEditRiskInput;
97999
+ };
97727
98000
  export declare type MutationProjects_EditUpdateArgs = {
97728
98001
  input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
97729
98002
  };
@@ -101541,6 +101814,7 @@ export declare type Query = {
101541
101814
  confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
101542
101815
  confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
101543
101816
  confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
101817
+ confluence_getAudioPreference?: Maybe<ConfluenceAudioPreference>;
101544
101818
  confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
101545
101819
  confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
101546
101820
  confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
@@ -101883,6 +102157,7 @@ export declare type Query = {
101883
102157
  jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
101884
102158
  jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
101885
102159
  jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
102160
+ jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
101886
102161
  jsmChat?: Maybe<JsmChatQuery>;
101887
102162
  jsw?: Maybe<JswQuery>;
101888
102163
  kitsune_hello?: Maybe<Scalars['String']['output']>;
@@ -102156,6 +102431,7 @@ export declare type Query = {
102156
102431
  teamCalendarSettings?: Maybe<TeamCalendarSettings>;
102157
102432
  teamLabels?: Maybe<PaginatedLabelList>;
102158
102433
  teamworkGraph_activitiesLinkedToProject?: Maybe<GraphStoreCypherQueryV2Connection>;
102434
+ teamworkGraph_customerSupportMessages?: Maybe<GraphStoreCypherQueryV2Connection>;
102159
102435
  teamworkGraph_getProjectContext?: Maybe<GraphStoreCypherQueryV2Connection>;
102160
102436
  teamworkGraph_projectUpdates?: Maybe<GraphStoreCypherQueryV2Connection>;
102161
102437
  teamworkGraph_teamProjects?: Maybe<GraphStoreCypherQueryV2Connection>;
@@ -103244,6 +103520,9 @@ export declare type QueryConfluence_GetAllAppsArgs = {
103244
103520
  cloudId: Scalars['ID']['input'];
103245
103521
  first?: InputMaybe<Scalars['Int']['input']>;
103246
103522
  };
103523
+ export declare type QueryConfluence_GetAudioPreferenceArgs = {
103524
+ cloudId: Scalars['ID']['input'];
103525
+ };
103247
103526
  export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs = {
103248
103527
  after?: InputMaybe<Scalars['String']['input']>;
103249
103528
  appId: Scalars['ID']['input'];
@@ -104711,6 +104990,10 @@ export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArg
104711
104990
  jiraProjectAri: Scalars['ID']['input'];
104712
104991
  ticketId: Scalars['ID']['input'];
104713
104992
  };
104993
+ export declare type QueryJsmChannels_TaskAgentsArgs = {
104994
+ experience: JsmChannelsExperience;
104995
+ jiraProjectAri: Scalars['ID']['input'];
104996
+ };
104714
104997
  export declare type QueryKitsune_HelloArgs = {
104715
104998
  projectAri: Scalars['ID']['input'];
104716
104999
  };
@@ -105571,6 +105854,7 @@ export declare type QueryStakeholderComms_GetPageUptimePercentageArgs = {
105571
105854
  };
105572
105855
  export declare type QueryStakeholderComms_GetPagesSummaryByCloudIdArgs = {
105573
105856
  cloudId: Scalars['String']['input'];
105857
+ filter?: InputMaybe<StakeholderCommsPageStatusFilter>;
105574
105858
  };
105575
105859
  export declare type QueryStakeholderComms_GetStakeholderArgs = {
105576
105860
  stakeholderIdInput: StakeholderCommsStakeholderIdInput;
@@ -105673,6 +105957,13 @@ export declare type QueryTeamworkGraph_ActivitiesLinkedToProjectArgs = {
105673
105957
  first?: InputMaybe<Scalars['Int']['input']>;
105674
105958
  projectId: Scalars['ID']['input'];
105675
105959
  };
105960
+ export declare type QueryTeamworkGraph_CustomerSupportMessagesArgs = {
105961
+ after?: InputMaybe<Scalars['String']['input']>;
105962
+ customerId: Scalars['ID']['input'];
105963
+ endDate: Scalars['DateTime']['input'];
105964
+ first?: InputMaybe<Scalars['Int']['input']>;
105965
+ startDate: Scalars['DateTime']['input'];
105966
+ };
105676
105967
  export declare type QueryTeamworkGraph_GetProjectContextArgs = {
105677
105968
  after?: InputMaybe<Scalars['String']['input']>;
105678
105969
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -130530,6 +130821,52 @@ export declare type StakeholderCommsNotificationPreferenceInput = {
130530
130821
  preference?: InputMaybe<StakeholderCommsPreferencesInput>;
130531
130822
  webhook?: InputMaybe<Scalars['String']['input']>;
130532
130823
  };
130824
+ export declare type StakeholderCommsOpsgenieLoadingState = {
130825
+ __typename?: 'StakeholderCommsOpsgenieLoadingState';
130826
+ description: Scalars['String']['output'];
130827
+ id: Scalars['ID']['output'];
130828
+ status: StakeholderCommsOpsgenieLoadingStatus;
130829
+ };
130830
+ export declare enum StakeholderCommsOpsgenieLoadingStatus {
130831
+ Loaded = "LOADED",
130832
+ Loading = "LOADING",
130833
+ NotStarted = "NOT_STARTED"
130834
+ }
130835
+ export declare type StakeholderCommsOpsgenieRiskAssessmentDetails = {
130836
+ __typename?: 'StakeholderCommsOpsgenieRiskAssessmentDetails';
130837
+ categories: Array<StakeholderCommsOpsgenieRiskCategory>;
130838
+ description: Scalars['String']['output'];
130839
+ riskScore: StakeholderCommsOpsgenieRiskScore;
130840
+ };
130841
+ export declare type StakeholderCommsOpsgenieRiskAssessmentResult = {
130842
+ __typename?: 'StakeholderCommsOpsgenieRiskAssessmentResult';
130843
+ loadingStates?: Maybe<Array<StakeholderCommsOpsgenieLoadingState>>;
130844
+ result?: Maybe<StakeholderCommsOpsgenieRiskAssessmentDetails>;
130845
+ };
130846
+ export declare type StakeholderCommsOpsgenieRiskCategory = {
130847
+ __typename?: 'StakeholderCommsOpsgenieRiskCategory';
130848
+ count: Scalars['Int']['output'];
130849
+ items: Array<StakeholderCommsOpsgenieRiskItem>;
130850
+ type: StakeholderCommsOpsgenieRiskCategoryType;
130851
+ };
130852
+ export declare enum StakeholderCommsOpsgenieRiskCategoryType {
130853
+ Business = "BUSINESS",
130854
+ Operational = "OPERATIONAL",
130855
+ SecurityCompliance = "SECURITY_COMPLIANCE",
130856
+ Technical = "TECHNICAL"
130857
+ }
130858
+ export declare type StakeholderCommsOpsgenieRiskItem = {
130859
+ __typename?: 'StakeholderCommsOpsgenieRiskItem';
130860
+ description: Scalars['String']['output'];
130861
+ id: Scalars['ID']['output'];
130862
+ severity: StakeholderCommsOpsgenieRiskScore;
130863
+ };
130864
+ export declare enum StakeholderCommsOpsgenieRiskScore {
130865
+ Critical = "CRITICAL",
130866
+ High = "HIGH",
130867
+ Low = "LOW",
130868
+ Medium = "MEDIUM"
130869
+ }
130533
130870
  export declare enum StakeholderCommsOrderType {
130534
130871
  EmailId = "EMAIL_ID",
130535
130872
  Status = "STATUS"
@@ -130601,6 +130938,11 @@ export declare type StakeholderCommsPageResponse = {
130601
130938
  error?: Maybe<Scalars['String']['output']>;
130602
130939
  page?: Maybe<StakeholderCommsPage>;
130603
130940
  };
130941
+ export declare enum StakeholderCommsPageStatusFilter {
130942
+ All = "ALL",
130943
+ Draft = "DRAFT",
130944
+ Published = "PUBLISHED"
130945
+ }
130604
130946
  export declare type StakeholderCommsPageSummary = {
130605
130947
  __typename?: 'StakeholderCommsPageSummary';
130606
130948
  componentCount?: Maybe<Scalars['Int']['output']>;
@@ -131203,6 +131545,7 @@ export declare type Subscription = {
131203
131545
  migrationPlanningService: MigrationPlanningServiceSubscription;
131204
131546
  sandbox: SandboxSubscription;
131205
131547
  signup: SignupSubscriptionApi;
131548
+ stakeholderComms_opsgenieRiskAssessment?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
131206
131549
  testing?: Maybe<TestingSubscription>;
131207
131550
  trello: TrelloSubscriptionApi;
131208
131551
  };
@@ -131252,6 +131595,9 @@ export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicke
131252
131595
  jiraProjectAri: Scalars['ID']['input'];
131253
131596
  workItemId: Scalars['ID']['input'];
131254
131597
  };
131598
+ export declare type SubscriptionStakeholderComms_OpsgenieRiskAssessmentArgs = {
131599
+ changeRequestId: Scalars['ID']['input'];
131600
+ };
131255
131601
  export declare enum SummaryType {
131256
131602
  Blogpost = "BLOGPOST",
131257
131603
  Page = "PAGE"
@@ -131906,7 +132252,8 @@ export declare enum TeamMembershipRole {
131906
132252
  export declare enum TeamMembershipSettings {
131907
132253
  External = "EXTERNAL",
131908
132254
  MemberInvite = "MEMBER_INVITE",
131909
- Open = "OPEN"
132255
+ Open = "OPEN",
132256
+ OrgAdminManaged = "ORG_ADMIN_MANAGED"
131910
132257
  }
131911
132258
  export declare enum TeamMembershipState {
131912
132259
  Alumni = "ALUMNI",
@@ -132102,6 +132449,7 @@ export declare enum TeamState {
132102
132449
  }
132103
132450
  export declare enum TeamStateV2 {
132104
132451
  Active = "ACTIVE",
132452
+ Disbanded = "DISBANDED",
132105
132453
  Purged = "PURGED"
132106
132454
  }
132107
132455
  export declare type TeamType = {
@@ -132882,10 +133230,29 @@ export declare type TownsquareCreateGoalTypeInput = {
132882
133230
  name: Scalars['String']['input'];
132883
133231
  state?: InputMaybe<TownsquareGoalTypeState>;
132884
133232
  };
133233
+ export declare type TownsquareCreateGoalTypeInputV2 = {
133234
+ containerId: Scalars['ID']['input'];
133235
+ description?: InputMaybe<Scalars['String']['input']>;
133236
+ name: Scalars['String']['input'];
133237
+ state?: InputMaybe<TownsquareGoalTypeState>;
133238
+ };
133239
+ export declare type TownsquareCreateGoalTypePairPayload = {
133240
+ __typename?: 'TownsquareCreateGoalTypePairPayload';
133241
+ errors?: Maybe<Array<MutationError>>;
133242
+ goalType?: Maybe<TownsquareGoalTypeEdge>;
133243
+ success: Scalars['Boolean']['output'];
133244
+ successMeasureType?: Maybe<TownsquareGoalTypeEdge>;
133245
+ };
132885
133246
  export declare type TownsquareCreateGoalTypePayload = {
132886
133247
  __typename?: 'TownsquareCreateGoalTypePayload';
132887
133248
  goalTypeEdge?: Maybe<TownsquareGoalTypeEdge>;
132888
133249
  };
133250
+ export declare type TownsquareCreateOrEditSuccessMeasureInput = {
133251
+ description?: InputMaybe<Scalars['String']['input']>;
133252
+ id?: InputMaybe<Scalars['ID']['input']>;
133253
+ name?: InputMaybe<Scalars['String']['input']>;
133254
+ state?: InputMaybe<TownsquareGoalTypeState>;
133255
+ };
132889
133256
  export declare type TownsquareCreateRelationshipsInput = {
132890
133257
  relationships: Array<TownsquareRelationshipInput>;
132891
133258
  };
@@ -133212,6 +133579,7 @@ export declare type TownsquareGoalType = Node & {
133212
133579
  namePlural?: Maybe<TownsquareGoalTypeNamePlural>;
133213
133580
  requiresParentGoal?: Maybe<Scalars['Boolean']['output']>;
133214
133581
  state?: Maybe<TownsquareGoalTypeState>;
133582
+ successMeasure?: Maybe<TownsquareGoalType>;
133215
133583
  };
133216
133584
  export declare type TownsquareGoalTypeAllowedChildTypesArgs = {
133217
133585
  after?: InputMaybe<Scalars['String']['input']>;
@@ -133371,6 +133739,10 @@ export declare type TownsquareGoalsCreateDecisionPayload = {
133371
133739
  errors?: Maybe<Array<MutationError>>;
133372
133740
  success: Scalars['Boolean']['output'];
133373
133741
  };
133742
+ export declare type TownsquareGoalsCreateGoalTypePairInput = {
133743
+ goalType: TownsquareCreateGoalTypeInputV2;
133744
+ successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
133745
+ };
133374
133746
  export declare type TownsquareGoalsCreateLearningInput = {
133375
133747
  description: Scalars['String']['input'];
133376
133748
  goalId: Scalars['ID']['input'];
@@ -133408,6 +133780,24 @@ export declare type TownsquareGoalsCreateUpdatePayload = {
133408
133780
  success: Scalars['Boolean']['output'];
133409
133781
  update?: Maybe<TownsquareGoalUpdate>;
133410
133782
  };
133783
+ export declare type TownsquareGoalsDeleteCommentInput = {
133784
+ commentId: Scalars['ID']['input'];
133785
+ };
133786
+ export declare type TownsquareGoalsDeleteCommentPayload = {
133787
+ __typename?: 'TownsquareGoalsDeleteCommentPayload';
133788
+ commentId?: Maybe<Scalars['ID']['output']>;
133789
+ errors?: Maybe<Array<MutationError>>;
133790
+ success: Scalars['Boolean']['output'];
133791
+ };
133792
+ export declare type TownsquareGoalsDeleteDecisionInput = {
133793
+ decisionId: Scalars['ID']['input'];
133794
+ };
133795
+ export declare type TownsquareGoalsDeleteDecisionPayload = {
133796
+ __typename?: 'TownsquareGoalsDeleteDecisionPayload';
133797
+ deletedDecisionId?: Maybe<Scalars['ID']['output']>;
133798
+ errors?: Maybe<Array<MutationError>>;
133799
+ success: Scalars['Boolean']['output'];
133800
+ };
133411
133801
  export declare type TownsquareGoalsDeleteLatestUpdateInput = {
133412
133802
  updateId: Scalars['ID']['input'];
133413
133803
  };
@@ -133418,6 +133808,15 @@ export declare type TownsquareGoalsDeleteLatestUpdatePayload = {
133418
133808
  success: Scalars['Boolean']['output'];
133419
133809
  updateId?: Maybe<Scalars['ID']['output']>;
133420
133810
  };
133811
+ export declare type TownsquareGoalsDeleteLearningInput = {
133812
+ learningId: Scalars['ID']['input'];
133813
+ };
133814
+ export declare type TownsquareGoalsDeleteLearningPayload = {
133815
+ __typename?: 'TownsquareGoalsDeleteLearningPayload';
133816
+ deletedLearningId?: Maybe<Scalars['ID']['output']>;
133817
+ errors?: Maybe<Array<MutationError>>;
133818
+ success: Scalars['Boolean']['output'];
133819
+ };
133421
133820
  export declare type TownsquareGoalsDeleteProjectLinkInput = {
133422
133821
  goalId: Scalars['ID']['input'];
133423
133822
  projectId: Scalars['ID']['input'];
@@ -133428,6 +133827,15 @@ export declare type TownsquareGoalsDeleteProjectLinkPayload = {
133428
133827
  projectId?: Maybe<Scalars['ID']['output']>;
133429
133828
  success: Scalars['Boolean']['output'];
133430
133829
  };
133830
+ export declare type TownsquareGoalsDeleteRiskInput = {
133831
+ riskId: Scalars['ID']['input'];
133832
+ };
133833
+ export declare type TownsquareGoalsDeleteRiskPayload = {
133834
+ __typename?: 'TownsquareGoalsDeleteRiskPayload';
133835
+ deletedRiskId?: Maybe<Scalars['ID']['output']>;
133836
+ errors?: Maybe<Array<MutationError>>;
133837
+ success: Scalars['Boolean']['output'];
133838
+ };
133431
133839
  export declare type TownsquareGoalsEditCommentInput = {
133432
133840
  commentId: Scalars['ID']['input'];
133433
133841
  commentText: Scalars['String']['input'];
@@ -134238,6 +134646,17 @@ export declare type TownsquareProjectsClonePayload = {
134238
134646
  project?: Maybe<TownsquareProject>;
134239
134647
  success: Scalars['Boolean']['output'];
134240
134648
  };
134649
+ export declare type TownsquareProjectsCreateDecisionInput = {
134650
+ description: Scalars['String']['input'];
134651
+ projectId: Scalars['ID']['input'];
134652
+ summary: Scalars['String']['input'];
134653
+ };
134654
+ export declare type TownsquareProjectsCreateDecisionPayload = {
134655
+ __typename?: 'TownsquareProjectsCreateDecisionPayload';
134656
+ decision?: Maybe<TownsquareDecision>;
134657
+ errors?: Maybe<Array<MutationError>>;
134658
+ success: Scalars['Boolean']['output'];
134659
+ };
134241
134660
  export declare type TownsquareProjectsCreateInput = {
134242
134661
  containerId: Scalars['String']['input'];
134243
134662
  icon?: InputMaybe<TownsquareIconInput>;
@@ -134245,6 +134664,17 @@ export declare type TownsquareProjectsCreateInput = {
134245
134664
  private?: InputMaybe<Scalars['Boolean']['input']>;
134246
134665
  targetDate?: InputMaybe<TownsquareTargetDateInput>;
134247
134666
  };
134667
+ export declare type TownsquareProjectsCreateLearningInput = {
134668
+ description: Scalars['String']['input'];
134669
+ projectId: Scalars['ID']['input'];
134670
+ summary: Scalars['String']['input'];
134671
+ };
134672
+ export declare type TownsquareProjectsCreateLearningPayload = {
134673
+ __typename?: 'TownsquareProjectsCreateLearningPayload';
134674
+ errors?: Maybe<Array<MutationError>>;
134675
+ learning?: Maybe<TownsquareLearning>;
134676
+ success: Scalars['Boolean']['output'];
134677
+ };
134248
134678
  export declare type TownsquareProjectsCreateLinkInput = {
134249
134679
  iconUrl?: InputMaybe<Scalars['String']['input']>;
134250
134680
  name?: InputMaybe<Scalars['String']['input']>;
@@ -134271,6 +134701,17 @@ export declare type TownsquareProjectsCreatePayload = {
134271
134701
  project?: Maybe<TownsquareProject>;
134272
134702
  success: Scalars['Boolean']['output'];
134273
134703
  };
134704
+ export declare type TownsquareProjectsCreateRiskInput = {
134705
+ description: Scalars['String']['input'];
134706
+ projectId: Scalars['ID']['input'];
134707
+ summary: Scalars['String']['input'];
134708
+ };
134709
+ export declare type TownsquareProjectsCreateRiskPayload = {
134710
+ __typename?: 'TownsquareProjectsCreateRiskPayload';
134711
+ errors?: Maybe<Array<MutationError>>;
134712
+ risk?: Maybe<TownsquareRisk>;
134713
+ success: Scalars['Boolean']['output'];
134714
+ };
134274
134715
  export declare type TownsquareProjectsCreateUpdateInput = {
134275
134716
  highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
134276
134717
  phase?: InputMaybe<Scalars['String']['input']>;
@@ -134306,6 +134747,17 @@ export declare type TownsquareProjectsDeleteLinkPayload = {
134306
134747
  project?: Maybe<TownsquareProject>;
134307
134748
  success: Scalars['Boolean']['output'];
134308
134749
  };
134750
+ export declare type TownsquareProjectsEditDecisionInput = {
134751
+ decisionId: Scalars['ID']['input'];
134752
+ description?: InputMaybe<Scalars['String']['input']>;
134753
+ summary?: InputMaybe<Scalars['String']['input']>;
134754
+ };
134755
+ export declare type TownsquareProjectsEditDecisionPayload = {
134756
+ __typename?: 'TownsquareProjectsEditDecisionPayload';
134757
+ decision?: Maybe<TownsquareDecision>;
134758
+ errors?: Maybe<Array<MutationError>>;
134759
+ success: Scalars['Boolean']['output'];
134760
+ };
134309
134761
  export declare type TownsquareProjectsEditInput = {
134310
134762
  archived?: InputMaybe<Scalars['Boolean']['input']>;
134311
134763
  description?: InputMaybe<TownsquareProjectDescriptionInput>;
@@ -134315,6 +134767,17 @@ export declare type TownsquareProjectsEditInput = {
134315
134767
  owner?: InputMaybe<Scalars['ID']['input']>;
134316
134768
  startDate?: InputMaybe<Scalars['Date']['input']>;
134317
134769
  };
134770
+ export declare type TownsquareProjectsEditLearningInput = {
134771
+ description?: InputMaybe<Scalars['String']['input']>;
134772
+ learningId: Scalars['ID']['input'];
134773
+ summary?: InputMaybe<Scalars['String']['input']>;
134774
+ };
134775
+ export declare type TownsquareProjectsEditLearningPayload = {
134776
+ __typename?: 'TownsquareProjectsEditLearningPayload';
134777
+ errors?: Maybe<Array<MutationError>>;
134778
+ learning?: Maybe<TownsquareLearning>;
134779
+ success: Scalars['Boolean']['output'];
134780
+ };
134318
134781
  export declare type TownsquareProjectsEditLinkInput = {
134319
134782
  iconUrl?: InputMaybe<Scalars['String']['input']>;
134320
134783
  linkId: Scalars['ID']['input'];
@@ -134339,6 +134802,17 @@ export declare type TownsquareProjectsEditPayload = {
134339
134802
  project?: Maybe<TownsquareProject>;
134340
134803
  success: Scalars['Boolean']['output'];
134341
134804
  };
134805
+ export declare type TownsquareProjectsEditRiskInput = {
134806
+ description?: InputMaybe<Scalars['String']['input']>;
134807
+ riskId: Scalars['ID']['input'];
134808
+ summary?: InputMaybe<Scalars['String']['input']>;
134809
+ };
134810
+ export declare type TownsquareProjectsEditRiskPayload = {
134811
+ __typename?: 'TownsquareProjectsEditRiskPayload';
134812
+ errors?: Maybe<Array<MutationError>>;
134813
+ risk?: Maybe<TownsquareRisk>;
134814
+ success: Scalars['Boolean']['output'];
134815
+ };
134342
134816
  export declare type TownsquareProjectsEditUpdateInput = {
134343
134817
  highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
134344
134818
  status?: InputMaybe<Scalars['String']['input']>;
@@ -136170,7 +136644,7 @@ export declare enum TrelloCheckItemState {
136170
136644
  Complete = "COMPLETE",
136171
136645
  Incomplete = "INCOMPLETE"
136172
136646
  }
136173
- export declare type TrelloChecklist = {
136647
+ export declare type TrelloChecklist = Node & {
136174
136648
  __typename?: 'TrelloChecklist';
136175
136649
  board?: Maybe<TrelloBoard>;
136176
136650
  card?: Maybe<TrelloCard>;
@@ -136187,7 +136661,7 @@ export declare type TrelloChecklistCheckItemsArgs = {
136187
136661
  export declare type TrelloChecklistConnection = {
136188
136662
  __typename?: 'TrelloChecklistConnection';
136189
136663
  edges?: Maybe<Array<TrelloChecklistEdge>>;
136190
- nodes?: Maybe<Array<TrelloChecklist>>;
136664
+ nodes?: Maybe<Array<Maybe<TrelloChecklist>>>;
136191
136665
  pageInfo: PageInfo;
136192
136666
  };
136193
136667
  export declare type TrelloChecklistConnectionUpdated = {
@@ -136202,7 +136676,7 @@ export declare type TrelloChecklistDeleted = {
136202
136676
  export declare type TrelloChecklistEdge = {
136203
136677
  __typename?: 'TrelloChecklistEdge';
136204
136678
  cursor: Scalars['String']['output'];
136205
- node: TrelloChecklist;
136679
+ node?: Maybe<TrelloChecklist>;
136206
136680
  };
136207
136681
  export declare type TrelloChecklistEdgeUpdated = {
136208
136682
  __typename?: 'TrelloChecklistEdgeUpdated';
@@ -137533,12 +138007,17 @@ export declare type TrelloPlanner = {
137533
138007
  accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
137534
138008
  id: Scalars['ID']['output'];
137535
138009
  primaryAccountId?: Maybe<Scalars['ID']['output']>;
138010
+ proposedEvents?: Maybe<TrelloPlannerProposedEventConnection>;
137536
138011
  workspace?: Maybe<TrelloWorkspace>;
137537
138012
  };
137538
138013
  export declare type TrelloPlannerAccountsArgs = {
137539
138014
  after?: InputMaybe<Scalars['String']['input']>;
137540
138015
  first?: InputMaybe<Scalars['Int']['input']>;
137541
138016
  };
138017
+ export declare type TrelloPlannerProposedEventsArgs = {
138018
+ after?: InputMaybe<Scalars['String']['input']>;
138019
+ first?: InputMaybe<Scalars['Int']['input']>;
138020
+ };
137542
138021
  export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
137543
138022
  __typename?: 'TrelloPlannerCalendar';
137544
138023
  color?: Maybe<TrelloPlannerCalendarColor>;
@@ -137852,6 +138331,16 @@ export declare type TrelloPlannerEventBadge = {
137852
138331
  __typename?: 'TrelloPlannerEventBadge';
137853
138332
  hasEvents?: Maybe<Scalars['Boolean']['output']>;
137854
138333
  };
138334
+ export declare type TrelloPlannerProposedEventConnection = {
138335
+ __typename?: 'TrelloPlannerProposedEventConnection';
138336
+ edges?: Maybe<Array<TrelloPlannerProposedEventEdge>>;
138337
+ pageInfo: PageInfo;
138338
+ };
138339
+ export declare type TrelloPlannerProposedEventEdge = {
138340
+ __typename?: 'TrelloPlannerProposedEventEdge';
138341
+ cursor: Scalars['String']['output'];
138342
+ node?: Maybe<TrelloProposedEvent>;
138343
+ };
137855
138344
  export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
137856
138345
  __typename?: 'TrelloPlannerProviderCalendar';
137857
138346
  color?: Maybe<TrelloPlannerCalendarColor>;
@@ -137965,6 +138454,27 @@ export declare type TrelloPowerUpUpdated = {
137965
138454
  __typename?: 'TrelloPowerUpUpdated';
137966
138455
  objectId?: Maybe<Scalars['ID']['output']>;
137967
138456
  };
138457
+ export declare type TrelloProposedEvent = {
138458
+ __typename?: 'TrelloProposedEvent';
138459
+ cards?: Maybe<TrelloProposedEventCardConnection>;
138460
+ endTime?: Maybe<Scalars['DateTime']['output']>;
138461
+ objectId: Scalars['ID']['output'];
138462
+ startTime?: Maybe<Scalars['DateTime']['output']>;
138463
+ };
138464
+ export declare type TrelloProposedEventCardsArgs = {
138465
+ after?: InputMaybe<Scalars['String']['input']>;
138466
+ first?: InputMaybe<Scalars['Int']['input']>;
138467
+ };
138468
+ export declare type TrelloProposedEventCardConnection = {
138469
+ __typename?: 'TrelloProposedEventCardConnection';
138470
+ edges?: Maybe<Array<TrelloProposedEventCardEdge>>;
138471
+ pageInfo: PageInfo;
138472
+ };
138473
+ export declare type TrelloProposedEventCardEdge = {
138474
+ __typename?: 'TrelloProposedEventCardEdge';
138475
+ cursor: Scalars['String']['output'];
138476
+ node?: Maybe<TrelloBaseCard>;
138477
+ };
137968
138478
  export declare type TrelloProposedSmartSchedule = {
137969
138479
  __typename?: 'TrelloProposedSmartSchedule';
137970
138480
  events?: Maybe<Array<TrelloProposedSmartScheduleEvent>>;
@@ -138001,6 +138511,7 @@ export declare type TrelloQueryApi = {
138001
138511
  cardBatch?: Maybe<TrelloCardBatch>;
138002
138512
  cardByShortLink?: Maybe<TrelloCard>;
138003
138513
  cardOrInboxCard?: Maybe<TrelloBaseCard>;
138514
+ checklistsById?: Maybe<Array<Maybe<TrelloChecklist>>>;
138004
138515
  echo?: Maybe<Scalars['String']['output']>;
138005
138516
  echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
138006
138517
  enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
@@ -138059,6 +138570,9 @@ export declare type TrelloQueryApiCardByShortLinkArgs = {
138059
138570
  export declare type TrelloQueryApiCardOrInboxCardArgs = {
138060
138571
  id: Scalars['ID']['input'];
138061
138572
  };
138573
+ export declare type TrelloQueryApiChecklistsByIdArgs = {
138574
+ ids: Array<Scalars['ID']['input']>;
138575
+ };
138062
138576
  export declare type TrelloQueryApiEchosArgs = {
138063
138577
  echo: Array<Scalars['String']['input']>;
138064
138578
  };