npm package diff
Package: @forge/cli-shared
Versions: 6.6.1-next.10 - 6.6.1-next.11
File: package/out/graphql/graphql-types.d.ts
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -3224,20 +3224,13 @@
export declare enum CatchupOverviewUpdateType {
SinceLastViewed = "SINCE_LAST_VIEWED",
SinceLastViewedMarkdown = "SINCE_LAST_VIEWED_MARKDOWN"
}
-export declare enum CatchupUpdateType {
- TopN = "TOP_N"
-}
export declare type CatchupVersionDiffMetadataResponse = {
__typename?: 'CatchupVersionDiffMetadataResponse';
collaborators?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
isDiffEmpty?: Maybe<Scalars['Boolean']['output']>;
};
-export declare type CatchupVersionSummaryMetadataForContent = {
- __typename?: 'CatchupVersionSummaryMetadataForContent';
- versionSummaryMetadata?: Maybe<Array<VersionSummaryMetaDataItem>>;
-};
export declare type CcpAccountDetails = CommerceAccountDetails & {
__typename?: 'CcpAccountDetails';
invoiceGroup?: Maybe<CcpInvoiceGroup>;
invoiceGroupId?: Maybe<Scalars['ID']['output']>;
@@ -9038,8 +9031,14 @@
__typename?: 'ConfluenceCommentLinks';
base?: Maybe<Scalars['String']['output']>;
webUi?: Maybe<Scalars['String']['output']>;
};
+export declare type ConfluenceCommentResolutionState = {
+ __typename?: 'ConfluenceCommentResolutionState';
+ commentId: Scalars['ID']['output'];
+ resolveProperties?: Maybe<InlineCommentResolveProperties>;
+ status?: Maybe<Scalars['Boolean']['output']>;
+};
export declare enum ConfluenceCommentState {
Resolved = "RESOLVED",
Unresolved = "UNRESOLVED"
}
@@ -15525,8 +15524,14 @@
__typename?: 'ConfluenceRedactionMetadataEdge';
cursor?: Maybe<Scalars['String']['output']>;
node?: Maybe<ConfluenceRedactionMetadata>;
};
+export declare type ConfluenceReopenCommentPayload = Payload & {
+ __typename?: 'ConfluenceReopenCommentPayload';
+ commentResolutionStates?: Maybe<ConfluenceCommentResolutionState>;
+ errors?: Maybe<Array<MutationError>>;
+ success: Scalars['Boolean']['output'];
+};
export declare type ConfluenceReopenInlineCommentInput = {
id: Scalars['ID']['input'];
};
export declare type ConfluenceReopenInlineCommentPayload = {
@@ -15544,8 +15549,14 @@
comment?: Maybe<ConfluenceComment>;
errors?: Maybe<Array<MutationError>>;
success: Scalars['Boolean']['output'];
};
+export declare type ConfluenceResolveCommentsPayload = Payload & {
+ __typename?: 'ConfluenceResolveCommentsPayload';
+ commentResolutionStates?: Maybe<Array<Maybe<ConfluenceCommentResolutionState>>>;
+ errors?: Maybe<Array<MutationError>>;
+ success: Scalars['Boolean']['output'];
+};
export declare type ConfluenceResolveInlineCommentInput = {
id: Scalars['ID']['input'];
};
export declare type ConfluenceResolveInlineCommentPayload = {
@@ -23274,31 +23285,62 @@
export declare enum EcosystemLicenseMode {
Agent = "AGENT",
UserAccess = "USER_ACCESS"
}
+export declare type EcosystemMarketplaceAppDeployment = {
+ frameworkId: Scalars['String']['output'];
+};
export declare type EcosystemMarketplaceAppVersion = {
__typename?: 'EcosystemMarketplaceAppVersion';
buildNumber: Scalars['Float']['output'];
+ deployment?: Maybe<EcosystemMarketplaceAppDeployment>;
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
isSupported?: Maybe<Scalars['Boolean']['output']>;
paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
version: Scalars['String']['output'];
};
+export declare type EcosystemMarketplaceCloudAppDeployment = EcosystemMarketplaceAppDeployment & {
+ __typename?: 'EcosystemMarketplaceCloudAppDeployment';
+ cloudAppEnvironmentId?: Maybe<Scalars['ID']['output']>;
+ cloudAppId?: Maybe<Scalars['ID']['output']>;
+ cloudAppVersionId: Scalars['ID']['output'];
+ frameworkId: Scalars['String']['output'];
+};
+export declare type EcosystemMarketplaceConnectAppDeployment = EcosystemMarketplaceAppDeployment & {
+ __typename?: 'EcosystemMarketplaceConnectAppDeployment';
+ descriptorUrl?: Maybe<Scalars['String']['output']>;
+ frameworkId: Scalars['String']['output'];
+};
export declare type EcosystemMarketplaceData = {
__typename?: 'EcosystemMarketplaceData';
appId?: Maybe<Scalars['ID']['output']>;
appKey?: Maybe<Scalars['String']['output']>;
cloudAppId: Scalars['ID']['output'];
forumsUrl?: Maybe<Scalars['String']['output']>;
issueTrackerUrl?: Maybe<Scalars['String']['output']>;
listingStatus?: Maybe<EcosystemMarketplaceListingStatus>;
+ logo?: Maybe<EcosystemMarketplaceListingImage>;
name?: Maybe<Scalars['String']['output']>;
partner?: Maybe<EcosystemMarketplacePartner>;
+ privacyPolicyUrl?: Maybe<Scalars['String']['output']>;
slug?: Maybe<Scalars['String']['output']>;
supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
wikiUrl?: Maybe<Scalars['String']['output']>;
};
+export declare type EcosystemMarketplaceExternalFrameworkAppDeployment = EcosystemMarketplaceAppDeployment & {
+ __typename?: 'EcosystemMarketplaceExternalFrameworkAppDeployment';
+ frameworkId: Scalars['String']['output'];
+};
+export declare type EcosystemMarketplaceImageFile = {
+ __typename?: 'EcosystemMarketplaceImageFile';
+ id?: Maybe<Scalars['String']['output']>;
+ uri?: Maybe<Scalars['String']['output']>;
+};
+export declare type EcosystemMarketplaceListingImage = {
+ __typename?: 'EcosystemMarketplaceListingImage';
+ original?: Maybe<EcosystemMarketplaceImageFile>;
+};
export declare enum EcosystemMarketplaceListingStatus {
Private = "PRIVATE",
Public = "PUBLIC",
ReadyToLaunch = "READY_TO_LAUNCH",
@@ -25030,8 +25072,10 @@
users?: Maybe<Array<Maybe<Person>>>;
};
export declare type FooterComment = CommentLocation & {
__typename?: 'FooterComment';
+ commentRepliesCount: Scalars['Int']['output'];
+ commentResolveProperties?: Maybe<InlineCommentResolveProperties>;
type: Scalars['String']['output'];
};
export declare type ForYouFeedItem = {
__typename?: 'ForYouFeedItem';
@@ -25713,8 +25757,22 @@
InvocationError = "INVOCATION_ERROR",
InvocationLatency = "INVOCATION_LATENCY",
InvocationSuccessRate = "INVOCATION_SUCCESS_RATE"
}
+export declare enum ForgeMetricsCustomGroupByDimensions {
+ CustomMetricName = "CUSTOM_METRIC_NAME"
+}
+export declare type ForgeMetricsCustomQueryFilters = {
+ appVersions?: InputMaybe<Array<Scalars['String']['input']>>;
+ contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
+ environment?: InputMaybe<Scalars['ID']['input']>;
+ functionNames?: InputMaybe<Array<Scalars['String']['input']>>;
+ interval: ForgeMetricsIntervalInput;
+};
+export declare type ForgeMetricsCustomQueryInput = {
+ filters: ForgeMetricsCustomQueryFilters;
+ groupBy?: InputMaybe<Array<ForgeMetricsCustomGroupByDimensions>>;
+};
export declare type ForgeMetricsData = {
name: Scalars['String']['output'];
series?: Maybe<Array<ForgeMetricsSeries>>;
type: ForgeMetricsDataType;
@@ -25867,8 +25925,9 @@
appId: Scalars['ID']['output'];
appMetrics: ForgeMetricsOtlpResult;
cacheHitRate: ForgeMetricsSuccessRateResult;
chartInsight: ForgeMetricsChartInsightResult;
+ customMetrics: ForgeMetricsInvocationsResult;
errors: ForgeMetricsErrorsResult;
errorsValue: ForgeMetricsErrorsValueResult;
invocations: ForgeMetricsInvocationsResult;
invocationsValue: ForgeMetricsInvocationsValueResult;
@@ -25902,8 +25961,11 @@
};
export declare type ForgeMetricsQueryChartInsightArgs = {
query: ForgeMetricsChartInsightQueryInput;
};
+export declare type ForgeMetricsQueryCustomMetricsArgs = {
+ query: ForgeMetricsCustomQueryInput;
+};
export declare type ForgeMetricsQueryErrorsArgs = {
query: ForgeMetricsQueryInput;
};
export declare type ForgeMetricsQueryErrorsValueArgs = {
@@ -29949,8 +30011,9 @@
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
+ graphEntityReplicates3pEntityInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection>;
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
@@ -31178,8 +31241,15 @@
first?: InputMaybe<Scalars['Int']['input']>;
id: Scalars['ID']['input'];
sort?: InputMaybe<GraphStoreGraphDocument3pDocumentSortInput>;
};
+export declare type GraphStoreGraphEntityReplicates3pEntityInverseArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
+ first?: InputMaybe<Scalars['Int']['input']>;
+ id: Scalars['ID']['input'];
+ sort?: InputMaybe<GraphStoreGraphEntityReplicates3pEntitySortInput>;
+};
export declare type GraphStoreGroupCanViewConfluenceSpaceArgs = {
after?: InputMaybe<Scalars['String']['input']>;
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
@@ -35700,8 +35770,18 @@
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
to: Scalars['ID']['input'];
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
};
+export declare enum GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationLinkTypeInput {
+ ExistingWorkItem = "EXISTING_WORK_ITEM",
+ NewWorkItem = "NEW_WORK_ITEM",
+ NotSet = "NOT_SET"
+}
+export declare enum GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationStatusInput {
+ Accepted = "ACCEPTED",
+ Open = "OPEN",
+ Rejected = "REJECTED"
+}
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationInput = {
relationships: Array<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput>;
};
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload = Payload & {
@@ -35718,8 +35798,10 @@
};
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput = {
SupportEscalationLastUpdated?: InputMaybe<Scalars['Long']['input']>;
creatorAri?: InputMaybe<Scalars['String']['input']>;
+ linkType?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationLinkTypeInput>;
+ status?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationStatusInput>;
};
export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
};
@@ -39854,8 +39936,11 @@
}
export declare type GraphStoreGraphDocument3pDocumentSortInput = {
lastModified?: InputMaybe<GraphStoreSortInput>;
};
+export declare type GraphStoreGraphEntityReplicates3pEntitySortInput = {
+ lastModified?: InputMaybe<GraphStoreSortInput>;
+};
export declare type GraphStoreGroupCanViewConfluenceSpaceSortInput = {
lastModified?: InputMaybe<GraphStoreSortInput>;
};
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput = {
@@ -40017,10 +40102,30 @@
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
+ relationship_linkType?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkTypeFilterInput>;
+ relationship_status?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatusFilterInput>;
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
};
+export declare enum GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType {
+ ExistingWorkItem = "EXISTING_WORK_ITEM",
+ NewWorkItem = "NEW_WORK_ITEM",
+ NotSet = "NOT_SET"
+}
+export declare type GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkTypeFilterInput = {
+ is?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType>>;
+ isNot?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType>>;
+};
+export declare enum GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus {
+ Accepted = "ACCEPTED",
+ Open = "OPEN",
+ Rejected = "REJECTED"
+}
+export declare type GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatusFilterInput = {
+ is?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus>>;
+ isNot?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus>>;
+};
export declare type GraphStoreJcsIssueAssociatedSupportEscalationFilterInput = {
and?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
or?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
};
@@ -40029,8 +40134,10 @@
fromAti?: InputMaybe<GraphStoreSortInput>;
lastModified?: InputMaybe<GraphStoreSortInput>;
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreSortInput>;
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
+ relationship_linkType?: InputMaybe<GraphStoreSortInput>;
+ relationship_status?: InputMaybe<GraphStoreSortInput>;
toAti?: InputMaybe<GraphStoreSortInput>;
};
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
lastModified?: InputMaybe<GraphStoreSortInput>;
@@ -41999,8 +42106,22 @@
lastUpdated: Scalars['DateTime']['output'];
node?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion>;
};
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion = DevOpsDocument | ExternalDocument;
+export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection = HasPageInfo & {
+ __typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection';
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge>>>;
+ pageInfo: PageInfo;
+};
+export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge = {
+ __typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge';
+ createdAt: Scalars['DateTime']['output'];
+ cursor?: Maybe<Scalars['String']['output']>;
+ id: Scalars['ID']['output'];
+ lastUpdated: Scalars['DateTime']['output'];
+ node?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion>;
+};
+export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion = DevOpsDocument | ExternalDocument | ExternalRemoteLink;
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
pageInfo: PageInfo;
@@ -49602,8 +49723,9 @@
id: Scalars['ID']['input'];
};
export declare type HelpLayoutQueryApiLayoutByParentIdArgs = {
filter?: InputMaybe<HelpLayoutFilter>;
+ helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
parentAri: Scalars['ID']['input'];
};
export declare type HelpLayoutQueryApiMediaConfigArgs = {
filter?: InputMaybe<HelpLayoutFilter>;
@@ -69403,10 +69525,13 @@
dates?: InputMaybe<DateSearchInput>;
functionKey?: InputMaybe<Scalars['String']['input']>;
functionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
installationContexts?: InputMaybe<Array<Scalars['ID']['input']>>;
+ invocationId?: InputMaybe<Scalars['String']['input']>;
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
+ moduleType?: InputMaybe<Scalars['String']['input']>;
msg?: InputMaybe<Scalars['String']['input']>;
+ traceId?: InputMaybe<Scalars['String']['input']>;
};
export declare type LookAndFeel = {
__typename?: 'LookAndFeel';
bordersAndDividers?: Maybe<BordersAndDividersLookAndFeel>;
@@ -69545,8 +69670,9 @@
__typename?: 'LpCourseProgress';
completedDate?: Maybe<Scalars['String']['output']>;
courseId?: Maybe<Scalars['String']['output']>;
id?: Maybe<Scalars['String']['output']>;
+ isFromIntellum: Scalars['Boolean']['output'];
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
status?: Maybe<LpCourseStatus>;
title?: Maybe<Scalars['String']['output']>;
url?: Maybe<Scalars['String']['output']>;
@@ -69941,10 +70067,12 @@
appSoftwareId: Scalars['ID']['output'];
buildNumber: Scalars['ID']['output'];
changelog?: Maybe<MarketplaceConsoleAppSoftwareVersionChangelog>;
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibility>;
+ editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetails;
isBeta: Scalars['Boolean']['output'];
+ isLatest?: Maybe<Scalars['Boolean']['output']>;
isSupported: Scalars['Boolean']['output'];
licenseType?: Maybe<MarketplaceConsoleAppSoftwareVersionLicenseType>;
sourceCodeLicense?: Maybe<MarketplaceConsoleSourceCodeLicense>;
state: MarketplaceConsoleAppSoftwareVersionState;
@@ -73545,8 +73673,10 @@
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
+ confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
+ confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
@@ -74510,8 +74640,16 @@
export declare type MutationConfluence_MakeSubCalendarPrivateUrlArgs = {
cloudId: Scalars['ID']['input'];
input: ConfluenceMakeSubCalendarPrivateUrlInput;
};
+export declare type MutationConfluence_ReopenCommentArgs = {
+ cloudId: Scalars['ID']['input'];
+ commentId: Scalars['ID']['input'];
+};
+export declare type MutationConfluence_ResolveCommentsArgs = {
+ cloudId: Scalars['ID']['input'];
+ commentIds: Array<InputMaybe<Scalars['ID']['input']>>;
+};
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
cloudId: Scalars['ID']['input'];
input: ConfluenceUnwatchSubCalendarInput;
};
@@ -78164,9 +78302,8 @@
canvasToken?: Maybe<CanvasToken>;
catchupEditMetadataForContent?: Maybe<CatchupEditMetadataForContent>;
catchupGetLastViewedTime?: Maybe<CatchupLastViewedTimeResponse>;
catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
- catchupVersionSummaryMetadataForContent?: Maybe<CatchupVersionSummaryMetadataForContent>;
ccp?: Maybe<CcpQueryApi>;
classificationLevel?: Maybe<ContentDataClassificationLevel>;
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
codeInJira?: Maybe<CodeInJira>;
@@ -78748,9 +78885,8 @@
suggestions?: Maybe<AutoSuggestionApi>;
team?: Maybe<TeamQuery>;
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
teamLabels?: Maybe<PaginatedLabelList>;
- teamPresence?: Maybe<TeamPresence>;
template?: Maybe<ContentPlatformTemplate>;
templateBodies?: Maybe<PaginatedTemplateBodyList>;
templateCategories?: Maybe<PaginatedTemplateCategoryList>;
templateCollection?: Maybe<ContentPlatformTemplateCollection>;
@@ -78995,14 +79131,8 @@
contentType: CatchupContentType;
originalContentVersion: Scalars['Int']['input'];
revisedContentVersion: Scalars['Int']['input'];
};
-export declare type QueryCatchupVersionSummaryMetadataForContentArgs = {
- contentId: Scalars['ID']['input'];
- contentType: CatchupContentType;
- endTimeMs: Scalars['Long']['input'];
- updateType: CatchupUpdateType;
-};
export declare type QueryClassificationLevelArgs = {
id: Scalars['String']['input'];
};
export declare type QueryClassificationLevelsArgs = {
@@ -80057,9 +80187,9 @@
export declare type QueryConfluence_UserContentAccessArgs = {
accessType: ResourceAccessType;
accountIds: Array<InputMaybe<Scalars['String']['input']>>;
cloudId: Scalars['ID']['input'];
- contentId: Scalars['Long']['input'];
+ contentId: Scalars['ID']['input'];
};
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
applicationId: Scalars['ID']['input'];
cloudId: Scalars['ID']['input'];
@@ -82156,8 +82286,14 @@
export declare type RemoveUserSpacePermissionsInput = {
accountId: Scalars['String']['input'];
spaceKey: Scalars['String']['input'];
};
+export declare type ReopenCommentsMutationErrorExtension = MutationErrorExtension & {
+ __typename?: 'ReopenCommentsMutationErrorExtension';
+ commentId?: Maybe<Scalars['ID']['output']>;
+ errorType?: Maybe<Scalars['String']['output']>;
+ statusCode?: Maybe<Scalars['Int']['output']>;
+};
export declare type ReplyInlineCommentInput = {
commentBody: CommentBody;
commentSource?: InputMaybe<Platform>;
containerId: Scalars['ID']['input'];
@@ -82200,8 +82336,14 @@
__typename?: 'ResetToDefaultSpaceRoleAssignmentsPayload';
errors?: Maybe<Array<MutationError>>;
success: Scalars['Boolean']['output'];
};
+export declare type ResolveCommentsMutationErrorExtension = MutationErrorExtension & {
+ __typename?: 'ResolveCommentsMutationErrorExtension';
+ commentId?: Maybe<Scalars['ID']['output']>;
+ errorType?: Maybe<Scalars['String']['output']>;
+ statusCode?: Maybe<Scalars['Int']['output']>;
+};
export declare type ResolveInlineCommentPayload = {
__typename?: 'ResolveInlineCommentPayload';
resolveProperties?: Maybe<InlineCommentResolveProperties>;
status: Scalars['Boolean']['output'];
@@ -86843,11 +86985,14 @@
ArchivePage = "ARCHIVE_PAGE",
ArchiveSpace = "ARCHIVE_SPACE",
Comment = "COMMENT",
CreateAttachment = "CREATE_ATTACHMENT",
+ CreateBlog = "CREATE_BLOG",
CreateEditPage = "CREATE_EDIT_PAGE",
DeleteSpace = "DELETE_SPACE",
EditBlog = "EDIT_BLOG",
+ EditNativeContent = "EDIT_NATIVE_CONTENT",
+ ExportContent = "EXPORT_CONTENT",
ExportPage = "EXPORT_PAGE",
ExportSpace = "EXPORT_SPACE",
ManageGuestUsers = "MANAGE_GUEST_USERS",
ManageNonlicensedUsers = "MANAGE_NONLICENSED_USERS",
@@ -87894,12 +88039,8 @@
principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
principalsToRemove: Array<InputMaybe<Scalars['ID']['input']>>;
role: TeamRole;
};
-export declare type TeamPresence = {
- __typename?: 'TeamPresence';
- isEnabledOnContentView: Scalars['Boolean']['output'];
-};
export declare type TeamPrincipal = {
__typename?: 'TeamPrincipal';
principalId?: Maybe<Scalars['ID']['output']>;
};
@@ -89004,8 +89145,9 @@
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
name: Scalars['String']['output'];
owner?: Maybe<User>;
+ startDate?: Maybe<Scalars['DateTime']['output']>;
state?: Maybe<TownsquareProjectState>;
tags?: Maybe<TownsquareTagConnection>;
updates?: Maybe<TownsquareProjectUpdateConnection>;
url?: Maybe<Scalars['String']['output']>;
@@ -91617,8 +91759,9 @@
isForumsModerator: Scalars['Boolean']['output'];
isLinked: Scalars['Boolean']['output'];
isManaged: Scalars['Boolean']['output'];
isPrimary: Scalars['Boolean']['output'];
+ khorosUserId: Scalars['Int']['output'];
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
nickname: Scalars['String']['output'];
picture: Scalars['String']['output'];
};
@@ -91628,8 +91771,9 @@
id: Scalars['ID']['output'];
isLinked: Scalars['Boolean']['output'];
isManaged: Scalars['Boolean']['output'];
isPrimary: Scalars['Boolean']['output'];
+ khorosUserId: Scalars['Int']['output'];
linkedAccountsBasics?: Maybe<UnifiedULinkedAccountBasicsResult>;
nickname: Scalars['String']['output'];
picture: Scalars['String']['output'];
};
@@ -91775,8 +91919,9 @@
__typename?: 'UnifiedForums';
badges?: Maybe<UnifiedUForumsBadgesResult>;
groups?: Maybe<UnifiedUForumsGroupsResult>;
id: Scalars['ID']['output'];
+ khorosUserId: Scalars['Int']['output'];
snapshot?: Maybe<UnifiedUForumsSnapshotResult>;
};
export declare type UnifiedForumsBadgesArgs = {
after?: InputMaybe<Scalars['String']['input']>;
@@ -93350,9 +93495,8 @@
spacePagesDisplayView: PagesDisplayPersistenceOption;
spacePagesSortView: PagesSortPersistenceOption;
spaceViewsPersistence: SpaceViewsPersistenceOption;
theme: Scalars['String']['output'];
- topNavigationOptedOut?: Maybe<Scalars['Boolean']['output']>;
userSpacesNotifiedChangeBoardingOfExternalCollab: Array<Maybe<Scalars['String']['output']>>;
userSpacesNotifiedOfExternalCollab: Array<Maybe<Scalars['String']['output']>>;
watchMyOwnContent?: Maybe<Scalars['Boolean']['output']>;
};
@@ -93488,15 +93632,8 @@
syncRev?: Maybe<Scalars['String']['output']>;
syncRevSource?: Maybe<Scalars['String']['output']>;
when?: Maybe<Scalars['String']['output']>;
};
-export declare type VersionSummaryMetaDataItem = {
- __typename?: 'VersionSummaryMetaDataItem';
- collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
- creationDate: Scalars['String']['output'];
- users?: Maybe<Array<Maybe<Person>>>;
- versionNumber: Scalars['Int']['output'];
-};
export declare type ViewedComments = {
__typename?: 'ViewedComments';
commentIds: Array<Maybe<Scalars['ID']['output']>>;
};