@forge/cli-shared 8.9.1-next.2 → 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.
- package/CHANGELOG.md +16 -0
- package/out/graphql/graphql-types.d.ts +677 -10
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +91 -24
- package/out/ui/text.d.ts +20 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +20 -0
- package/package.json +2 -2
|
@@ -2995,6 +2995,34 @@ export declare type AgentStudioJiraKnowledgeFilter = {
|
|
|
2995
2995
|
export declare type AgentStudioJiraKnowledgeFilterInput = {
|
|
2996
2996
|
projectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2997
2997
|
};
|
|
2998
|
+
export declare type AgentStudioJobExecutionHistory = {
|
|
2999
|
+
__typename?: 'AgentStudioJobExecutionHistory';
|
|
3000
|
+
edges: Array<AgentStudioJobExecutionHistoryEdge>;
|
|
3001
|
+
pageInfo: PageInfo;
|
|
3002
|
+
};
|
|
3003
|
+
export declare type AgentStudioJobExecutionHistoryEdge = {
|
|
3004
|
+
__typename?: 'AgentStudioJobExecutionHistoryEdge';
|
|
3005
|
+
cursor: Scalars['String']['output'];
|
|
3006
|
+
node: AgentStudioJobExecutionHistoryNode;
|
|
3007
|
+
};
|
|
3008
|
+
export declare type AgentStudioJobExecutionHistoryNode = {
|
|
3009
|
+
__typename?: 'AgentStudioJobExecutionHistoryNode';
|
|
3010
|
+
agentVersionId?: Maybe<Scalars['String']['output']>;
|
|
3011
|
+
agentVersionName?: Maybe<Scalars['String']['output']>;
|
|
3012
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
3013
|
+
completedItems?: Maybe<Scalars['Int']['output']>;
|
|
3014
|
+
datasetId?: Maybe<Scalars['ID']['output']>;
|
|
3015
|
+
datasetName?: Maybe<Scalars['String']['output']>;
|
|
3016
|
+
failureCount?: Maybe<Scalars['Int']['output']>;
|
|
3017
|
+
jobId: Scalars['ID']['output'];
|
|
3018
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
3019
|
+
runId: Scalars['ID']['output'];
|
|
3020
|
+
runNumber?: Maybe<Scalars['Int']['output']>;
|
|
3021
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
3022
|
+
status?: Maybe<AgentStudioJobRunStatus>;
|
|
3023
|
+
successCount?: Maybe<Scalars['Int']['output']>;
|
|
3024
|
+
totalItems?: Maybe<Scalars['Int']['output']>;
|
|
3025
|
+
};
|
|
2998
3026
|
export declare enum AgentStudioJobRunStatus {
|
|
2999
3027
|
Cancelled = "CANCELLED",
|
|
3000
3028
|
Completed = "COMPLETED",
|
|
@@ -15392,6 +15420,11 @@ export declare type ConfluenceAttachmentSettings = {
|
|
|
15392
15420
|
maxAttachmentSize?: Maybe<Scalars['Long']['output']>;
|
|
15393
15421
|
maxAttachmentsPerUpload?: Maybe<Scalars['Int']['output']>;
|
|
15394
15422
|
};
|
|
15423
|
+
export declare type ConfluenceAudioPreference = {
|
|
15424
|
+
__typename?: 'ConfluenceAudioPreference';
|
|
15425
|
+
length: ConfluenceLength;
|
|
15426
|
+
tone: ConfluenceTone;
|
|
15427
|
+
};
|
|
15395
15428
|
export declare type ConfluenceBasicSpaceRole = {
|
|
15396
15429
|
__typename?: 'ConfluenceBasicSpaceRole';
|
|
15397
15430
|
description: Scalars['String']['output'];
|
|
@@ -15881,6 +15914,10 @@ export declare enum ConfluenceContentAccessRequestStatus {
|
|
|
15881
15914
|
Pending = "PENDING",
|
|
15882
15915
|
PendingSiteApproval = "PENDING_SITE_APPROVAL"
|
|
15883
15916
|
}
|
|
15917
|
+
export declare type ConfluenceContentAccessRequested = {
|
|
15918
|
+
__typename?: 'ConfluenceContentAccessRequested';
|
|
15919
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
15920
|
+
};
|
|
15884
15921
|
export declare type ConfluenceContentAnalyticsCountUserByContentType = {
|
|
15885
15922
|
__typename?: 'ConfluenceContentAnalyticsCountUserByContentType';
|
|
15886
15923
|
nodes: Array<ConfluenceCountGroupByContentItem>;
|
|
@@ -15951,6 +15988,7 @@ export declare type ConfluenceContentModified = {
|
|
|
15951
15988
|
commentReopened?: Maybe<ConfluenceCommentUpdated>;
|
|
15952
15989
|
commentResolved?: Maybe<ConfluenceCommentCreated>;
|
|
15953
15990
|
commentUpdated?: Maybe<ConfluenceCommentUpdated>;
|
|
15991
|
+
contentAccessRequested?: Maybe<ConfluenceContentAccessRequested>;
|
|
15954
15992
|
contentModeUpdated?: Maybe<ConfluenceContentModeUpdated>;
|
|
15955
15993
|
contentRestrictionUpdated?: Maybe<ConfluenceContentRestrictionUpdated>;
|
|
15956
15994
|
contentStateDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
@@ -17129,23 +17167,37 @@ export declare enum ConfluenceImportSpaceTaskState {
|
|
|
17129
17167
|
}
|
|
17130
17168
|
export declare enum ConfluenceImportStatus {
|
|
17131
17169
|
CombinedManifests = "COMBINED_MANIFESTS",
|
|
17170
|
+
CombiningManifests = "COMBINING_MANIFESTS",
|
|
17132
17171
|
Created = "CREATED",
|
|
17172
|
+
CreatedPagesAndSpaces = "CREATED_PAGES_AND_SPACES",
|
|
17133
17173
|
CreatedSpace = "CREATED_SPACE",
|
|
17134
17174
|
CreatingPagesAndSpaces = "CREATING_PAGES_AND_SPACES",
|
|
17175
|
+
CreatingSpace = "CREATING_SPACE",
|
|
17135
17176
|
DetectedExportType = "DETECTED_EXPORT_TYPE",
|
|
17177
|
+
DetectingExportType = "DETECTING_EXPORT_TYPE",
|
|
17136
17178
|
ExportedFrom_3P = "EXPORTED_FROM_3P",
|
|
17137
17179
|
ExportingFrom_3P = "EXPORTING_FROM_3P",
|
|
17138
17180
|
Failed = "FAILED",
|
|
17139
17181
|
FetchedEntitiesToExport = "FETCHED_ENTITIES_TO_EXPORT",
|
|
17140
17182
|
FetchedIdsFrom_3P = "FETCHED_IDS_FROM_3P",
|
|
17141
17183
|
FetchingEntitiesToExport = "FETCHING_ENTITIES_TO_EXPORT",
|
|
17184
|
+
FetchingIdsFrom_3P = "FETCHING_IDS_FROM_3P",
|
|
17185
|
+
Finished = "FINISHED",
|
|
17142
17186
|
ImportedUser = "IMPORTED_USER",
|
|
17143
17187
|
ImportedWhiteboard = "IMPORTED_WHITEBOARD",
|
|
17188
|
+
ImportedWhiteboards = "IMPORTED_WHITEBOARDS",
|
|
17144
17189
|
ImportingUser = "IMPORTING_USER",
|
|
17145
17190
|
ImportingWhiteboards = "IMPORTING_WHITEBOARDS",
|
|
17146
17191
|
NestedUnzipping = "NESTED_UNZIPPING",
|
|
17147
17192
|
PartialFailed = "PARTIAL_FAILED",
|
|
17193
|
+
PreparedMetadata = "PREPARED_METADATA",
|
|
17194
|
+
PreparingMetadata = "PREPARING_METADATA",
|
|
17148
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",
|
|
17149
17201
|
Unzipped = "UNZIPPED",
|
|
17150
17202
|
Unzipping = "UNZIPPING",
|
|
17151
17203
|
Updated = "UPDATED",
|
|
@@ -22502,8 +22554,14 @@ export declare type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
|
|
|
22502
22554
|
export declare type ConvoAiErrorMessage = ConvoAiAgentMessage & {
|
|
22503
22555
|
__typename?: 'ConvoAiErrorMessage';
|
|
22504
22556
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22557
|
+
messageTemplate: ConvoAiErrorMessageTemplate;
|
|
22558
|
+
statusCode: Scalars['Int']['output'];
|
|
22505
22559
|
timeCreated: Scalars['DateTime']['output'];
|
|
22506
22560
|
};
|
|
22561
|
+
export declare enum ConvoAiErrorMessageTemplate {
|
|
22562
|
+
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS",
|
|
22563
|
+
Error = "ERROR"
|
|
22564
|
+
}
|
|
22507
22565
|
export declare type ConvoAiHomeThread = {
|
|
22508
22566
|
__typename?: 'ConvoAiHomeThread';
|
|
22509
22567
|
conversationStarters?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -22763,7 +22821,7 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
|
22763
22821
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
22764
22822
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
22765
22823
|
contributor?: Maybe<CplsContributor>;
|
|
22766
|
-
contributorDataIds?: Maybe<
|
|
22824
|
+
contributorDataIds?: Maybe<CplsContributorDataIdConnection>;
|
|
22767
22825
|
contributors: CplsContributorConnection;
|
|
22768
22826
|
id: Scalars['ID']['output'];
|
|
22769
22827
|
timeCells: Array<CplsTimeCell>;
|
|
@@ -22772,6 +22830,12 @@ export declare type CplsCapacityPlanningPeopleView = {
|
|
|
22772
22830
|
export declare type CplsCapacityPlanningPeopleViewContributorArgs = {
|
|
22773
22831
|
id: Scalars['ID']['input'];
|
|
22774
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
|
+
};
|
|
22775
22839
|
export declare type CplsCapacityPlanningPeopleViewContributorsArgs = {
|
|
22776
22840
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
22777
22841
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22820,6 +22884,20 @@ export declare type CplsContributorConnection = HasPageInfo & {
|
|
|
22820
22884
|
pageInfo: PageInfo;
|
|
22821
22885
|
};
|
|
22822
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
|
+
};
|
|
22823
22901
|
export declare type CplsContributorEdge = {
|
|
22824
22902
|
__typename?: 'CplsContributorEdge';
|
|
22825
22903
|
cursor: Scalars['String']['output'];
|
|
@@ -23798,6 +23876,7 @@ export declare type CsmAiAgentVersion = {
|
|
|
23798
23876
|
coachingContents?: Maybe<Array<CsmAiCoachingContentResult>>;
|
|
23799
23877
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
|
|
23800
23878
|
knowledgeCollection?: Maybe<CsmAiKnowledgeCollectionResult>;
|
|
23879
|
+
publishedAt?: Maybe<Scalars['Long']['output']>;
|
|
23801
23880
|
versionId: Scalars['ID']['output'];
|
|
23802
23881
|
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
23803
23882
|
versionType?: Maybe<Scalars['String']['output']>;
|
|
@@ -27025,9 +27104,15 @@ export declare type DevConsoleAppUsageTopSitesResponse = {
|
|
|
27025
27104
|
error?: Maybe<QueryError>;
|
|
27026
27105
|
resourceUsage?: Maybe<Array<DevConsoleResourceUsageTopSite>>;
|
|
27027
27106
|
};
|
|
27107
|
+
export declare type DevConsoleAppWithoutConsent = {
|
|
27108
|
+
__typename?: 'DevConsoleAppWithoutConsent';
|
|
27109
|
+
id: Scalars['String']['output'];
|
|
27110
|
+
name: Scalars['String']['output'];
|
|
27111
|
+
};
|
|
27028
27112
|
export declare type DevConsoleAppsWithoutConsentResponse = {
|
|
27029
27113
|
__typename?: 'DevConsoleAppsWithoutConsentResponse';
|
|
27030
27114
|
appIds: Array<Scalars['String']['output']>;
|
|
27115
|
+
apps: Array<DevConsoleAppWithoutConsent>;
|
|
27031
27116
|
error?: Maybe<QueryError>;
|
|
27032
27117
|
};
|
|
27033
27118
|
export declare type DevConsoleArchiveDeveloperSpaceInput = {
|
|
@@ -44659,7 +44744,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
44659
44744
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
44660
44745
|
id: Scalars['ID']['output'];
|
|
44661
44746
|
};
|
|
44662
|
-
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;
|
|
44663
44748
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
44664
44749
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
44665
44750
|
value: Scalars['String']['output'];
|
|
@@ -44673,13 +44758,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
44673
44758
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
44674
44759
|
id: Scalars['ID']['output'];
|
|
44675
44760
|
};
|
|
44676
|
-
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;
|
|
44677
44762
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
44678
44763
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
44679
44764
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
44680
44765
|
id: Scalars['ID']['output'];
|
|
44681
44766
|
};
|
|
44682
|
-
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;
|
|
44683
44768
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
44684
44769
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
44685
44770
|
value: Scalars['Boolean']['output'];
|
|
@@ -44788,7 +44873,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
44788
44873
|
V2 = "V2",
|
|
44789
44874
|
V3 = "V3"
|
|
44790
44875
|
}
|
|
44791
|
-
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;
|
|
44792
44877
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
44793
44878
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
44794
44879
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -60719,6 +60804,21 @@ export declare type HelpCenterHomePageTitleInput = {
|
|
|
60719
60804
|
default: Scalars['String']['input'];
|
|
60720
60805
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
60721
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
|
+
};
|
|
60722
60822
|
export declare type HelpCenterLayoutAdf = {
|
|
60723
60823
|
__typename?: 'HelpCenterLayoutAdf';
|
|
60724
60824
|
content?: Maybe<HelpCenterLayoutAdfContentConnection>;
|
|
@@ -60993,6 +61093,23 @@ export declare enum HelpCenterPortalsType {
|
|
|
60993
61093
|
Hidden = "HIDDEN",
|
|
60994
61094
|
Visible = "VISIBLE"
|
|
60995
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
|
+
};
|
|
60996
61113
|
export declare type HelpCenterProductEntityImageInput = {
|
|
60997
61114
|
entityId: Scalars['String']['input'];
|
|
60998
61115
|
entityType: HelpCenterProductEntityType;
|
|
@@ -61005,7 +61122,14 @@ export declare type HelpCenterProductEntityImages = {
|
|
|
61005
61122
|
entityType?: Maybe<HelpCenterProductEntityType>;
|
|
61006
61123
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
61007
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
|
+
};
|
|
61008
61131
|
export declare enum HelpCenterProductEntityType {
|
|
61132
|
+
JsmRequestTypes = "JSM_REQUEST_TYPES",
|
|
61009
61133
|
KnowledgeCards = "KNOWLEDGE_CARDS"
|
|
61010
61134
|
}
|
|
61011
61135
|
export declare type HelpCenterProjectMappingData = {
|
|
@@ -61053,6 +61177,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
61053
61177
|
helpCentersConfig?: Maybe<HelpCentersConfigResult>;
|
|
61054
61178
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
61055
61179
|
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
61180
|
+
hubProductEntities: Array<HelpCenterHubProductEntityResult>;
|
|
61056
61181
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
61057
61182
|
};
|
|
61058
61183
|
export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdArgs = {
|
|
@@ -61118,6 +61243,10 @@ export declare type HelpCenterQueryApiHubMediaConfigArgs = {
|
|
|
61118
61243
|
ari: Scalars['ID']['input'];
|
|
61119
61244
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
61120
61245
|
};
|
|
61246
|
+
export declare type HelpCenterQueryApiHubProductEntitiesArgs = {
|
|
61247
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
61248
|
+
inputs: Array<HelpCenterProductEntityRequestInput>;
|
|
61249
|
+
};
|
|
61121
61250
|
export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
61122
61251
|
helpCenterAri: Scalars['ID']['input'];
|
|
61123
61252
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -62123,6 +62252,15 @@ export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
|
|
|
62123
62252
|
errors?: Maybe<Array<MutationError>>;
|
|
62124
62253
|
success: Scalars['Boolean']['output'];
|
|
62125
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;
|
|
62126
62264
|
export declare type HelpObjectStoreHelpCenterSearchResult = HelpObjectStoreQueryError | HelpObjectStoreSearchResult;
|
|
62127
62265
|
export declare type HelpObjectStoreHelpObject = {
|
|
62128
62266
|
ari: Scalars['ID']['output'];
|
|
@@ -62195,11 +62333,31 @@ export declare enum HelpObjectStorePortalSearchStrategy {
|
|
|
62195
62333
|
Jira = "JIRA",
|
|
62196
62334
|
SearchPlatform = "SEARCH_PLATFORM"
|
|
62197
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;
|
|
62198
62353
|
export declare type HelpObjectStoreQueryApi = {
|
|
62199
62354
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
62200
62355
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
62201
62356
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
62357
|
+
extResources?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
62358
|
+
kbArticles?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
62202
62359
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
62360
|
+
requestTypes?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
62203
62361
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
62204
62362
|
};
|
|
62205
62363
|
export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
@@ -62208,9 +62366,18 @@ export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
62208
62366
|
export declare type HelpObjectStoreQueryApiChannelsArgs = {
|
|
62209
62367
|
ids: Array<Scalars['ID']['input']>;
|
|
62210
62368
|
};
|
|
62369
|
+
export declare type HelpObjectStoreQueryApiExtResourcesArgs = {
|
|
62370
|
+
input: HelpObjectStoreProductEntityInput;
|
|
62371
|
+
};
|
|
62372
|
+
export declare type HelpObjectStoreQueryApiKbArticlesArgs = {
|
|
62373
|
+
input: HelpObjectStoreProductEntityInput;
|
|
62374
|
+
};
|
|
62211
62375
|
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
62212
62376
|
ids: Array<Scalars['ID']['input']>;
|
|
62213
62377
|
};
|
|
62378
|
+
export declare type HelpObjectStoreQueryApiRequestTypesArgs = {
|
|
62379
|
+
input: HelpObjectStoreProductEntityInput;
|
|
62380
|
+
};
|
|
62214
62381
|
export declare type HelpObjectStoreQueryApiSearchHelpObjectsArgs = {
|
|
62215
62382
|
searchInput: HelpObjectStoreSearchInput;
|
|
62216
62383
|
};
|
|
@@ -65710,6 +65877,7 @@ export declare type JiraCfoBoardFilterInput = {
|
|
|
65710
65877
|
creatorAccountId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
65711
65878
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
65712
65879
|
performanceStatus?: InputMaybe<Array<InputMaybe<JiraCfoBoardPerformanceStatus>>>;
|
|
65880
|
+
sortInput?: InputMaybe<Array<InputMaybe<JiraCfoBoardPerformanceSortInput>>>;
|
|
65713
65881
|
};
|
|
65714
65882
|
export declare type JiraCfoBoardPerfStats = {
|
|
65715
65883
|
__typename?: 'JiraCFOBoardPerfStats';
|
|
@@ -65747,6 +65915,14 @@ export declare type JiraCfoBoardPerformanceMetricSummary = JiraCfoMetricSummary
|
|
|
65747
65915
|
boardPerfStats?: Maybe<JiraCfoBoardPerfStats>;
|
|
65748
65916
|
periodComparison?: Maybe<Array<Maybe<JiraCfoMetricComparison>>>;
|
|
65749
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
|
+
}
|
|
65750
65926
|
export declare enum JiraCfoBoardPerformanceStatus {
|
|
65751
65927
|
Fast = "FAST",
|
|
65752
65928
|
Moderate = "MODERATE",
|
|
@@ -69182,7 +69358,7 @@ export declare type JiraFieldToFieldSchemeAssociationsInput = {
|
|
|
69182
69358
|
schemeIdsToAdd: Array<Scalars['ID']['input']>;
|
|
69183
69359
|
schemeIdsToRemove: Array<Scalars['ID']['input']>;
|
|
69184
69360
|
};
|
|
69185
|
-
export declare type JiraFieldToFieldSchemeAssociationsPayload = {
|
|
69361
|
+
export declare type JiraFieldToFieldSchemeAssociationsPayload = Payload & {
|
|
69186
69362
|
__typename?: 'JiraFieldToFieldSchemeAssociationsPayload';
|
|
69187
69363
|
errors?: Maybe<Array<MutationError>>;
|
|
69188
69364
|
success: Scalars['Boolean']['output'];
|
|
@@ -69872,6 +70048,14 @@ export declare type JiraFormulaFieldExpressionConfig = {
|
|
|
69872
70048
|
export declare type JiraFormulaFieldExpressionConfigInput = {
|
|
69873
70049
|
expression?: InputMaybe<Scalars['String']['input']>;
|
|
69874
70050
|
};
|
|
70051
|
+
export declare type JiraFormulaFieldFunctionInfo = {
|
|
70052
|
+
__typename?: 'JiraFormulaFieldFunctionInfo';
|
|
70053
|
+
arity: Scalars['Int']['output'];
|
|
70054
|
+
description: Scalars['String']['output'];
|
|
70055
|
+
name: Scalars['String']['output'];
|
|
70056
|
+
returnType: JiraFormulaFieldType;
|
|
70057
|
+
signature: Scalars['String']['output'];
|
|
70058
|
+
};
|
|
69875
70059
|
export declare type JiraFormulaFieldIssuePreview = {
|
|
69876
70060
|
__typename?: 'JiraFormulaFieldIssuePreview';
|
|
69877
70061
|
missingFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -69912,6 +70096,10 @@ export declare type JiraFormulaFieldSuggestionContext = {
|
|
|
69912
70096
|
previousResponses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69913
70097
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
69914
70098
|
};
|
|
70099
|
+
export declare type JiraFormulaFieldSupportedFunctions = {
|
|
70100
|
+
__typename?: 'JiraFormulaFieldSupportedFunctions';
|
|
70101
|
+
number?: Maybe<Array<JiraFormulaFieldFunctionInfo>>;
|
|
70102
|
+
};
|
|
69915
70103
|
export declare type JiraFormulaFieldTextValue = {
|
|
69916
70104
|
__typename?: 'JiraFormulaFieldTextValue';
|
|
69917
70105
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -70487,6 +70675,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
70487
70675
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
70488
70676
|
isRemoteIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
70489
70677
|
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
70678
|
+
issueAISummary?: Maybe<JiraIssueAiSummaryResult>;
|
|
70490
70679
|
issueColorField?: Maybe<JiraColorField>;
|
|
70491
70680
|
issueId: Scalars['String']['output'];
|
|
70492
70681
|
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
@@ -70743,6 +70932,9 @@ export declare type JiraIssueHistoryArgs = {
|
|
|
70743
70932
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
70744
70933
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
70745
70934
|
};
|
|
70935
|
+
export declare type JiraIssueIssueAiSummaryArgs = {
|
|
70936
|
+
type: JiraIssueAiSummaryType;
|
|
70937
|
+
};
|
|
70746
70938
|
export declare type JiraIssueIssueLinksArgs = {
|
|
70747
70939
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70748
70940
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70823,6 +71015,17 @@ export declare type JiraIssueWorklogsArgs = {
|
|
|
70823
71015
|
sortBy?: InputMaybe<JiraWorklogSortInput>;
|
|
70824
71016
|
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
70825
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
|
+
}
|
|
70826
71029
|
export declare enum JiraIssueActivityType {
|
|
70827
71030
|
Created = "CREATED",
|
|
70828
71031
|
Updated = "UPDATED"
|
|
@@ -71256,6 +71459,7 @@ export declare type JiraIssueExportInput = {
|
|
|
71256
71459
|
modified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71257
71460
|
pagerStart?: InputMaybe<Scalars['Int']['input']>;
|
|
71258
71461
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
71462
|
+
timelineAggregationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71259
71463
|
};
|
|
71260
71464
|
export declare type JiraIssueExportTask = {
|
|
71261
71465
|
__typename?: 'JiraIssueExportTask';
|
|
@@ -73478,6 +73682,9 @@ export declare type JiraJqlProjectFieldValueEdge = {
|
|
|
73478
73682
|
cursor: Scalars['String']['output'];
|
|
73479
73683
|
node?: Maybe<JiraJqlProjectFieldValue>;
|
|
73480
73684
|
};
|
|
73685
|
+
export declare type JiraJqlProjectInput = {
|
|
73686
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
73687
|
+
};
|
|
73481
73688
|
export declare type JiraJqlQueryHydratedError = {
|
|
73482
73689
|
__typename?: 'JiraJqlQueryHydratedError';
|
|
73483
73690
|
error?: Maybe<QueryError>;
|
|
@@ -73511,6 +73718,7 @@ export declare type JiraJqlScopeInput = {
|
|
|
73511
73718
|
board?: InputMaybe<JiraJqlBoardInput>;
|
|
73512
73719
|
list?: InputMaybe<JiraIssueSearchScope>;
|
|
73513
73720
|
plan?: InputMaybe<JiraJqlPlanInput>;
|
|
73721
|
+
project?: InputMaybe<JiraJqlProjectInput>;
|
|
73514
73722
|
};
|
|
73515
73723
|
export declare type JiraJqlSearchTemplate = {
|
|
73516
73724
|
__typename?: 'JiraJqlSearchTemplate';
|
|
@@ -77891,6 +78099,7 @@ export declare type JiraQuery = {
|
|
|
77891
78099
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
77892
78100
|
formulaFieldExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
77893
78101
|
formulaFieldPreview?: Maybe<JiraFormulaFieldPreview>;
|
|
78102
|
+
formulaFieldSupportedFunctions?: Maybe<JiraFormulaFieldSupportedFunctions>;
|
|
77894
78103
|
getArchivedIssues?: Maybe<JiraArchivedIssueConnection>;
|
|
77895
78104
|
getArchivedIssuesFilterOptions?: Maybe<JiraArchivedIssuesFilterOptions>;
|
|
77896
78105
|
getArchivedIssuesForProject?: Maybe<JiraIssueConnection>;
|
|
@@ -78313,6 +78522,10 @@ export declare type JiraQueryFormulaFieldPreviewArgs = {
|
|
|
78313
78522
|
cloudId: Scalars['ID']['input'];
|
|
78314
78523
|
expression: Scalars['String']['input'];
|
|
78315
78524
|
};
|
|
78525
|
+
export declare type JiraQueryFormulaFieldSupportedFunctionsArgs = {
|
|
78526
|
+
cloudId: Scalars['ID']['input'];
|
|
78527
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
78528
|
+
};
|
|
78316
78529
|
export declare type JiraQueryGetArchivedIssuesArgs = {
|
|
78317
78530
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78318
78531
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -85608,7 +85821,27 @@ export declare type JpdViewUpdatedEvent = {
|
|
|
85608
85821
|
viewId: Scalars['Int']['output'];
|
|
85609
85822
|
viewUuid: Scalars['ID']['output'];
|
|
85610
85823
|
};
|
|
85824
|
+
export declare enum JsmChannelsConnectionType {
|
|
85825
|
+
Okta = "OKTA"
|
|
85826
|
+
}
|
|
85611
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
|
+
};
|
|
85612
85845
|
export declare enum JsmChannelsExperience {
|
|
85613
85846
|
EmployeeOnboardingAgent = "EMPLOYEE_ONBOARDING_AGENT",
|
|
85614
85847
|
EmployeeServiceAgent = "EMPLOYEE_SERVICE_AGENT"
|
|
@@ -85636,6 +85869,12 @@ export declare type JsmChannelsFilterConfiguration = {
|
|
|
85636
85869
|
export declare type JsmChannelsFilterConfigurationInput = {
|
|
85637
85870
|
requestTypes?: InputMaybe<Array<JsmChannelsRequestTypesInput>>;
|
|
85638
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
|
+
};
|
|
85639
85878
|
export declare type JsmChannelsOrchestratorConversation = Node & {
|
|
85640
85879
|
__typename?: 'JsmChannelsOrchestratorConversation';
|
|
85641
85880
|
action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
|
|
@@ -85727,6 +85966,33 @@ export declare type JsmChannelsServiceAgentResolutionRunbook = {
|
|
|
85727
85966
|
title: Scalars['String']['output'];
|
|
85728
85967
|
url: Scalars['String']['output'];
|
|
85729
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;
|
|
85730
85996
|
export declare type JsmChannelsTicketServiceAgentResolutionState = {
|
|
85731
85997
|
__typename?: 'JsmChannelsTicketServiceAgentResolutionState';
|
|
85732
85998
|
isLoading: Scalars['Boolean']['output'];
|
|
@@ -87988,6 +88254,7 @@ export declare type LoomMeeting = Node & {
|
|
|
87988
88254
|
__typename?: 'LoomMeeting';
|
|
87989
88255
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
87990
88256
|
external?: Maybe<Scalars['Boolean']['output']>;
|
|
88257
|
+
externalCalendarEventId?: Maybe<Scalars['String']['output']>;
|
|
87991
88258
|
id: Scalars['ID']['output'];
|
|
87992
88259
|
recorder?: Maybe<User>;
|
|
87993
88260
|
recorderId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -95275,18 +95542,28 @@ export declare type Mutation = {
|
|
|
95275
95542
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
95276
95543
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
95277
95544
|
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
95545
|
+
goals_createGoalTypePair?: Maybe<TownsquareCreateGoalTypePairPayload>;
|
|
95278
95546
|
goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
|
|
95279
95547
|
goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
|
|
95280
95548
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
95549
|
+
goals_deleteComment?: Maybe<TownsquareGoalsDeleteCommentPayload>;
|
|
95550
|
+
goals_deleteDecision?: Maybe<TownsquareGoalsDeleteDecisionPayload>;
|
|
95281
95551
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
95552
|
+
goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
|
|
95553
|
+
goals_deleteProjectLink?: Maybe<TownsquareGoalsDeleteProjectLinkPayload>;
|
|
95554
|
+
goals_deleteRisk?: Maybe<TownsquareGoalsDeleteRiskPayload>;
|
|
95282
95555
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
95556
|
+
goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
|
|
95557
|
+
goals_editLearning?: Maybe<TownsquareGoalsEditLearningPayload>;
|
|
95283
95558
|
goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
|
|
95284
95559
|
goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
|
|
95560
|
+
goals_editRisk?: Maybe<TownsquareGoalsEditRiskPayload>;
|
|
95285
95561
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
95286
95562
|
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
95287
95563
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
95288
95564
|
goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
|
|
95289
95565
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
95566
|
+
goals_setWatchingTeam?: Maybe<TownsquareGoalsSetWatchingTeamPayload>;
|
|
95290
95567
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
95291
95568
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
95292
95569
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
@@ -95414,7 +95691,9 @@ export declare type Mutation = {
|
|
|
95414
95691
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
95415
95692
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
95416
95693
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
95694
|
+
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
95417
95695
|
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
95696
|
+
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
95418
95697
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
95419
95698
|
jsw?: Maybe<JswMutation>;
|
|
95420
95699
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -95467,12 +95746,18 @@ export declare type Mutation = {
|
|
|
95467
95746
|
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
95468
95747
|
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
95469
95748
|
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
95749
|
+
projects_createDecision?: Maybe<TownsquareProjectsCreateDecisionPayload>;
|
|
95750
|
+
projects_createLearning?: Maybe<TownsquareProjectsCreateLearningPayload>;
|
|
95470
95751
|
projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
|
|
95752
|
+
projects_createRisk?: Maybe<TownsquareProjectsCreateRiskPayload>;
|
|
95471
95753
|
projects_createUpdate?: Maybe<TownsquareProjectsCreateUpdatePayload>;
|
|
95472
95754
|
projects_deleteLatestUpdate?: Maybe<TownsquareProjectsDeleteLatestUpdatePayload>;
|
|
95473
95755
|
projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
|
|
95474
95756
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
95757
|
+
projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
|
|
95758
|
+
projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
|
|
95475
95759
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
95760
|
+
projects_editRisk?: Maybe<TownsquareProjectsEditRiskPayload>;
|
|
95476
95761
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
95477
95762
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
95478
95763
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
@@ -97077,6 +97362,9 @@ export declare type MutationGoals_CreateAndAddMetricTargetArgs = {
|
|
|
97077
97362
|
export declare type MutationGoals_CreateDecisionArgs = {
|
|
97078
97363
|
input: TownsquareGoalsCreateDecisionInput;
|
|
97079
97364
|
};
|
|
97365
|
+
export declare type MutationGoals_CreateGoalTypePairArgs = {
|
|
97366
|
+
input: TownsquareGoalsCreateGoalTypePairInput;
|
|
97367
|
+
};
|
|
97080
97368
|
export declare type MutationGoals_CreateLearningArgs = {
|
|
97081
97369
|
input: TownsquareGoalsCreateLearningInput;
|
|
97082
97370
|
};
|
|
@@ -97086,18 +97374,42 @@ export declare type MutationGoals_CreateRiskArgs = {
|
|
|
97086
97374
|
export declare type MutationGoals_CreateUpdateArgs = {
|
|
97087
97375
|
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
97088
97376
|
};
|
|
97377
|
+
export declare type MutationGoals_DeleteCommentArgs = {
|
|
97378
|
+
input: TownsquareGoalsDeleteCommentInput;
|
|
97379
|
+
};
|
|
97380
|
+
export declare type MutationGoals_DeleteDecisionArgs = {
|
|
97381
|
+
input: TownsquareGoalsDeleteDecisionInput;
|
|
97382
|
+
};
|
|
97089
97383
|
export declare type MutationGoals_DeleteLatestUpdateArgs = {
|
|
97090
97384
|
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
97091
97385
|
};
|
|
97386
|
+
export declare type MutationGoals_DeleteLearningArgs = {
|
|
97387
|
+
input: TownsquareGoalsDeleteLearningInput;
|
|
97388
|
+
};
|
|
97389
|
+
export declare type MutationGoals_DeleteProjectLinkArgs = {
|
|
97390
|
+
input: TownsquareGoalsDeleteProjectLinkInput;
|
|
97391
|
+
};
|
|
97392
|
+
export declare type MutationGoals_DeleteRiskArgs = {
|
|
97393
|
+
input: TownsquareGoalsDeleteRiskInput;
|
|
97394
|
+
};
|
|
97092
97395
|
export declare type MutationGoals_EditCommentArgs = {
|
|
97093
97396
|
input: TownsquareGoalsEditCommentInput;
|
|
97094
97397
|
};
|
|
97398
|
+
export declare type MutationGoals_EditDecisionArgs = {
|
|
97399
|
+
input: TownsquareGoalsEditDecisionInput;
|
|
97400
|
+
};
|
|
97401
|
+
export declare type MutationGoals_EditLearningArgs = {
|
|
97402
|
+
input: TownsquareGoalsEditLearningInput;
|
|
97403
|
+
};
|
|
97095
97404
|
export declare type MutationGoals_EditMetricArgs = {
|
|
97096
97405
|
input: TownsquareGoalsEditMetricInput;
|
|
97097
97406
|
};
|
|
97098
97407
|
export declare type MutationGoals_EditMetricTargetArgs = {
|
|
97099
97408
|
input: TownsquareGoalsEditMetricTargetInput;
|
|
97100
97409
|
};
|
|
97410
|
+
export declare type MutationGoals_EditRiskArgs = {
|
|
97411
|
+
input: TownsquareGoalsEditRiskInput;
|
|
97412
|
+
};
|
|
97101
97413
|
export declare type MutationGoals_EditUpdateArgs = {
|
|
97102
97414
|
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
97103
97415
|
};
|
|
@@ -97113,6 +97425,9 @@ export declare type MutationGoals_RemoveMetricTargetArgs = {
|
|
|
97113
97425
|
export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
97114
97426
|
input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
|
|
97115
97427
|
};
|
|
97428
|
+
export declare type MutationGoals_SetWatchingTeamArgs = {
|
|
97429
|
+
input: TownsquareGoalsSetWatchingTeamInput;
|
|
97430
|
+
};
|
|
97116
97431
|
export declare type MutationGoals_ShareGoalArgs = {
|
|
97117
97432
|
input: TownsquareGoalsShareGoalInput;
|
|
97118
97433
|
};
|
|
@@ -97502,11 +97817,21 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
97502
97817
|
cloudId: Scalars['ID']['input'];
|
|
97503
97818
|
input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
|
|
97504
97819
|
};
|
|
97820
|
+
export declare type MutationJsmChannels_EstablishConnectionArgs = {
|
|
97821
|
+
input: JsmChannelsEstablishConnectionInput;
|
|
97822
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
97823
|
+
};
|
|
97505
97824
|
export declare type MutationJsmChannels_UpdateExperienceConfigurationArgs = {
|
|
97506
97825
|
experience: JsmChannelsExperience;
|
|
97507
97826
|
input: JsmChannelsExperienceConfigurationInput;
|
|
97508
97827
|
jiraProjectAri: Scalars['ID']['input'];
|
|
97509
97828
|
};
|
|
97829
|
+
export declare type MutationJsmChannels_UpdateTaskAgentConfigurationArgs = {
|
|
97830
|
+
agentName: Scalars['String']['input'];
|
|
97831
|
+
experience: JsmChannelsExperience;
|
|
97832
|
+
input: JsmChannelsTaskAgentConfigurationInput;
|
|
97833
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
97834
|
+
};
|
|
97510
97835
|
export declare type MutationKnowledgeBaseArgs = {
|
|
97511
97836
|
cloudId: Scalars['ID']['input'];
|
|
97512
97837
|
};
|
|
@@ -97636,9 +97961,18 @@ export declare type MutationProjects_CloneArgs = {
|
|
|
97636
97961
|
export declare type MutationProjects_CreateArgs = {
|
|
97637
97962
|
input: TownsquareProjectsCreateInput;
|
|
97638
97963
|
};
|
|
97964
|
+
export declare type MutationProjects_CreateDecisionArgs = {
|
|
97965
|
+
input: TownsquareProjectsCreateDecisionInput;
|
|
97966
|
+
};
|
|
97967
|
+
export declare type MutationProjects_CreateLearningArgs = {
|
|
97968
|
+
input: TownsquareProjectsCreateLearningInput;
|
|
97969
|
+
};
|
|
97639
97970
|
export declare type MutationProjects_CreateLinkArgs = {
|
|
97640
97971
|
input?: InputMaybe<TownsquareProjectsCreateLinkInput>;
|
|
97641
97972
|
};
|
|
97973
|
+
export declare type MutationProjects_CreateRiskArgs = {
|
|
97974
|
+
input: TownsquareProjectsCreateRiskInput;
|
|
97975
|
+
};
|
|
97642
97976
|
export declare type MutationProjects_CreateUpdateArgs = {
|
|
97643
97977
|
input?: InputMaybe<TownsquareProjectsCreateUpdateInput>;
|
|
97644
97978
|
};
|
|
@@ -97651,9 +97985,18 @@ export declare type MutationProjects_DeleteLinkArgs = {
|
|
|
97651
97985
|
export declare type MutationProjects_EditArgs = {
|
|
97652
97986
|
input?: InputMaybe<TownsquareProjectsEditInput>;
|
|
97653
97987
|
};
|
|
97988
|
+
export declare type MutationProjects_EditDecisionArgs = {
|
|
97989
|
+
input: TownsquareProjectsEditDecisionInput;
|
|
97990
|
+
};
|
|
97991
|
+
export declare type MutationProjects_EditLearningArgs = {
|
|
97992
|
+
input: TownsquareProjectsEditLearningInput;
|
|
97993
|
+
};
|
|
97654
97994
|
export declare type MutationProjects_EditLinkArgs = {
|
|
97655
97995
|
input?: InputMaybe<TownsquareProjectsEditLinkInput>;
|
|
97656
97996
|
};
|
|
97997
|
+
export declare type MutationProjects_EditRiskArgs = {
|
|
97998
|
+
input: TownsquareProjectsEditRiskInput;
|
|
97999
|
+
};
|
|
97657
98000
|
export declare type MutationProjects_EditUpdateArgs = {
|
|
97658
98001
|
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
97659
98002
|
};
|
|
@@ -101310,6 +101653,7 @@ export declare type Query = {
|
|
|
101310
101653
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
101311
101654
|
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
101312
101655
|
agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
|
|
101656
|
+
agentStudio_jobExecutionHistory: AgentStudioJobExecutionHistory;
|
|
101313
101657
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
101314
101658
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
101315
101659
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -101470,6 +101814,7 @@ export declare type Query = {
|
|
|
101470
101814
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
101471
101815
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
101472
101816
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
101817
|
+
confluence_getAudioPreference?: Maybe<ConfluenceAudioPreference>;
|
|
101473
101818
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
101474
101819
|
confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
|
|
101475
101820
|
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
@@ -101812,6 +102157,7 @@ export declare type Query = {
|
|
|
101812
102157
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
101813
102158
|
jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
|
|
101814
102159
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
102160
|
+
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
101815
102161
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
101816
102162
|
jsw?: Maybe<JswQuery>;
|
|
101817
102163
|
kitsune_hello?: Maybe<Scalars['String']['output']>;
|
|
@@ -102085,6 +102431,7 @@ export declare type Query = {
|
|
|
102085
102431
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
102086
102432
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
102087
102433
|
teamworkGraph_activitiesLinkedToProject?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
102434
|
+
teamworkGraph_customerSupportMessages?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
102088
102435
|
teamworkGraph_getProjectContext?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
102089
102436
|
teamworkGraph_projectUpdates?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
102090
102437
|
teamworkGraph_teamProjects?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -102424,6 +102771,13 @@ export declare type QueryAgentStudio_InsightsConfigurationArgs = {
|
|
|
102424
102771
|
cloudId: Scalars['String']['input'];
|
|
102425
102772
|
id: Scalars['ID']['input'];
|
|
102426
102773
|
};
|
|
102774
|
+
export declare type QueryAgentStudio_JobExecutionHistoryArgs = {
|
|
102775
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
102776
|
+
cloudId: Scalars['String']['input'];
|
|
102777
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
102778
|
+
productType: AgentStudioProductType;
|
|
102779
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
102780
|
+
};
|
|
102427
102781
|
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
102428
102782
|
containerId: Scalars['ID']['input'];
|
|
102429
102783
|
id: Scalars['ID']['input'];
|
|
@@ -103166,6 +103520,9 @@ export declare type QueryConfluence_GetAllAppsArgs = {
|
|
|
103166
103520
|
cloudId: Scalars['ID']['input'];
|
|
103167
103521
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103168
103522
|
};
|
|
103523
|
+
export declare type QueryConfluence_GetAudioPreferenceArgs = {
|
|
103524
|
+
cloudId: Scalars['ID']['input'];
|
|
103525
|
+
};
|
|
103169
103526
|
export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs = {
|
|
103170
103527
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103171
103528
|
appId: Scalars['ID']['input'];
|
|
@@ -104633,6 +104990,10 @@ export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArg
|
|
|
104633
104990
|
jiraProjectAri: Scalars['ID']['input'];
|
|
104634
104991
|
ticketId: Scalars['ID']['input'];
|
|
104635
104992
|
};
|
|
104993
|
+
export declare type QueryJsmChannels_TaskAgentsArgs = {
|
|
104994
|
+
experience: JsmChannelsExperience;
|
|
104995
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
104996
|
+
};
|
|
104636
104997
|
export declare type QueryKitsune_HelloArgs = {
|
|
104637
104998
|
projectAri: Scalars['ID']['input'];
|
|
104638
104999
|
};
|
|
@@ -105493,6 +105854,7 @@ export declare type QueryStakeholderComms_GetPageUptimePercentageArgs = {
|
|
|
105493
105854
|
};
|
|
105494
105855
|
export declare type QueryStakeholderComms_GetPagesSummaryByCloudIdArgs = {
|
|
105495
105856
|
cloudId: Scalars['String']['input'];
|
|
105857
|
+
filter?: InputMaybe<StakeholderCommsPageStatusFilter>;
|
|
105496
105858
|
};
|
|
105497
105859
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
105498
105860
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
@@ -105595,6 +105957,13 @@ export declare type QueryTeamworkGraph_ActivitiesLinkedToProjectArgs = {
|
|
|
105595
105957
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105596
105958
|
projectId: Scalars['ID']['input'];
|
|
105597
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
|
+
};
|
|
105598
105967
|
export declare type QueryTeamworkGraph_GetProjectContextArgs = {
|
|
105599
105968
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
105600
105969
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130452,6 +130821,52 @@ export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
|
130452
130821
|
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
130453
130822
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
130454
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
|
+
}
|
|
130455
130870
|
export declare enum StakeholderCommsOrderType {
|
|
130456
130871
|
EmailId = "EMAIL_ID",
|
|
130457
130872
|
Status = "STATUS"
|
|
@@ -130523,6 +130938,11 @@ export declare type StakeholderCommsPageResponse = {
|
|
|
130523
130938
|
error?: Maybe<Scalars['String']['output']>;
|
|
130524
130939
|
page?: Maybe<StakeholderCommsPage>;
|
|
130525
130940
|
};
|
|
130941
|
+
export declare enum StakeholderCommsPageStatusFilter {
|
|
130942
|
+
All = "ALL",
|
|
130943
|
+
Draft = "DRAFT",
|
|
130944
|
+
Published = "PUBLISHED"
|
|
130945
|
+
}
|
|
130526
130946
|
export declare type StakeholderCommsPageSummary = {
|
|
130527
130947
|
__typename?: 'StakeholderCommsPageSummary';
|
|
130528
130948
|
componentCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -131125,6 +131545,7 @@ export declare type Subscription = {
|
|
|
131125
131545
|
migrationPlanningService: MigrationPlanningServiceSubscription;
|
|
131126
131546
|
sandbox: SandboxSubscription;
|
|
131127
131547
|
signup: SignupSubscriptionApi;
|
|
131548
|
+
stakeholderComms_opsgenieRiskAssessment?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
131128
131549
|
testing?: Maybe<TestingSubscription>;
|
|
131129
131550
|
trello: TrelloSubscriptionApi;
|
|
131130
131551
|
};
|
|
@@ -131174,6 +131595,9 @@ export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicke
|
|
|
131174
131595
|
jiraProjectAri: Scalars['ID']['input'];
|
|
131175
131596
|
workItemId: Scalars['ID']['input'];
|
|
131176
131597
|
};
|
|
131598
|
+
export declare type SubscriptionStakeholderComms_OpsgenieRiskAssessmentArgs = {
|
|
131599
|
+
changeRequestId: Scalars['ID']['input'];
|
|
131600
|
+
};
|
|
131177
131601
|
export declare enum SummaryType {
|
|
131178
131602
|
Blogpost = "BLOGPOST",
|
|
131179
131603
|
Page = "PAGE"
|
|
@@ -131748,6 +132172,20 @@ export declare type TeamChildrenEdge = {
|
|
|
131748
132172
|
cursor: Scalars['String']['output'];
|
|
131749
132173
|
node?: Maybe<TeamV2>;
|
|
131750
132174
|
};
|
|
132175
|
+
export declare type TeamCreateTeamInput = {
|
|
132176
|
+
description: Scalars['String']['input'];
|
|
132177
|
+
directoryId: Scalars['ID']['input'];
|
|
132178
|
+
displayName: Scalars['String']['input'];
|
|
132179
|
+
members?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
132180
|
+
membershipSettings: TeamMembershipSettings;
|
|
132181
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
132182
|
+
};
|
|
132183
|
+
export declare type TeamCreateTeamPayload = Payload & {
|
|
132184
|
+
__typename?: 'TeamCreateTeamPayload';
|
|
132185
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132186
|
+
success: Scalars['Boolean']['output'];
|
|
132187
|
+
team?: Maybe<TeamV2>;
|
|
132188
|
+
};
|
|
131751
132189
|
export declare type TeamHierarchy = {
|
|
131752
132190
|
__typename?: 'TeamHierarchy';
|
|
131753
132191
|
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
@@ -131814,7 +132252,8 @@ export declare enum TeamMembershipRole {
|
|
|
131814
132252
|
export declare enum TeamMembershipSettings {
|
|
131815
132253
|
External = "EXTERNAL",
|
|
131816
132254
|
MemberInvite = "MEMBER_INVITE",
|
|
131817
|
-
Open = "OPEN"
|
|
132255
|
+
Open = "OPEN",
|
|
132256
|
+
OrgAdminManaged = "ORG_ADMIN_MANAGED"
|
|
131818
132257
|
}
|
|
131819
132258
|
export declare enum TeamMembershipState {
|
|
131820
132259
|
Alumni = "ALUMNI",
|
|
@@ -131826,6 +132265,7 @@ export declare type TeamMutation = {
|
|
|
131826
132265
|
addChild?: Maybe<TeamV2>;
|
|
131827
132266
|
addParent?: Maybe<TeamV2>;
|
|
131828
132267
|
assignTeamToType?: Maybe<TeamV2>;
|
|
132268
|
+
createTeam?: Maybe<TeamCreateTeamPayload>;
|
|
131829
132269
|
createTeamType?: Maybe<TeamType>;
|
|
131830
132270
|
removeChild?: Maybe<TeamV2>;
|
|
131831
132271
|
removeParent?: Maybe<TeamV2>;
|
|
@@ -131846,6 +132286,9 @@ export declare type TeamMutationAssignTeamToTypeArgs = {
|
|
|
131846
132286
|
teamId: Scalars['ID']['input'];
|
|
131847
132287
|
typeId: Scalars['ID']['input'];
|
|
131848
132288
|
};
|
|
132289
|
+
export declare type TeamMutationCreateTeamArgs = {
|
|
132290
|
+
input: TeamCreateTeamInput;
|
|
132291
|
+
};
|
|
131849
132292
|
export declare type TeamMutationCreateTeamTypeArgs = {
|
|
131850
132293
|
scopeId: Scalars['ID']['input'];
|
|
131851
132294
|
typeData: TeamTypeCreationPayload;
|
|
@@ -132006,6 +132449,7 @@ export declare enum TeamState {
|
|
|
132006
132449
|
}
|
|
132007
132450
|
export declare enum TeamStateV2 {
|
|
132008
132451
|
Active = "ACTIVE",
|
|
132452
|
+
Disbanded = "DISBANDED",
|
|
132009
132453
|
Purged = "PURGED"
|
|
132010
132454
|
}
|
|
132011
132455
|
export declare type TeamType = {
|
|
@@ -132786,10 +133230,29 @@ export declare type TownsquareCreateGoalTypeInput = {
|
|
|
132786
133230
|
name: Scalars['String']['input'];
|
|
132787
133231
|
state?: InputMaybe<TownsquareGoalTypeState>;
|
|
132788
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
|
+
};
|
|
132789
133246
|
export declare type TownsquareCreateGoalTypePayload = {
|
|
132790
133247
|
__typename?: 'TownsquareCreateGoalTypePayload';
|
|
132791
133248
|
goalTypeEdge?: Maybe<TownsquareGoalTypeEdge>;
|
|
132792
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
|
+
};
|
|
132793
133256
|
export declare type TownsquareCreateRelationshipsInput = {
|
|
132794
133257
|
relationships: Array<TownsquareRelationshipInput>;
|
|
132795
133258
|
};
|
|
@@ -133116,6 +133579,7 @@ export declare type TownsquareGoalType = Node & {
|
|
|
133116
133579
|
namePlural?: Maybe<TownsquareGoalTypeNamePlural>;
|
|
133117
133580
|
requiresParentGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
133118
133581
|
state?: Maybe<TownsquareGoalTypeState>;
|
|
133582
|
+
successMeasure?: Maybe<TownsquareGoalType>;
|
|
133119
133583
|
};
|
|
133120
133584
|
export declare type TownsquareGoalTypeAllowedChildTypesArgs = {
|
|
133121
133585
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133275,6 +133739,10 @@ export declare type TownsquareGoalsCreateDecisionPayload = {
|
|
|
133275
133739
|
errors?: Maybe<Array<MutationError>>;
|
|
133276
133740
|
success: Scalars['Boolean']['output'];
|
|
133277
133741
|
};
|
|
133742
|
+
export declare type TownsquareGoalsCreateGoalTypePairInput = {
|
|
133743
|
+
goalType: TownsquareCreateGoalTypeInputV2;
|
|
133744
|
+
successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
|
|
133745
|
+
};
|
|
133278
133746
|
export declare type TownsquareGoalsCreateLearningInput = {
|
|
133279
133747
|
description: Scalars['String']['input'];
|
|
133280
133748
|
goalId: Scalars['ID']['input'];
|
|
@@ -133312,6 +133780,24 @@ export declare type TownsquareGoalsCreateUpdatePayload = {
|
|
|
133312
133780
|
success: Scalars['Boolean']['output'];
|
|
133313
133781
|
update?: Maybe<TownsquareGoalUpdate>;
|
|
133314
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
|
+
};
|
|
133315
133801
|
export declare type TownsquareGoalsDeleteLatestUpdateInput = {
|
|
133316
133802
|
updateId: Scalars['ID']['input'];
|
|
133317
133803
|
};
|
|
@@ -133322,6 +133808,34 @@ export declare type TownsquareGoalsDeleteLatestUpdatePayload = {
|
|
|
133322
133808
|
success: Scalars['Boolean']['output'];
|
|
133323
133809
|
updateId?: Maybe<Scalars['ID']['output']>;
|
|
133324
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
|
+
};
|
|
133820
|
+
export declare type TownsquareGoalsDeleteProjectLinkInput = {
|
|
133821
|
+
goalId: Scalars['ID']['input'];
|
|
133822
|
+
projectId: Scalars['ID']['input'];
|
|
133823
|
+
};
|
|
133824
|
+
export declare type TownsquareGoalsDeleteProjectLinkPayload = {
|
|
133825
|
+
__typename?: 'TownsquareGoalsDeleteProjectLinkPayload';
|
|
133826
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133827
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
133828
|
+
success: Scalars['Boolean']['output'];
|
|
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
|
+
};
|
|
133325
133839
|
export declare type TownsquareGoalsEditCommentInput = {
|
|
133326
133840
|
commentId: Scalars['ID']['input'];
|
|
133327
133841
|
commentText: Scalars['String']['input'];
|
|
@@ -133332,6 +133846,28 @@ export declare type TownsquareGoalsEditCommentPayload = {
|
|
|
133332
133846
|
errors?: Maybe<Array<MutationError>>;
|
|
133333
133847
|
success: Scalars['Boolean']['output'];
|
|
133334
133848
|
};
|
|
133849
|
+
export declare type TownsquareGoalsEditDecisionInput = {
|
|
133850
|
+
decisionId: Scalars['ID']['input'];
|
|
133851
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
133852
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
133853
|
+
};
|
|
133854
|
+
export declare type TownsquareGoalsEditDecisionPayload = {
|
|
133855
|
+
__typename?: 'TownsquareGoalsEditDecisionPayload';
|
|
133856
|
+
decision?: Maybe<TownsquareDecision>;
|
|
133857
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133858
|
+
success: Scalars['Boolean']['output'];
|
|
133859
|
+
};
|
|
133860
|
+
export declare type TownsquareGoalsEditLearningInput = {
|
|
133861
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
133862
|
+
learningId: Scalars['ID']['input'];
|
|
133863
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
133864
|
+
};
|
|
133865
|
+
export declare type TownsquareGoalsEditLearningPayload = {
|
|
133866
|
+
__typename?: 'TownsquareGoalsEditLearningPayload';
|
|
133867
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133868
|
+
learning?: Maybe<TownsquareLearning>;
|
|
133869
|
+
success: Scalars['Boolean']['output'];
|
|
133870
|
+
};
|
|
133335
133871
|
export declare type TownsquareGoalsEditMetricInput = {
|
|
133336
133872
|
externalEntityId?: InputMaybe<Scalars['String']['input']>;
|
|
133337
133873
|
metricId: Scalars['ID']['input'];
|
|
@@ -133358,6 +133894,17 @@ export declare type TownsquareGoalsEditMetricTargetPayload = {
|
|
|
133358
133894
|
goal?: Maybe<TownsquareGoal>;
|
|
133359
133895
|
success: Scalars['Boolean']['output'];
|
|
133360
133896
|
};
|
|
133897
|
+
export declare type TownsquareGoalsEditRiskInput = {
|
|
133898
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
133899
|
+
riskId: Scalars['ID']['input'];
|
|
133900
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
133901
|
+
};
|
|
133902
|
+
export declare type TownsquareGoalsEditRiskPayload = {
|
|
133903
|
+
__typename?: 'TownsquareGoalsEditRiskPayload';
|
|
133904
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133905
|
+
risk?: Maybe<TownsquareRisk>;
|
|
133906
|
+
success: Scalars['Boolean']['output'];
|
|
133907
|
+
};
|
|
133361
133908
|
export declare type TownsquareGoalsEditUpdateInput = {
|
|
133362
133909
|
goalUpdateId: Scalars['ID']['input'];
|
|
133363
133910
|
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateEditInput>>>;
|
|
@@ -133417,6 +133964,18 @@ export declare type TownsquareGoalsSetWatchingGoalPayload = {
|
|
|
133417
133964
|
success: Scalars['Boolean']['output'];
|
|
133418
133965
|
user?: Maybe<User>;
|
|
133419
133966
|
};
|
|
133967
|
+
export declare type TownsquareGoalsSetWatchingTeamInput = {
|
|
133968
|
+
goalId: Scalars['ID']['input'];
|
|
133969
|
+
isWatching: Scalars['Boolean']['input'];
|
|
133970
|
+
teamId: Scalars['ID']['input'];
|
|
133971
|
+
};
|
|
133972
|
+
export declare type TownsquareGoalsSetWatchingTeamPayload = {
|
|
133973
|
+
__typename?: 'TownsquareGoalsSetWatchingTeamPayload';
|
|
133974
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133975
|
+
goal?: Maybe<TownsquareGoal>;
|
|
133976
|
+
success: Scalars['Boolean']['output'];
|
|
133977
|
+
team?: Maybe<TeamV2>;
|
|
133978
|
+
};
|
|
133420
133979
|
export declare type TownsquareGoalsShareGoalInput = {
|
|
133421
133980
|
goalId: Scalars['ID']['input'];
|
|
133422
133981
|
users: Array<InputMaybe<TownsquareShareGoalUserInput>>;
|
|
@@ -133556,6 +134115,7 @@ export declare type TownsquareMetric = Node & {
|
|
|
133556
134115
|
archived?: Maybe<Scalars['Boolean']['output']>;
|
|
133557
134116
|
externalEntityId?: Maybe<Scalars['String']['output']>;
|
|
133558
134117
|
id: Scalars['ID']['output'];
|
|
134118
|
+
latestValue?: Maybe<TownsquareMetricValue>;
|
|
133559
134119
|
name?: Maybe<Scalars['String']['output']>;
|
|
133560
134120
|
source?: Maybe<Scalars['String']['output']>;
|
|
133561
134121
|
subType?: Maybe<Scalars['String']['output']>;
|
|
@@ -133619,6 +134179,7 @@ export declare type TownsquareMetricUpdateInput = {
|
|
|
133619
134179
|
export declare type TownsquareMetricValue = Node & {
|
|
133620
134180
|
__typename?: 'TownsquareMetricValue';
|
|
133621
134181
|
id: Scalars['ID']['output'];
|
|
134182
|
+
time?: Maybe<Scalars['DateTime']['output']>;
|
|
133622
134183
|
value?: Maybe<Scalars['Float']['output']>;
|
|
133623
134184
|
};
|
|
133624
134185
|
export declare type TownsquareMetricValueConnection = {
|
|
@@ -134085,6 +134646,17 @@ export declare type TownsquareProjectsClonePayload = {
|
|
|
134085
134646
|
project?: Maybe<TownsquareProject>;
|
|
134086
134647
|
success: Scalars['Boolean']['output'];
|
|
134087
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
|
+
};
|
|
134088
134660
|
export declare type TownsquareProjectsCreateInput = {
|
|
134089
134661
|
containerId: Scalars['String']['input'];
|
|
134090
134662
|
icon?: InputMaybe<TownsquareIconInput>;
|
|
@@ -134092,6 +134664,17 @@ export declare type TownsquareProjectsCreateInput = {
|
|
|
134092
134664
|
private?: InputMaybe<Scalars['Boolean']['input']>;
|
|
134093
134665
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
134094
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
|
+
};
|
|
134095
134678
|
export declare type TownsquareProjectsCreateLinkInput = {
|
|
134096
134679
|
iconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
134097
134680
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -134118,6 +134701,17 @@ export declare type TownsquareProjectsCreatePayload = {
|
|
|
134118
134701
|
project?: Maybe<TownsquareProject>;
|
|
134119
134702
|
success: Scalars['Boolean']['output'];
|
|
134120
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
|
+
};
|
|
134121
134715
|
export declare type TownsquareProjectsCreateUpdateInput = {
|
|
134122
134716
|
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
134123
134717
|
phase?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -134153,6 +134747,17 @@ export declare type TownsquareProjectsDeleteLinkPayload = {
|
|
|
134153
134747
|
project?: Maybe<TownsquareProject>;
|
|
134154
134748
|
success: Scalars['Boolean']['output'];
|
|
134155
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
|
+
};
|
|
134156
134761
|
export declare type TownsquareProjectsEditInput = {
|
|
134157
134762
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
134158
134763
|
description?: InputMaybe<TownsquareProjectDescriptionInput>;
|
|
@@ -134162,6 +134767,17 @@ export declare type TownsquareProjectsEditInput = {
|
|
|
134162
134767
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
134163
134768
|
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
134164
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
|
+
};
|
|
134165
134781
|
export declare type TownsquareProjectsEditLinkInput = {
|
|
134166
134782
|
iconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
134167
134783
|
linkId: Scalars['ID']['input'];
|
|
@@ -134186,6 +134802,17 @@ export declare type TownsquareProjectsEditPayload = {
|
|
|
134186
134802
|
project?: Maybe<TownsquareProject>;
|
|
134187
134803
|
success: Scalars['Boolean']['output'];
|
|
134188
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
|
+
};
|
|
134189
134816
|
export declare type TownsquareProjectsEditUpdateInput = {
|
|
134190
134817
|
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
134191
134818
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -136017,7 +136644,7 @@ export declare enum TrelloCheckItemState {
|
|
|
136017
136644
|
Complete = "COMPLETE",
|
|
136018
136645
|
Incomplete = "INCOMPLETE"
|
|
136019
136646
|
}
|
|
136020
|
-
export declare type TrelloChecklist = {
|
|
136647
|
+
export declare type TrelloChecklist = Node & {
|
|
136021
136648
|
__typename?: 'TrelloChecklist';
|
|
136022
136649
|
board?: Maybe<TrelloBoard>;
|
|
136023
136650
|
card?: Maybe<TrelloCard>;
|
|
@@ -136034,7 +136661,7 @@ export declare type TrelloChecklistCheckItemsArgs = {
|
|
|
136034
136661
|
export declare type TrelloChecklistConnection = {
|
|
136035
136662
|
__typename?: 'TrelloChecklistConnection';
|
|
136036
136663
|
edges?: Maybe<Array<TrelloChecklistEdge>>;
|
|
136037
|
-
nodes?: Maybe<Array<TrelloChecklist
|
|
136664
|
+
nodes?: Maybe<Array<Maybe<TrelloChecklist>>>;
|
|
136038
136665
|
pageInfo: PageInfo;
|
|
136039
136666
|
};
|
|
136040
136667
|
export declare type TrelloChecklistConnectionUpdated = {
|
|
@@ -136049,7 +136676,7 @@ export declare type TrelloChecklistDeleted = {
|
|
|
136049
136676
|
export declare type TrelloChecklistEdge = {
|
|
136050
136677
|
__typename?: 'TrelloChecklistEdge';
|
|
136051
136678
|
cursor: Scalars['String']['output'];
|
|
136052
|
-
node
|
|
136679
|
+
node?: Maybe<TrelloChecklist>;
|
|
136053
136680
|
};
|
|
136054
136681
|
export declare type TrelloChecklistEdgeUpdated = {
|
|
136055
136682
|
__typename?: 'TrelloChecklistEdgeUpdated';
|
|
@@ -137380,12 +138007,17 @@ export declare type TrelloPlanner = {
|
|
|
137380
138007
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
137381
138008
|
id: Scalars['ID']['output'];
|
|
137382
138009
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
138010
|
+
proposedEvents?: Maybe<TrelloPlannerProposedEventConnection>;
|
|
137383
138011
|
workspace?: Maybe<TrelloWorkspace>;
|
|
137384
138012
|
};
|
|
137385
138013
|
export declare type TrelloPlannerAccountsArgs = {
|
|
137386
138014
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137387
138015
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137388
138016
|
};
|
|
138017
|
+
export declare type TrelloPlannerProposedEventsArgs = {
|
|
138018
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138019
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138020
|
+
};
|
|
137389
138021
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
137390
138022
|
__typename?: 'TrelloPlannerCalendar';
|
|
137391
138023
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -137699,6 +138331,16 @@ export declare type TrelloPlannerEventBadge = {
|
|
|
137699
138331
|
__typename?: 'TrelloPlannerEventBadge';
|
|
137700
138332
|
hasEvents?: Maybe<Scalars['Boolean']['output']>;
|
|
137701
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
|
+
};
|
|
137702
138344
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
137703
138345
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
137704
138346
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -137812,6 +138454,27 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
137812
138454
|
__typename?: 'TrelloPowerUpUpdated';
|
|
137813
138455
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
137814
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
|
+
};
|
|
137815
138478
|
export declare type TrelloProposedSmartSchedule = {
|
|
137816
138479
|
__typename?: 'TrelloProposedSmartSchedule';
|
|
137817
138480
|
events?: Maybe<Array<TrelloProposedSmartScheduleEvent>>;
|
|
@@ -137848,6 +138511,7 @@ export declare type TrelloQueryApi = {
|
|
|
137848
138511
|
cardBatch?: Maybe<TrelloCardBatch>;
|
|
137849
138512
|
cardByShortLink?: Maybe<TrelloCard>;
|
|
137850
138513
|
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
138514
|
+
checklistsById?: Maybe<Array<Maybe<TrelloChecklist>>>;
|
|
137851
138515
|
echo?: Maybe<Scalars['String']['output']>;
|
|
137852
138516
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
137853
138517
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -137906,6 +138570,9 @@ export declare type TrelloQueryApiCardByShortLinkArgs = {
|
|
|
137906
138570
|
export declare type TrelloQueryApiCardOrInboxCardArgs = {
|
|
137907
138571
|
id: Scalars['ID']['input'];
|
|
137908
138572
|
};
|
|
138573
|
+
export declare type TrelloQueryApiChecklistsByIdArgs = {
|
|
138574
|
+
ids: Array<Scalars['ID']['input']>;
|
|
138575
|
+
};
|
|
137909
138576
|
export declare type TrelloQueryApiEchosArgs = {
|
|
137910
138577
|
echo: Array<Scalars['String']['input']>;
|
|
137911
138578
|
};
|