@forge/cli-shared 6.6.1-next.10 → 6.6.1-next.11
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 +8 -0
- package/out/graphql/graphql-types.d.ts +165 -28
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +55 -27
- package/out/ui/command-line-ui.d.ts +1 -4
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +3 -22
- package/out/ui/table-prompt.d.ts +2 -0
- package/out/ui/table-prompt.d.ts.map +1 -1
- package/out/ui/table-prompt.js +23 -2
- package/out/ui/text.d.ts +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -1
- package/out/ui/ui.d.ts +1 -4
- package/out/ui/ui.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3225,18 +3225,11 @@ export declare enum CatchupOverviewUpdateType {
|
|
|
3225
3225
|
SinceLastViewed = "SINCE_LAST_VIEWED",
|
|
3226
3226
|
SinceLastViewedMarkdown = "SINCE_LAST_VIEWED_MARKDOWN"
|
|
3227
3227
|
}
|
|
3228
|
-
export declare enum CatchupUpdateType {
|
|
3229
|
-
TopN = "TOP_N"
|
|
3230
|
-
}
|
|
3231
3228
|
export declare type CatchupVersionDiffMetadataResponse = {
|
|
3232
3229
|
__typename?: 'CatchupVersionDiffMetadataResponse';
|
|
3233
3230
|
collaborators?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
3234
3231
|
isDiffEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
3235
3232
|
};
|
|
3236
|
-
export declare type CatchupVersionSummaryMetadataForContent = {
|
|
3237
|
-
__typename?: 'CatchupVersionSummaryMetadataForContent';
|
|
3238
|
-
versionSummaryMetadata?: Maybe<Array<VersionSummaryMetaDataItem>>;
|
|
3239
|
-
};
|
|
3240
3233
|
export declare type CcpAccountDetails = CommerceAccountDetails & {
|
|
3241
3234
|
__typename?: 'CcpAccountDetails';
|
|
3242
3235
|
invoiceGroup?: Maybe<CcpInvoiceGroup>;
|
|
@@ -9039,6 +9032,12 @@ export declare type ConfluenceCommentLinks = {
|
|
|
9039
9032
|
base?: Maybe<Scalars['String']['output']>;
|
|
9040
9033
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
9041
9034
|
};
|
|
9035
|
+
export declare type ConfluenceCommentResolutionState = {
|
|
9036
|
+
__typename?: 'ConfluenceCommentResolutionState';
|
|
9037
|
+
commentId: Scalars['ID']['output'];
|
|
9038
|
+
resolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
9039
|
+
status?: Maybe<Scalars['Boolean']['output']>;
|
|
9040
|
+
};
|
|
9042
9041
|
export declare enum ConfluenceCommentState {
|
|
9043
9042
|
Resolved = "RESOLVED",
|
|
9044
9043
|
Unresolved = "UNRESOLVED"
|
|
@@ -15526,6 +15525,12 @@ export declare type ConfluenceRedactionMetadataEdge = {
|
|
|
15526
15525
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
15527
15526
|
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
15528
15527
|
};
|
|
15528
|
+
export declare type ConfluenceReopenCommentPayload = Payload & {
|
|
15529
|
+
__typename?: 'ConfluenceReopenCommentPayload';
|
|
15530
|
+
commentResolutionStates?: Maybe<ConfluenceCommentResolutionState>;
|
|
15531
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15532
|
+
success: Scalars['Boolean']['output'];
|
|
15533
|
+
};
|
|
15529
15534
|
export declare type ConfluenceReopenInlineCommentInput = {
|
|
15530
15535
|
id: Scalars['ID']['input'];
|
|
15531
15536
|
};
|
|
@@ -15545,6 +15550,12 @@ export declare type ConfluenceReplyToCommentPayload = {
|
|
|
15545
15550
|
errors?: Maybe<Array<MutationError>>;
|
|
15546
15551
|
success: Scalars['Boolean']['output'];
|
|
15547
15552
|
};
|
|
15553
|
+
export declare type ConfluenceResolveCommentsPayload = Payload & {
|
|
15554
|
+
__typename?: 'ConfluenceResolveCommentsPayload';
|
|
15555
|
+
commentResolutionStates?: Maybe<Array<Maybe<ConfluenceCommentResolutionState>>>;
|
|
15556
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15557
|
+
success: Scalars['Boolean']['output'];
|
|
15558
|
+
};
|
|
15548
15559
|
export declare type ConfluenceResolveInlineCommentInput = {
|
|
15549
15560
|
id: Scalars['ID']['input'];
|
|
15550
15561
|
};
|
|
@@ -23275,14 +23286,30 @@ export declare enum EcosystemLicenseMode {
|
|
|
23275
23286
|
Agent = "AGENT",
|
|
23276
23287
|
UserAccess = "USER_ACCESS"
|
|
23277
23288
|
}
|
|
23289
|
+
export declare type EcosystemMarketplaceAppDeployment = {
|
|
23290
|
+
frameworkId: Scalars['String']['output'];
|
|
23291
|
+
};
|
|
23278
23292
|
export declare type EcosystemMarketplaceAppVersion = {
|
|
23279
23293
|
__typename?: 'EcosystemMarketplaceAppVersion';
|
|
23280
23294
|
buildNumber: Scalars['Float']['output'];
|
|
23295
|
+
deployment?: Maybe<EcosystemMarketplaceAppDeployment>;
|
|
23281
23296
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
23282
23297
|
isSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
23283
23298
|
paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
|
|
23284
23299
|
version: Scalars['String']['output'];
|
|
23285
23300
|
};
|
|
23301
|
+
export declare type EcosystemMarketplaceCloudAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23302
|
+
__typename?: 'EcosystemMarketplaceCloudAppDeployment';
|
|
23303
|
+
cloudAppEnvironmentId?: Maybe<Scalars['ID']['output']>;
|
|
23304
|
+
cloudAppId?: Maybe<Scalars['ID']['output']>;
|
|
23305
|
+
cloudAppVersionId: Scalars['ID']['output'];
|
|
23306
|
+
frameworkId: Scalars['String']['output'];
|
|
23307
|
+
};
|
|
23308
|
+
export declare type EcosystemMarketplaceConnectAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23309
|
+
__typename?: 'EcosystemMarketplaceConnectAppDeployment';
|
|
23310
|
+
descriptorUrl?: Maybe<Scalars['String']['output']>;
|
|
23311
|
+
frameworkId: Scalars['String']['output'];
|
|
23312
|
+
};
|
|
23286
23313
|
export declare type EcosystemMarketplaceData = {
|
|
23287
23314
|
__typename?: 'EcosystemMarketplaceData';
|
|
23288
23315
|
appId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -23291,13 +23318,28 @@ export declare type EcosystemMarketplaceData = {
|
|
|
23291
23318
|
forumsUrl?: Maybe<Scalars['String']['output']>;
|
|
23292
23319
|
issueTrackerUrl?: Maybe<Scalars['String']['output']>;
|
|
23293
23320
|
listingStatus?: Maybe<EcosystemMarketplaceListingStatus>;
|
|
23321
|
+
logo?: Maybe<EcosystemMarketplaceListingImage>;
|
|
23294
23322
|
name?: Maybe<Scalars['String']['output']>;
|
|
23295
23323
|
partner?: Maybe<EcosystemMarketplacePartner>;
|
|
23324
|
+
privacyPolicyUrl?: Maybe<Scalars['String']['output']>;
|
|
23296
23325
|
slug?: Maybe<Scalars['String']['output']>;
|
|
23297
23326
|
supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
|
|
23298
23327
|
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
|
|
23299
23328
|
wikiUrl?: Maybe<Scalars['String']['output']>;
|
|
23300
23329
|
};
|
|
23330
|
+
export declare type EcosystemMarketplaceExternalFrameworkAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23331
|
+
__typename?: 'EcosystemMarketplaceExternalFrameworkAppDeployment';
|
|
23332
|
+
frameworkId: Scalars['String']['output'];
|
|
23333
|
+
};
|
|
23334
|
+
export declare type EcosystemMarketplaceImageFile = {
|
|
23335
|
+
__typename?: 'EcosystemMarketplaceImageFile';
|
|
23336
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
23337
|
+
uri?: Maybe<Scalars['String']['output']>;
|
|
23338
|
+
};
|
|
23339
|
+
export declare type EcosystemMarketplaceListingImage = {
|
|
23340
|
+
__typename?: 'EcosystemMarketplaceListingImage';
|
|
23341
|
+
original?: Maybe<EcosystemMarketplaceImageFile>;
|
|
23342
|
+
};
|
|
23301
23343
|
export declare enum EcosystemMarketplaceListingStatus {
|
|
23302
23344
|
Private = "PRIVATE",
|
|
23303
23345
|
Public = "PUBLIC",
|
|
@@ -25031,6 +25073,8 @@ export declare type FollowingFeedGetUserConfig = {
|
|
|
25031
25073
|
};
|
|
25032
25074
|
export declare type FooterComment = CommentLocation & {
|
|
25033
25075
|
__typename?: 'FooterComment';
|
|
25076
|
+
commentRepliesCount: Scalars['Int']['output'];
|
|
25077
|
+
commentResolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
25034
25078
|
type: Scalars['String']['output'];
|
|
25035
25079
|
};
|
|
25036
25080
|
export declare type ForYouFeedItem = {
|
|
@@ -25714,6 +25758,20 @@ export declare enum ForgeMetricsChartName {
|
|
|
25714
25758
|
InvocationLatency = "INVOCATION_LATENCY",
|
|
25715
25759
|
InvocationSuccessRate = "INVOCATION_SUCCESS_RATE"
|
|
25716
25760
|
}
|
|
25761
|
+
export declare enum ForgeMetricsCustomGroupByDimensions {
|
|
25762
|
+
CustomMetricName = "CUSTOM_METRIC_NAME"
|
|
25763
|
+
}
|
|
25764
|
+
export declare type ForgeMetricsCustomQueryFilters = {
|
|
25765
|
+
appVersions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
25766
|
+
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25767
|
+
environment?: InputMaybe<Scalars['ID']['input']>;
|
|
25768
|
+
functionNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
25769
|
+
interval: ForgeMetricsIntervalInput;
|
|
25770
|
+
};
|
|
25771
|
+
export declare type ForgeMetricsCustomQueryInput = {
|
|
25772
|
+
filters: ForgeMetricsCustomQueryFilters;
|
|
25773
|
+
groupBy?: InputMaybe<Array<ForgeMetricsCustomGroupByDimensions>>;
|
|
25774
|
+
};
|
|
25717
25775
|
export declare type ForgeMetricsData = {
|
|
25718
25776
|
name: Scalars['String']['output'];
|
|
25719
25777
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
@@ -25868,6 +25926,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
25868
25926
|
appMetrics: ForgeMetricsOtlpResult;
|
|
25869
25927
|
cacheHitRate: ForgeMetricsSuccessRateResult;
|
|
25870
25928
|
chartInsight: ForgeMetricsChartInsightResult;
|
|
25929
|
+
customMetrics: ForgeMetricsInvocationsResult;
|
|
25871
25930
|
errors: ForgeMetricsErrorsResult;
|
|
25872
25931
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
25873
25932
|
invocations: ForgeMetricsInvocationsResult;
|
|
@@ -25903,6 +25962,9 @@ export declare type ForgeMetricsQueryCacheHitRateArgs = {
|
|
|
25903
25962
|
export declare type ForgeMetricsQueryChartInsightArgs = {
|
|
25904
25963
|
query: ForgeMetricsChartInsightQueryInput;
|
|
25905
25964
|
};
|
|
25965
|
+
export declare type ForgeMetricsQueryCustomMetricsArgs = {
|
|
25966
|
+
query: ForgeMetricsCustomQueryInput;
|
|
25967
|
+
};
|
|
25906
25968
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
25907
25969
|
query: ForgeMetricsQueryInput;
|
|
25908
25970
|
};
|
|
@@ -29950,6 +30012,7 @@ export declare type GraphStore = {
|
|
|
29950
30012
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
29951
30013
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
29952
30014
|
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
30015
|
+
graphEntityReplicates3pEntityInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection>;
|
|
29953
30016
|
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
29954
30017
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
29955
30018
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
@@ -31179,6 +31242,13 @@ export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
|
31179
31242
|
id: Scalars['ID']['input'];
|
|
31180
31243
|
sort?: InputMaybe<GraphStoreGraphDocument3pDocumentSortInput>;
|
|
31181
31244
|
};
|
|
31245
|
+
export declare type GraphStoreGraphEntityReplicates3pEntityInverseArgs = {
|
|
31246
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31247
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31248
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31249
|
+
id: Scalars['ID']['input'];
|
|
31250
|
+
sort?: InputMaybe<GraphStoreGraphEntityReplicates3pEntitySortInput>;
|
|
31251
|
+
};
|
|
31182
31252
|
export declare type GraphStoreGroupCanViewConfluenceSpaceArgs = {
|
|
31183
31253
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31184
31254
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35701,6 +35771,16 @@ export declare type GraphStoreCreateIssueToWhiteboardRelationshipInput = {
|
|
|
35701
35771
|
to: Scalars['ID']['input'];
|
|
35702
35772
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
35703
35773
|
};
|
|
35774
|
+
export declare enum GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationLinkTypeInput {
|
|
35775
|
+
ExistingWorkItem = "EXISTING_WORK_ITEM",
|
|
35776
|
+
NewWorkItem = "NEW_WORK_ITEM",
|
|
35777
|
+
NotSet = "NOT_SET"
|
|
35778
|
+
}
|
|
35779
|
+
export declare enum GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationStatusInput {
|
|
35780
|
+
Accepted = "ACCEPTED",
|
|
35781
|
+
Open = "OPEN",
|
|
35782
|
+
Rejected = "REJECTED"
|
|
35783
|
+
}
|
|
35704
35784
|
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationInput = {
|
|
35705
35785
|
relationships: Array<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput>;
|
|
35706
35786
|
};
|
|
@@ -35719,6 +35799,8 @@ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelations
|
|
|
35719
35799
|
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput = {
|
|
35720
35800
|
SupportEscalationLastUpdated?: InputMaybe<Scalars['Long']['input']>;
|
|
35721
35801
|
creatorAri?: InputMaybe<Scalars['String']['input']>;
|
|
35802
|
+
linkType?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationLinkTypeInput>;
|
|
35803
|
+
status?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationStatusInput>;
|
|
35722
35804
|
};
|
|
35723
35805
|
export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
35724
35806
|
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
@@ -39855,6 +39937,9 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
39855
39937
|
export declare type GraphStoreGraphDocument3pDocumentSortInput = {
|
|
39856
39938
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39857
39939
|
};
|
|
39940
|
+
export declare type GraphStoreGraphEntityReplicates3pEntitySortInput = {
|
|
39941
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39942
|
+
};
|
|
39858
39943
|
export declare type GraphStoreGroupCanViewConfluenceSpaceSortInput = {
|
|
39859
39944
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39860
39945
|
};
|
|
@@ -40018,8 +40103,28 @@ export declare type GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilt
|
|
|
40018
40103
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40019
40104
|
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
40020
40105
|
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40106
|
+
relationship_linkType?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkTypeFilterInput>;
|
|
40107
|
+
relationship_status?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatusFilterInput>;
|
|
40021
40108
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40022
40109
|
};
|
|
40110
|
+
export declare enum GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType {
|
|
40111
|
+
ExistingWorkItem = "EXISTING_WORK_ITEM",
|
|
40112
|
+
NewWorkItem = "NEW_WORK_ITEM",
|
|
40113
|
+
NotSet = "NOT_SET"
|
|
40114
|
+
}
|
|
40115
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkTypeFilterInput = {
|
|
40116
|
+
is?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType>>;
|
|
40117
|
+
isNot?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType>>;
|
|
40118
|
+
};
|
|
40119
|
+
export declare enum GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus {
|
|
40120
|
+
Accepted = "ACCEPTED",
|
|
40121
|
+
Open = "OPEN",
|
|
40122
|
+
Rejected = "REJECTED"
|
|
40123
|
+
}
|
|
40124
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatusFilterInput = {
|
|
40125
|
+
is?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus>>;
|
|
40126
|
+
isNot?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus>>;
|
|
40127
|
+
};
|
|
40023
40128
|
export declare type GraphStoreJcsIssueAssociatedSupportEscalationFilterInput = {
|
|
40024
40129
|
and?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
40025
40130
|
or?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
@@ -40030,6 +40135,8 @@ export declare type GraphStoreJcsIssueAssociatedSupportEscalationSortInput = {
|
|
|
40030
40135
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40031
40136
|
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
40032
40137
|
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
40138
|
+
relationship_linkType?: InputMaybe<GraphStoreSortInput>;
|
|
40139
|
+
relationship_status?: InputMaybe<GraphStoreSortInput>;
|
|
40033
40140
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40034
40141
|
};
|
|
40035
40142
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
@@ -42000,6 +42107,20 @@ export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge = {
|
|
|
42000
42107
|
node?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion>;
|
|
42001
42108
|
};
|
|
42002
42109
|
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
42110
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection = HasPageInfo & {
|
|
42111
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection';
|
|
42112
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge>>>;
|
|
42113
|
+
pageInfo: PageInfo;
|
|
42114
|
+
};
|
|
42115
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge = {
|
|
42116
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge';
|
|
42117
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42118
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42119
|
+
id: Scalars['ID']['output'];
|
|
42120
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42121
|
+
node?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion>;
|
|
42122
|
+
};
|
|
42123
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion = DevOpsDocument | ExternalDocument | ExternalRemoteLink;
|
|
42003
42124
|
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
42004
42125
|
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
|
|
42005
42126
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
|
|
@@ -49603,6 +49724,7 @@ export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
|
49603
49724
|
};
|
|
49604
49725
|
export declare type HelpLayoutQueryApiLayoutByParentIdArgs = {
|
|
49605
49726
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
49727
|
+
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
49606
49728
|
parentAri: Scalars['ID']['input'];
|
|
49607
49729
|
};
|
|
49608
49730
|
export declare type HelpLayoutQueryApiMediaConfigArgs = {
|
|
@@ -69404,8 +69526,11 @@ export declare type LogQueryInput = {
|
|
|
69404
69526
|
functionKey?: InputMaybe<Scalars['String']['input']>;
|
|
69405
69527
|
functionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
69406
69528
|
installationContexts?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
69529
|
+
invocationId?: InputMaybe<Scalars['String']['input']>;
|
|
69407
69530
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
69531
|
+
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
69408
69532
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
69533
|
+
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
69409
69534
|
};
|
|
69410
69535
|
export declare type LookAndFeel = {
|
|
69411
69536
|
__typename?: 'LookAndFeel';
|
|
@@ -69546,6 +69671,7 @@ export declare type LpCourseProgress = {
|
|
|
69546
69671
|
completedDate?: Maybe<Scalars['String']['output']>;
|
|
69547
69672
|
courseId?: Maybe<Scalars['String']['output']>;
|
|
69548
69673
|
id?: Maybe<Scalars['String']['output']>;
|
|
69674
|
+
isFromIntellum: Scalars['Boolean']['output'];
|
|
69549
69675
|
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
69550
69676
|
status?: Maybe<LpCourseStatus>;
|
|
69551
69677
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -69942,8 +70068,10 @@ export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
|
69942
70068
|
buildNumber: Scalars['ID']['output'];
|
|
69943
70069
|
changelog?: Maybe<MarketplaceConsoleAppSoftwareVersionChangelog>;
|
|
69944
70070
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibility>;
|
|
70071
|
+
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69945
70072
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetails;
|
|
69946
70073
|
isBeta: Scalars['Boolean']['output'];
|
|
70074
|
+
isLatest?: Maybe<Scalars['Boolean']['output']>;
|
|
69947
70075
|
isSupported: Scalars['Boolean']['output'];
|
|
69948
70076
|
licenseType?: Maybe<MarketplaceConsoleAppSoftwareVersionLicenseType>;
|
|
69949
70077
|
sourceCodeLicense?: Maybe<MarketplaceConsoleSourceCodeLicense>;
|
|
@@ -73546,6 +73674,8 @@ export declare type Mutation = {
|
|
|
73546
73674
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
73547
73675
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
73548
73676
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
73677
|
+
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
73678
|
+
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
73549
73679
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
73550
73680
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
73551
73681
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
@@ -74511,6 +74641,14 @@ export declare type MutationConfluence_MakeSubCalendarPrivateUrlArgs = {
|
|
|
74511
74641
|
cloudId: Scalars['ID']['input'];
|
|
74512
74642
|
input: ConfluenceMakeSubCalendarPrivateUrlInput;
|
|
74513
74643
|
};
|
|
74644
|
+
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
74645
|
+
cloudId: Scalars['ID']['input'];
|
|
74646
|
+
commentId: Scalars['ID']['input'];
|
|
74647
|
+
};
|
|
74648
|
+
export declare type MutationConfluence_ResolveCommentsArgs = {
|
|
74649
|
+
cloudId: Scalars['ID']['input'];
|
|
74650
|
+
commentIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
74651
|
+
};
|
|
74514
74652
|
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
74515
74653
|
cloudId: Scalars['ID']['input'];
|
|
74516
74654
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
@@ -78165,7 +78303,6 @@ export declare type Query = {
|
|
|
78165
78303
|
catchupEditMetadataForContent?: Maybe<CatchupEditMetadataForContent>;
|
|
78166
78304
|
catchupGetLastViewedTime?: Maybe<CatchupLastViewedTimeResponse>;
|
|
78167
78305
|
catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
|
|
78168
|
-
catchupVersionSummaryMetadataForContent?: Maybe<CatchupVersionSummaryMetadataForContent>;
|
|
78169
78306
|
ccp?: Maybe<CcpQueryApi>;
|
|
78170
78307
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
78171
78308
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
@@ -78749,7 +78886,6 @@ export declare type Query = {
|
|
|
78749
78886
|
team?: Maybe<TeamQuery>;
|
|
78750
78887
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
78751
78888
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
78752
|
-
teamPresence?: Maybe<TeamPresence>;
|
|
78753
78889
|
template?: Maybe<ContentPlatformTemplate>;
|
|
78754
78890
|
templateBodies?: Maybe<PaginatedTemplateBodyList>;
|
|
78755
78891
|
templateCategories?: Maybe<PaginatedTemplateCategoryList>;
|
|
@@ -78996,12 +79132,6 @@ export declare type QueryCatchupVersionDiffMetadataForContentArgs = {
|
|
|
78996
79132
|
originalContentVersion: Scalars['Int']['input'];
|
|
78997
79133
|
revisedContentVersion: Scalars['Int']['input'];
|
|
78998
79134
|
};
|
|
78999
|
-
export declare type QueryCatchupVersionSummaryMetadataForContentArgs = {
|
|
79000
|
-
contentId: Scalars['ID']['input'];
|
|
79001
|
-
contentType: CatchupContentType;
|
|
79002
|
-
endTimeMs: Scalars['Long']['input'];
|
|
79003
|
-
updateType: CatchupUpdateType;
|
|
79004
|
-
};
|
|
79005
79135
|
export declare type QueryClassificationLevelArgs = {
|
|
79006
79136
|
id: Scalars['String']['input'];
|
|
79007
79137
|
};
|
|
@@ -80058,7 +80188,7 @@ export declare type QueryConfluence_UserContentAccessArgs = {
|
|
|
80058
80188
|
accessType: ResourceAccessType;
|
|
80059
80189
|
accountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
80060
80190
|
cloudId: Scalars['ID']['input'];
|
|
80061
|
-
contentId: Scalars['
|
|
80191
|
+
contentId: Scalars['ID']['input'];
|
|
80062
80192
|
};
|
|
80063
80193
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
80064
80194
|
applicationId: Scalars['ID']['input'];
|
|
@@ -82157,6 +82287,12 @@ export declare type RemoveUserSpacePermissionsInput = {
|
|
|
82157
82287
|
accountId: Scalars['String']['input'];
|
|
82158
82288
|
spaceKey: Scalars['String']['input'];
|
|
82159
82289
|
};
|
|
82290
|
+
export declare type ReopenCommentsMutationErrorExtension = MutationErrorExtension & {
|
|
82291
|
+
__typename?: 'ReopenCommentsMutationErrorExtension';
|
|
82292
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
82293
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
82294
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
82295
|
+
};
|
|
82160
82296
|
export declare type ReplyInlineCommentInput = {
|
|
82161
82297
|
commentBody: CommentBody;
|
|
82162
82298
|
commentSource?: InputMaybe<Platform>;
|
|
@@ -82201,6 +82337,12 @@ export declare type ResetToDefaultSpaceRoleAssignmentsPayload = Payload & {
|
|
|
82201
82337
|
errors?: Maybe<Array<MutationError>>;
|
|
82202
82338
|
success: Scalars['Boolean']['output'];
|
|
82203
82339
|
};
|
|
82340
|
+
export declare type ResolveCommentsMutationErrorExtension = MutationErrorExtension & {
|
|
82341
|
+
__typename?: 'ResolveCommentsMutationErrorExtension';
|
|
82342
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
82343
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
82344
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
82345
|
+
};
|
|
82204
82346
|
export declare type ResolveInlineCommentPayload = {
|
|
82205
82347
|
__typename?: 'ResolveInlineCommentPayload';
|
|
82206
82348
|
resolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
@@ -86844,9 +86986,12 @@ export declare enum SpacePermissionType {
|
|
|
86844
86986
|
ArchiveSpace = "ARCHIVE_SPACE",
|
|
86845
86987
|
Comment = "COMMENT",
|
|
86846
86988
|
CreateAttachment = "CREATE_ATTACHMENT",
|
|
86989
|
+
CreateBlog = "CREATE_BLOG",
|
|
86847
86990
|
CreateEditPage = "CREATE_EDIT_PAGE",
|
|
86848
86991
|
DeleteSpace = "DELETE_SPACE",
|
|
86849
86992
|
EditBlog = "EDIT_BLOG",
|
|
86993
|
+
EditNativeContent = "EDIT_NATIVE_CONTENT",
|
|
86994
|
+
ExportContent = "EXPORT_CONTENT",
|
|
86850
86995
|
ExportPage = "EXPORT_PAGE",
|
|
86851
86996
|
ExportSpace = "EXPORT_SPACE",
|
|
86852
86997
|
ManageGuestUsers = "MANAGE_GUEST_USERS",
|
|
@@ -87895,10 +88040,6 @@ export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
|
87895
88040
|
principalsToRemove: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
87896
88041
|
role: TeamRole;
|
|
87897
88042
|
};
|
|
87898
|
-
export declare type TeamPresence = {
|
|
87899
|
-
__typename?: 'TeamPresence';
|
|
87900
|
-
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
87901
|
-
};
|
|
87902
88043
|
export declare type TeamPrincipal = {
|
|
87903
88044
|
__typename?: 'TeamPrincipal';
|
|
87904
88045
|
principalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -89005,6 +89146,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
89005
89146
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
89006
89147
|
name: Scalars['String']['output'];
|
|
89007
89148
|
owner?: Maybe<User>;
|
|
89149
|
+
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
89008
89150
|
state?: Maybe<TownsquareProjectState>;
|
|
89009
89151
|
tags?: Maybe<TownsquareTagConnection>;
|
|
89010
89152
|
updates?: Maybe<TownsquareProjectUpdateConnection>;
|
|
@@ -91618,6 +91760,7 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
91618
91760
|
isLinked: Scalars['Boolean']['output'];
|
|
91619
91761
|
isManaged: Scalars['Boolean']['output'];
|
|
91620
91762
|
isPrimary: Scalars['Boolean']['output'];
|
|
91763
|
+
khorosUserId: Scalars['Int']['output'];
|
|
91621
91764
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
91622
91765
|
nickname: Scalars['String']['output'];
|
|
91623
91766
|
picture: Scalars['String']['output'];
|
|
@@ -91629,6 +91772,7 @@ export declare type UnifiedAccountBasics = UnifiedINode & {
|
|
|
91629
91772
|
isLinked: Scalars['Boolean']['output'];
|
|
91630
91773
|
isManaged: Scalars['Boolean']['output'];
|
|
91631
91774
|
isPrimary: Scalars['Boolean']['output'];
|
|
91775
|
+
khorosUserId: Scalars['Int']['output'];
|
|
91632
91776
|
linkedAccountsBasics?: Maybe<UnifiedULinkedAccountBasicsResult>;
|
|
91633
91777
|
nickname: Scalars['String']['output'];
|
|
91634
91778
|
picture: Scalars['String']['output'];
|
|
@@ -91776,6 +91920,7 @@ export declare type UnifiedForums = UnifiedINode & {
|
|
|
91776
91920
|
badges?: Maybe<UnifiedUForumsBadgesResult>;
|
|
91777
91921
|
groups?: Maybe<UnifiedUForumsGroupsResult>;
|
|
91778
91922
|
id: Scalars['ID']['output'];
|
|
91923
|
+
khorosUserId: Scalars['Int']['output'];
|
|
91779
91924
|
snapshot?: Maybe<UnifiedUForumsSnapshotResult>;
|
|
91780
91925
|
};
|
|
91781
91926
|
export declare type UnifiedForumsBadgesArgs = {
|
|
@@ -93351,7 +93496,6 @@ export declare type UserPreferences = {
|
|
|
93351
93496
|
spacePagesSortView: PagesSortPersistenceOption;
|
|
93352
93497
|
spaceViewsPersistence: SpaceViewsPersistenceOption;
|
|
93353
93498
|
theme: Scalars['String']['output'];
|
|
93354
|
-
topNavigationOptedOut?: Maybe<Scalars['Boolean']['output']>;
|
|
93355
93499
|
userSpacesNotifiedChangeBoardingOfExternalCollab: Array<Maybe<Scalars['String']['output']>>;
|
|
93356
93500
|
userSpacesNotifiedOfExternalCollab: Array<Maybe<Scalars['String']['output']>>;
|
|
93357
93501
|
watchMyOwnContent?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -93489,13 +93633,6 @@ export declare type Version = {
|
|
|
93489
93633
|
syncRevSource?: Maybe<Scalars['String']['output']>;
|
|
93490
93634
|
when?: Maybe<Scalars['String']['output']>;
|
|
93491
93635
|
};
|
|
93492
|
-
export declare type VersionSummaryMetaDataItem = {
|
|
93493
|
-
__typename?: 'VersionSummaryMetaDataItem';
|
|
93494
|
-
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
93495
|
-
creationDate: Scalars['String']['output'];
|
|
93496
|
-
users?: Maybe<Array<Maybe<Person>>>;
|
|
93497
|
-
versionNumber: Scalars['Int']['output'];
|
|
93498
|
-
};
|
|
93499
93636
|
export declare type ViewedComments = {
|
|
93500
93637
|
__typename?: 'ViewedComments';
|
|
93501
93638
|
commentIds: Array<Maybe<Scalars['ID']['output']>>;
|