@forge/cli-shared 6.6.1-next.10 → 6.6.1-next.12
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 +14 -0
- package/out/graphql/graphql-types.d.ts +324 -48
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +65 -35
- package/out/shared/product.d.ts +1 -1
- package/out/shared/product.d.ts.map +1 -1
- package/out/shared/product.js +5 -5
- package/out/ui/command-line-ui.d.ts +2 -4
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +6 -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 +3 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -4
- package/out/ui/ui.d.ts +2 -4
- package/out/ui/ui.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -893,6 +893,12 @@ export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
|
|
|
893
893
|
errors?: Maybe<Array<MutationError>>;
|
|
894
894
|
success: Scalars['Boolean']['output'];
|
|
895
895
|
};
|
|
896
|
+
export declare type AgentStudioUpdateAgentKnowledgeSourcesPayload = Payload & {
|
|
897
|
+
__typename?: 'AgentStudioUpdateAgentKnowledgeSourcesPayload';
|
|
898
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
899
|
+
errors?: Maybe<Array<MutationError>>;
|
|
900
|
+
success: Scalars['Boolean']['output'];
|
|
901
|
+
};
|
|
896
902
|
export declare type AgentStudioUpdateConversationStartersInput = {
|
|
897
903
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
898
904
|
};
|
|
@@ -3225,18 +3231,11 @@ export declare enum CatchupOverviewUpdateType {
|
|
|
3225
3231
|
SinceLastViewed = "SINCE_LAST_VIEWED",
|
|
3226
3232
|
SinceLastViewedMarkdown = "SINCE_LAST_VIEWED_MARKDOWN"
|
|
3227
3233
|
}
|
|
3228
|
-
export declare enum CatchupUpdateType {
|
|
3229
|
-
TopN = "TOP_N"
|
|
3230
|
-
}
|
|
3231
3234
|
export declare type CatchupVersionDiffMetadataResponse = {
|
|
3232
3235
|
__typename?: 'CatchupVersionDiffMetadataResponse';
|
|
3233
3236
|
collaborators?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
3234
3237
|
isDiffEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
3235
3238
|
};
|
|
3236
|
-
export declare type CatchupVersionSummaryMetadataForContent = {
|
|
3237
|
-
__typename?: 'CatchupVersionSummaryMetadataForContent';
|
|
3238
|
-
versionSummaryMetadata?: Maybe<Array<VersionSummaryMetaDataItem>>;
|
|
3239
|
-
};
|
|
3240
3239
|
export declare type CcpAccountDetails = CommerceAccountDetails & {
|
|
3241
3240
|
__typename?: 'CcpAccountDetails';
|
|
3242
3241
|
invoiceGroup?: Maybe<CcpInvoiceGroup>;
|
|
@@ -9039,6 +9038,12 @@ export declare type ConfluenceCommentLinks = {
|
|
|
9039
9038
|
base?: Maybe<Scalars['String']['output']>;
|
|
9040
9039
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
9041
9040
|
};
|
|
9041
|
+
export declare type ConfluenceCommentResolutionState = {
|
|
9042
|
+
__typename?: 'ConfluenceCommentResolutionState';
|
|
9043
|
+
commentId: Scalars['ID']['output'];
|
|
9044
|
+
resolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
9045
|
+
status?: Maybe<Scalars['Boolean']['output']>;
|
|
9046
|
+
};
|
|
9042
9047
|
export declare enum ConfluenceCommentState {
|
|
9043
9048
|
Resolved = "RESOLVED",
|
|
9044
9049
|
Unresolved = "UNRESOLVED"
|
|
@@ -15526,6 +15531,12 @@ export declare type ConfluenceRedactionMetadataEdge = {
|
|
|
15526
15531
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
15527
15532
|
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
15528
15533
|
};
|
|
15534
|
+
export declare type ConfluenceReopenCommentPayload = Payload & {
|
|
15535
|
+
__typename?: 'ConfluenceReopenCommentPayload';
|
|
15536
|
+
commentResolutionStates?: Maybe<ConfluenceCommentResolutionState>;
|
|
15537
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15538
|
+
success: Scalars['Boolean']['output'];
|
|
15539
|
+
};
|
|
15529
15540
|
export declare type ConfluenceReopenInlineCommentInput = {
|
|
15530
15541
|
id: Scalars['ID']['input'];
|
|
15531
15542
|
};
|
|
@@ -15545,6 +15556,12 @@ export declare type ConfluenceReplyToCommentPayload = {
|
|
|
15545
15556
|
errors?: Maybe<Array<MutationError>>;
|
|
15546
15557
|
success: Scalars['Boolean']['output'];
|
|
15547
15558
|
};
|
|
15559
|
+
export declare type ConfluenceResolveCommentsPayload = Payload & {
|
|
15560
|
+
__typename?: 'ConfluenceResolveCommentsPayload';
|
|
15561
|
+
commentResolutionStates?: Maybe<Array<Maybe<ConfluenceCommentResolutionState>>>;
|
|
15562
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15563
|
+
success: Scalars['Boolean']['output'];
|
|
15564
|
+
};
|
|
15548
15565
|
export declare type ConfluenceResolveInlineCommentInput = {
|
|
15549
15566
|
id: Scalars['ID']['input'];
|
|
15550
15567
|
};
|
|
@@ -16517,14 +16534,6 @@ export declare type ConnectAppScope = {
|
|
|
16517
16534
|
name: Scalars['String']['output'];
|
|
16518
16535
|
scopeId: Scalars['ID']['output'];
|
|
16519
16536
|
};
|
|
16520
|
-
export declare type ConnectedDataQuery = {
|
|
16521
|
-
__typename?: 'ConnectedDataQuery';
|
|
16522
|
-
services?: Maybe<DevOpsService>;
|
|
16523
|
-
};
|
|
16524
|
-
export declare type ConnectedDataQueryServicesArgs = {
|
|
16525
|
-
cloudId: Scalars['ID']['input'];
|
|
16526
|
-
id: Scalars['ID']['input'];
|
|
16527
|
-
};
|
|
16528
16537
|
export declare type ConnectionManagerConfiguration = {
|
|
16529
16538
|
__typename?: 'ConnectionManagerConfiguration';
|
|
16530
16539
|
parameters?: Maybe<Scalars['String']['output']>;
|
|
@@ -17548,8 +17557,6 @@ export declare type ContentPlatformIpmAnchored = {
|
|
|
17548
17557
|
anchoredElement?: Maybe<Scalars['String']['output']>;
|
|
17549
17558
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17550
17559
|
id: Scalars['String']['output'];
|
|
17551
|
-
relativeX?: Maybe<Scalars['Int']['output']>;
|
|
17552
|
-
relativeY?: Maybe<Scalars['Int']['output']>;
|
|
17553
17560
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
17554
17561
|
};
|
|
17555
17562
|
export declare type ContentPlatformIpmAnchoredAndIpmPositionUnion = ContentPlatformIpmAnchored | ContentPlatformIpmPosition;
|
|
@@ -23275,14 +23282,31 @@ export declare enum EcosystemLicenseMode {
|
|
|
23275
23282
|
Agent = "AGENT",
|
|
23276
23283
|
UserAccess = "USER_ACCESS"
|
|
23277
23284
|
}
|
|
23285
|
+
export declare type EcosystemMarketplaceAppDeployment = {
|
|
23286
|
+
frameworkId: Scalars['String']['output'];
|
|
23287
|
+
};
|
|
23278
23288
|
export declare type EcosystemMarketplaceAppVersion = {
|
|
23279
23289
|
__typename?: 'EcosystemMarketplaceAppVersion';
|
|
23280
23290
|
buildNumber: Scalars['Float']['output'];
|
|
23291
|
+
deployment?: Maybe<EcosystemMarketplaceAppDeployment>;
|
|
23281
23292
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
23282
23293
|
isSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
23283
23294
|
paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
|
|
23284
23295
|
version: Scalars['String']['output'];
|
|
23285
23296
|
};
|
|
23297
|
+
export declare type EcosystemMarketplaceCloudAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23298
|
+
__typename?: 'EcosystemMarketplaceCloudAppDeployment';
|
|
23299
|
+
cloudAppEnvironmentId?: Maybe<Scalars['ID']['output']>;
|
|
23300
|
+
cloudAppId?: Maybe<Scalars['ID']['output']>;
|
|
23301
|
+
cloudAppVersionId: Scalars['ID']['output'];
|
|
23302
|
+
frameworkId: Scalars['String']['output'];
|
|
23303
|
+
scopes?: Maybe<Array<Maybe<AppHostServiceScope>>>;
|
|
23304
|
+
};
|
|
23305
|
+
export declare type EcosystemMarketplaceConnectAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23306
|
+
__typename?: 'EcosystemMarketplaceConnectAppDeployment';
|
|
23307
|
+
descriptorUrl?: Maybe<Scalars['String']['output']>;
|
|
23308
|
+
frameworkId: Scalars['String']['output'];
|
|
23309
|
+
};
|
|
23286
23310
|
export declare type EcosystemMarketplaceData = {
|
|
23287
23311
|
__typename?: 'EcosystemMarketplaceData';
|
|
23288
23312
|
appId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -23291,13 +23315,28 @@ export declare type EcosystemMarketplaceData = {
|
|
|
23291
23315
|
forumsUrl?: Maybe<Scalars['String']['output']>;
|
|
23292
23316
|
issueTrackerUrl?: Maybe<Scalars['String']['output']>;
|
|
23293
23317
|
listingStatus?: Maybe<EcosystemMarketplaceListingStatus>;
|
|
23318
|
+
logo?: Maybe<EcosystemMarketplaceListingImage>;
|
|
23294
23319
|
name?: Maybe<Scalars['String']['output']>;
|
|
23295
23320
|
partner?: Maybe<EcosystemMarketplacePartner>;
|
|
23321
|
+
privacyPolicyUrl?: Maybe<Scalars['String']['output']>;
|
|
23296
23322
|
slug?: Maybe<Scalars['String']['output']>;
|
|
23297
23323
|
supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
|
|
23298
23324
|
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
|
|
23299
23325
|
wikiUrl?: Maybe<Scalars['String']['output']>;
|
|
23300
23326
|
};
|
|
23327
|
+
export declare type EcosystemMarketplaceExternalFrameworkAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23328
|
+
__typename?: 'EcosystemMarketplaceExternalFrameworkAppDeployment';
|
|
23329
|
+
frameworkId: Scalars['String']['output'];
|
|
23330
|
+
};
|
|
23331
|
+
export declare type EcosystemMarketplaceImageFile = {
|
|
23332
|
+
__typename?: 'EcosystemMarketplaceImageFile';
|
|
23333
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
23334
|
+
uri?: Maybe<Scalars['String']['output']>;
|
|
23335
|
+
};
|
|
23336
|
+
export declare type EcosystemMarketplaceListingImage = {
|
|
23337
|
+
__typename?: 'EcosystemMarketplaceListingImage';
|
|
23338
|
+
original?: Maybe<EcosystemMarketplaceImageFile>;
|
|
23339
|
+
};
|
|
23301
23340
|
export declare enum EcosystemMarketplaceListingStatus {
|
|
23302
23341
|
Private = "PRIVATE",
|
|
23303
23342
|
Public = "PUBLIC",
|
|
@@ -25031,6 +25070,8 @@ export declare type FollowingFeedGetUserConfig = {
|
|
|
25031
25070
|
};
|
|
25032
25071
|
export declare type FooterComment = CommentLocation & {
|
|
25033
25072
|
__typename?: 'FooterComment';
|
|
25073
|
+
commentRepliesCount: Scalars['Int']['output'];
|
|
25074
|
+
commentResolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
25034
25075
|
type: Scalars['String']['output'];
|
|
25035
25076
|
};
|
|
25036
25077
|
export declare type ForYouFeedItem = {
|
|
@@ -25714,6 +25755,20 @@ export declare enum ForgeMetricsChartName {
|
|
|
25714
25755
|
InvocationLatency = "INVOCATION_LATENCY",
|
|
25715
25756
|
InvocationSuccessRate = "INVOCATION_SUCCESS_RATE"
|
|
25716
25757
|
}
|
|
25758
|
+
export declare enum ForgeMetricsCustomGroupByDimensions {
|
|
25759
|
+
CustomMetricName = "CUSTOM_METRIC_NAME"
|
|
25760
|
+
}
|
|
25761
|
+
export declare type ForgeMetricsCustomQueryFilters = {
|
|
25762
|
+
appVersions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
25763
|
+
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25764
|
+
environment?: InputMaybe<Scalars['ID']['input']>;
|
|
25765
|
+
functionNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
25766
|
+
interval: ForgeMetricsIntervalInput;
|
|
25767
|
+
};
|
|
25768
|
+
export declare type ForgeMetricsCustomQueryInput = {
|
|
25769
|
+
filters: ForgeMetricsCustomQueryFilters;
|
|
25770
|
+
groupBy?: InputMaybe<Array<ForgeMetricsCustomGroupByDimensions>>;
|
|
25771
|
+
};
|
|
25717
25772
|
export declare type ForgeMetricsData = {
|
|
25718
25773
|
name: Scalars['String']['output'];
|
|
25719
25774
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
@@ -25868,6 +25923,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
25868
25923
|
appMetrics: ForgeMetricsOtlpResult;
|
|
25869
25924
|
cacheHitRate: ForgeMetricsSuccessRateResult;
|
|
25870
25925
|
chartInsight: ForgeMetricsChartInsightResult;
|
|
25926
|
+
customMetrics: ForgeMetricsInvocationsResult;
|
|
25871
25927
|
errors: ForgeMetricsErrorsResult;
|
|
25872
25928
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
25873
25929
|
invocations: ForgeMetricsInvocationsResult;
|
|
@@ -25903,6 +25959,9 @@ export declare type ForgeMetricsQueryCacheHitRateArgs = {
|
|
|
25903
25959
|
export declare type ForgeMetricsQueryChartInsightArgs = {
|
|
25904
25960
|
query: ForgeMetricsChartInsightQueryInput;
|
|
25905
25961
|
};
|
|
25962
|
+
export declare type ForgeMetricsQueryCustomMetricsArgs = {
|
|
25963
|
+
query: ForgeMetricsCustomQueryInput;
|
|
25964
|
+
};
|
|
25906
25965
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
25907
25966
|
query: ForgeMetricsQueryInput;
|
|
25908
25967
|
};
|
|
@@ -29950,6 +30009,7 @@ export declare type GraphStore = {
|
|
|
29950
30009
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
29951
30010
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
29952
30011
|
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
30012
|
+
graphEntityReplicates3pEntityInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection>;
|
|
29953
30013
|
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
29954
30014
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
29955
30015
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
@@ -30420,8 +30480,12 @@ export declare type GraphStore = {
|
|
|
30420
30480
|
userViewedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection>;
|
|
30421
30481
|
userViewedConfluencePage?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageConnection>;
|
|
30422
30482
|
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
30483
|
+
userViewedGoalUpdate?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateConnection>;
|
|
30484
|
+
userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
30423
30485
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
30424
30486
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
30487
|
+
userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
|
|
30488
|
+
userViewedProjectUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection>;
|
|
30425
30489
|
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
30426
30490
|
userWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection>;
|
|
30427
30491
|
userWatchesConfluencePage?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageConnection>;
|
|
@@ -31179,6 +31243,13 @@ export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
|
31179
31243
|
id: Scalars['ID']['input'];
|
|
31180
31244
|
sort?: InputMaybe<GraphStoreGraphDocument3pDocumentSortInput>;
|
|
31181
31245
|
};
|
|
31246
|
+
export declare type GraphStoreGraphEntityReplicates3pEntityInverseArgs = {
|
|
31247
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31248
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31249
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31250
|
+
id: Scalars['ID']['input'];
|
|
31251
|
+
sort?: InputMaybe<GraphStoreGraphEntityReplicates3pEntitySortInput>;
|
|
31252
|
+
};
|
|
31182
31253
|
export declare type GraphStoreGroupCanViewConfluenceSpaceArgs = {
|
|
31183
31254
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31184
31255
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34270,6 +34341,20 @@ export declare type GraphStoreUserViewedConfluencePageInverseArgs = {
|
|
|
34270
34341
|
id: Scalars['ID']['input'];
|
|
34271
34342
|
sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
|
|
34272
34343
|
};
|
|
34344
|
+
export declare type GraphStoreUserViewedGoalUpdateArgs = {
|
|
34345
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34346
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34347
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34348
|
+
id: Scalars['ID']['input'];
|
|
34349
|
+
sort?: InputMaybe<GraphStoreUserViewedGoalUpdateSortInput>;
|
|
34350
|
+
};
|
|
34351
|
+
export declare type GraphStoreUserViewedGoalUpdateInverseArgs = {
|
|
34352
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34353
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34354
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34355
|
+
id: Scalars['ID']['input'];
|
|
34356
|
+
sort?: InputMaybe<GraphStoreUserViewedGoalUpdateSortInput>;
|
|
34357
|
+
};
|
|
34273
34358
|
export declare type GraphStoreUserViewedJiraIssueArgs = {
|
|
34274
34359
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34275
34360
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34284,6 +34369,20 @@ export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
|
34284
34369
|
id: Scalars['ID']['input'];
|
|
34285
34370
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
34286
34371
|
};
|
|
34372
|
+
export declare type GraphStoreUserViewedProjectUpdateArgs = {
|
|
34373
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34374
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34375
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34376
|
+
id: Scalars['ID']['input'];
|
|
34377
|
+
sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
|
|
34378
|
+
};
|
|
34379
|
+
export declare type GraphStoreUserViewedProjectUpdateInverseArgs = {
|
|
34380
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34381
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34382
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34383
|
+
id: Scalars['ID']['input'];
|
|
34384
|
+
sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
|
|
34385
|
+
};
|
|
34287
34386
|
export declare type GraphStoreUserWatchesConfluenceBlogpostArgs = {
|
|
34288
34387
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34289
34388
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35701,6 +35800,16 @@ export declare type GraphStoreCreateIssueToWhiteboardRelationshipInput = {
|
|
|
35701
35800
|
to: Scalars['ID']['input'];
|
|
35702
35801
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
35703
35802
|
};
|
|
35803
|
+
export declare enum GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationLinkTypeInput {
|
|
35804
|
+
ExistingWorkItem = "EXISTING_WORK_ITEM",
|
|
35805
|
+
NewWorkItem = "NEW_WORK_ITEM",
|
|
35806
|
+
NotSet = "NOT_SET"
|
|
35807
|
+
}
|
|
35808
|
+
export declare enum GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationStatusInput {
|
|
35809
|
+
Accepted = "ACCEPTED",
|
|
35810
|
+
Open = "OPEN",
|
|
35811
|
+
Rejected = "REJECTED"
|
|
35812
|
+
}
|
|
35704
35813
|
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationInput = {
|
|
35705
35814
|
relationships: Array<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput>;
|
|
35706
35815
|
};
|
|
@@ -35719,6 +35828,8 @@ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelations
|
|
|
35719
35828
|
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput = {
|
|
35720
35829
|
SupportEscalationLastUpdated?: InputMaybe<Scalars['Long']['input']>;
|
|
35721
35830
|
creatorAri?: InputMaybe<Scalars['String']['input']>;
|
|
35831
|
+
linkType?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationLinkTypeInput>;
|
|
35832
|
+
status?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationStatusInput>;
|
|
35722
35833
|
};
|
|
35723
35834
|
export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
35724
35835
|
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
@@ -37947,6 +38058,7 @@ export declare type GraphStoreFullProjectAssociatedBuildRelationshipMetadataOutp
|
|
|
37947
38058
|
issueAri?: Maybe<Scalars['String']['output']>;
|
|
37948
38059
|
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
37949
38060
|
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
38061
|
+
sprintAris?: Maybe<Scalars['String']['output']>;
|
|
37950
38062
|
statusAri?: Maybe<Scalars['String']['output']>;
|
|
37951
38063
|
};
|
|
37952
38064
|
export declare type GraphStoreFullProjectAssociatedBuildRelationshipObjectMetadataOutput = {
|
|
@@ -39855,6 +39967,9 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
39855
39967
|
export declare type GraphStoreGraphDocument3pDocumentSortInput = {
|
|
39856
39968
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39857
39969
|
};
|
|
39970
|
+
export declare type GraphStoreGraphEntityReplicates3pEntitySortInput = {
|
|
39971
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39972
|
+
};
|
|
39858
39973
|
export declare type GraphStoreGroupCanViewConfluenceSpaceSortInput = {
|
|
39859
39974
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39860
39975
|
};
|
|
@@ -40018,8 +40133,28 @@ export declare type GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilt
|
|
|
40018
40133
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40019
40134
|
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
40020
40135
|
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40136
|
+
relationship_linkType?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkTypeFilterInput>;
|
|
40137
|
+
relationship_status?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatusFilterInput>;
|
|
40021
40138
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40022
40139
|
};
|
|
40140
|
+
export declare enum GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType {
|
|
40141
|
+
ExistingWorkItem = "EXISTING_WORK_ITEM",
|
|
40142
|
+
NewWorkItem = "NEW_WORK_ITEM",
|
|
40143
|
+
NotSet = "NOT_SET"
|
|
40144
|
+
}
|
|
40145
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkTypeFilterInput = {
|
|
40146
|
+
is?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType>>;
|
|
40147
|
+
isNot?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType>>;
|
|
40148
|
+
};
|
|
40149
|
+
export declare enum GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus {
|
|
40150
|
+
Accepted = "ACCEPTED",
|
|
40151
|
+
Open = "OPEN",
|
|
40152
|
+
Rejected = "REJECTED"
|
|
40153
|
+
}
|
|
40154
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatusFilterInput = {
|
|
40155
|
+
is?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus>>;
|
|
40156
|
+
isNot?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus>>;
|
|
40157
|
+
};
|
|
40023
40158
|
export declare type GraphStoreJcsIssueAssociatedSupportEscalationFilterInput = {
|
|
40024
40159
|
and?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
40025
40160
|
or?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
@@ -40030,6 +40165,8 @@ export declare type GraphStoreJcsIssueAssociatedSupportEscalationSortInput = {
|
|
|
40030
40165
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40031
40166
|
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
40032
40167
|
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
40168
|
+
relationship_linkType?: InputMaybe<GraphStoreSortInput>;
|
|
40169
|
+
relationship_status?: InputMaybe<GraphStoreSortInput>;
|
|
40033
40170
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40034
40171
|
};
|
|
40035
40172
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
@@ -40408,6 +40545,7 @@ export declare type GraphStoreProjectAssociatedBuildConditionalFilterInput = {
|
|
|
40408
40545
|
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40409
40546
|
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
40410
40547
|
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40548
|
+
relationship_sprintAris?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40411
40549
|
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40412
40550
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40413
40551
|
to_state?: InputMaybe<GraphStoreProjectAssociatedBuildBuildStateFilterInput>;
|
|
@@ -40426,6 +40564,7 @@ export declare type GraphStoreProjectAssociatedBuildSortInput = {
|
|
|
40426
40564
|
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
40427
40565
|
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
40428
40566
|
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
40567
|
+
relationship_sprintAris?: InputMaybe<GraphStoreSortInput>;
|
|
40429
40568
|
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
40430
40569
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40431
40570
|
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -42000,6 +42139,20 @@ export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge = {
|
|
|
42000
42139
|
node?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion>;
|
|
42001
42140
|
};
|
|
42002
42141
|
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
42142
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection = HasPageInfo & {
|
|
42143
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection';
|
|
42144
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge>>>;
|
|
42145
|
+
pageInfo: PageInfo;
|
|
42146
|
+
};
|
|
42147
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge = {
|
|
42148
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge';
|
|
42149
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42150
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42151
|
+
id: Scalars['ID']['output'];
|
|
42152
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42153
|
+
node?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion>;
|
|
42154
|
+
};
|
|
42155
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion = DevOpsDocument | ExternalDocument | ExternalRemoteLink;
|
|
42003
42156
|
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
42004
42157
|
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
|
|
42005
42158
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
|
|
@@ -46646,6 +46799,34 @@ export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseEdge = {
|
|
|
46646
46799
|
};
|
|
46647
46800
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46648
46801
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageUnion = ConfluencePage;
|
|
46802
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateConnection = HasPageInfo & {
|
|
46803
|
+
__typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateConnection';
|
|
46804
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedGoalUpdateEdge>>>;
|
|
46805
|
+
pageInfo: PageInfo;
|
|
46806
|
+
};
|
|
46807
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateEdge = {
|
|
46808
|
+
__typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateEdge';
|
|
46809
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46810
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46811
|
+
id: Scalars['ID']['output'];
|
|
46812
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46813
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateUnion>;
|
|
46814
|
+
};
|
|
46815
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection = HasPageInfo & {
|
|
46816
|
+
__typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection';
|
|
46817
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseEdge>>>;
|
|
46818
|
+
pageInfo: PageInfo;
|
|
46819
|
+
};
|
|
46820
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateInverseEdge = {
|
|
46821
|
+
__typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateInverseEdge';
|
|
46822
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46823
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46824
|
+
id: Scalars['ID']['output'];
|
|
46825
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46826
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseUnion>;
|
|
46827
|
+
};
|
|
46828
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46829
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateUnion = TownsquareGoalUpdate;
|
|
46649
46830
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueConnection = HasPageInfo & {
|
|
46650
46831
|
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueConnection';
|
|
46651
46832
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueEdge>>>;
|
|
@@ -46674,6 +46855,34 @@ export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
|
46674
46855
|
};
|
|
46675
46856
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46676
46857
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueUnion = JiraIssue;
|
|
46858
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateConnection = HasPageInfo & {
|
|
46859
|
+
__typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateConnection';
|
|
46860
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedProjectUpdateEdge>>>;
|
|
46861
|
+
pageInfo: PageInfo;
|
|
46862
|
+
};
|
|
46863
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateEdge = {
|
|
46864
|
+
__typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateEdge';
|
|
46865
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46866
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46867
|
+
id: Scalars['ID']['output'];
|
|
46868
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46869
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateUnion>;
|
|
46870
|
+
};
|
|
46871
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection = HasPageInfo & {
|
|
46872
|
+
__typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection';
|
|
46873
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseEdge>>>;
|
|
46874
|
+
pageInfo: PageInfo;
|
|
46875
|
+
};
|
|
46876
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseEdge = {
|
|
46877
|
+
__typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateInverseEdge';
|
|
46878
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46879
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46880
|
+
id: Scalars['ID']['output'];
|
|
46881
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46882
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseUnion>;
|
|
46883
|
+
};
|
|
46884
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46885
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateUnion = TownsquareProjectUpdate;
|
|
46677
46886
|
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection = HasPageInfo & {
|
|
46678
46887
|
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection';
|
|
46679
46888
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge>>>;
|
|
@@ -47727,9 +47936,15 @@ export declare type GraphStoreUserViewedConfluenceBlogpostSortInput = {
|
|
|
47727
47936
|
export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
47728
47937
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47729
47938
|
};
|
|
47939
|
+
export declare type GraphStoreUserViewedGoalUpdateSortInput = {
|
|
47940
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47941
|
+
};
|
|
47730
47942
|
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
47731
47943
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47732
47944
|
};
|
|
47945
|
+
export declare type GraphStoreUserViewedProjectUpdateSortInput = {
|
|
47946
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47947
|
+
};
|
|
47733
47948
|
export declare type GraphStoreUserWatchesConfluenceBlogpostSortInput = {
|
|
47734
47949
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47735
47950
|
};
|
|
@@ -49603,6 +49818,7 @@ export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
|
49603
49818
|
};
|
|
49604
49819
|
export declare type HelpLayoutQueryApiLayoutByParentIdArgs = {
|
|
49605
49820
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
49821
|
+
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
49606
49822
|
parentAri: Scalars['ID']['input'];
|
|
49607
49823
|
};
|
|
49608
49824
|
export declare type HelpLayoutQueryApiMediaConfigArgs = {
|
|
@@ -66443,6 +66659,7 @@ export declare type JiraUserPreferences = {
|
|
|
66443
66659
|
colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
|
|
66444
66660
|
globalIssueCreateView?: Maybe<JiraGlobalIssueCreateView>;
|
|
66445
66661
|
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66662
|
+
isCustomNavBarThemeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
66446
66663
|
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
66447
66664
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
66448
66665
|
isIssueViewCrossFlowBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -68572,6 +68789,47 @@ export declare type KnowledgeBaseArticleCountSource = {
|
|
|
68572
68789
|
container: Scalars['ID']['output'];
|
|
68573
68790
|
count: Scalars['Int']['output'];
|
|
68574
68791
|
};
|
|
68792
|
+
export declare type KnowledgeBaseArticleSearchInput = {
|
|
68793
|
+
articleContainers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
68794
|
+
cloudId: Scalars['ID']['input'];
|
|
68795
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
68796
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
68797
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
68798
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
68799
|
+
sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
|
|
68800
|
+
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
68801
|
+
};
|
|
68802
|
+
export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | QueryError;
|
|
68803
|
+
export declare enum KnowledgeBaseArticleSearchSortByKey {
|
|
68804
|
+
LastModified = "LAST_MODIFIED",
|
|
68805
|
+
Title = "TITLE"
|
|
68806
|
+
}
|
|
68807
|
+
export declare enum KnowledgeBaseArticleSearchSortOrder {
|
|
68808
|
+
Asc = "ASC",
|
|
68809
|
+
Desc = "DESC"
|
|
68810
|
+
}
|
|
68811
|
+
export declare type KnowledgeBaseCrossSiteArticle = {
|
|
68812
|
+
__typename?: 'KnowledgeBaseCrossSiteArticle';
|
|
68813
|
+
friendlyLastModified?: Maybe<Scalars['String']['output']>;
|
|
68814
|
+
id: Scalars['ID']['output'];
|
|
68815
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
68816
|
+
spaceAri?: Maybe<Scalars['ID']['output']>;
|
|
68817
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
68818
|
+
spaceUrl?: Maybe<Scalars['String']['output']>;
|
|
68819
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
68820
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
68821
|
+
};
|
|
68822
|
+
export declare type KnowledgeBaseCrossSiteArticleEdge = {
|
|
68823
|
+
__typename?: 'KnowledgeBaseCrossSiteArticleEdge';
|
|
68824
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68825
|
+
node?: Maybe<KnowledgeBaseCrossSiteArticle>;
|
|
68826
|
+
};
|
|
68827
|
+
export declare type KnowledgeBaseCrossSiteSearchConnection = {
|
|
68828
|
+
__typename?: 'KnowledgeBaseCrossSiteSearchConnection';
|
|
68829
|
+
edges?: Maybe<Array<KnowledgeBaseCrossSiteArticleEdge>>;
|
|
68830
|
+
nodes?: Maybe<Array<Maybe<KnowledgeBaseCrossSiteArticle>>>;
|
|
68831
|
+
pageInfo: PageInfo;
|
|
68832
|
+
};
|
|
68575
68833
|
export declare type KnowledgeBaseLinkResponse = {
|
|
68576
68834
|
__typename?: 'KnowledgeBaseLinkResponse';
|
|
68577
68835
|
knowledgeBaseSource?: Maybe<KnowledgeBaseSource>;
|
|
@@ -68607,7 +68865,7 @@ export declare type KnowledgeBaseSource = {
|
|
|
68607
68865
|
__typename?: 'KnowledgeBaseSource';
|
|
68608
68866
|
containerAri: Scalars['ID']['output'];
|
|
68609
68867
|
entityReference: Scalars['String']['output'];
|
|
68610
|
-
id
|
|
68868
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
68611
68869
|
name: Scalars['String']['output'];
|
|
68612
68870
|
permissions?: Maybe<KnowledgeBaseSourcePermissions>;
|
|
68613
68871
|
sourceType?: Maybe<Scalars['String']['output']>;
|
|
@@ -69404,8 +69662,11 @@ export declare type LogQueryInput = {
|
|
|
69404
69662
|
functionKey?: InputMaybe<Scalars['String']['input']>;
|
|
69405
69663
|
functionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
69406
69664
|
installationContexts?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
69665
|
+
invocationId?: InputMaybe<Scalars['String']['input']>;
|
|
69407
69666
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
69667
|
+
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
69408
69668
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
69669
|
+
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
69409
69670
|
};
|
|
69410
69671
|
export declare type LookAndFeel = {
|
|
69411
69672
|
__typename?: 'LookAndFeel';
|
|
@@ -69546,6 +69807,7 @@ export declare type LpCourseProgress = {
|
|
|
69546
69807
|
completedDate?: Maybe<Scalars['String']['output']>;
|
|
69547
69808
|
courseId?: Maybe<Scalars['String']['output']>;
|
|
69548
69809
|
id?: Maybe<Scalars['String']['output']>;
|
|
69810
|
+
isFromIntellum: Scalars['Boolean']['output'];
|
|
69549
69811
|
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
69550
69812
|
status?: Maybe<LpCourseStatus>;
|
|
69551
69813
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -69942,8 +70204,10 @@ export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
|
69942
70204
|
buildNumber: Scalars['ID']['output'];
|
|
69943
70205
|
changelog?: Maybe<MarketplaceConsoleAppSoftwareVersionChangelog>;
|
|
69944
70206
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibility>;
|
|
70207
|
+
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69945
70208
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetails;
|
|
69946
70209
|
isBeta: Scalars['Boolean']['output'];
|
|
70210
|
+
isLatest?: Maybe<Scalars['Boolean']['output']>;
|
|
69947
70211
|
isSupported: Scalars['Boolean']['output'];
|
|
69948
70212
|
licenseType?: Maybe<MarketplaceConsoleAppSoftwareVersionLicenseType>;
|
|
69949
70213
|
sourceCodeLicense?: Maybe<MarketplaceConsoleSourceCodeLicense>;
|
|
@@ -73352,6 +73616,7 @@ export declare type Mutation = {
|
|
|
73352
73616
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
73353
73617
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
73354
73618
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
73619
|
+
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
73355
73620
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
73356
73621
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
73357
73622
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -73546,6 +73811,8 @@ export declare type Mutation = {
|
|
|
73546
73811
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
73547
73812
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
73548
73813
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
73814
|
+
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
73815
|
+
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
73549
73816
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
73550
73817
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
73551
73818
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
@@ -73918,6 +74185,10 @@ export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
|
|
|
73918
74185
|
id: Scalars['ID']['input'];
|
|
73919
74186
|
input: AgentStudioUpdateAgentDetailsInput;
|
|
73920
74187
|
};
|
|
74188
|
+
export declare type MutationAgentStudio_UpdateAgentKnowledgeSourcesArgs = {
|
|
74189
|
+
id: Scalars['ID']['input'];
|
|
74190
|
+
input: AgentStudioKnowledgeConfigurationInput;
|
|
74191
|
+
};
|
|
73921
74192
|
export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
73922
74193
|
id: Scalars['ID']['input'];
|
|
73923
74194
|
input: AgentStudioUpdateConversationStartersInput;
|
|
@@ -74511,6 +74782,14 @@ export declare type MutationConfluence_MakeSubCalendarPrivateUrlArgs = {
|
|
|
74511
74782
|
cloudId: Scalars['ID']['input'];
|
|
74512
74783
|
input: ConfluenceMakeSubCalendarPrivateUrlInput;
|
|
74513
74784
|
};
|
|
74785
|
+
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
74786
|
+
cloudId: Scalars['ID']['input'];
|
|
74787
|
+
commentId: Scalars['ID']['input'];
|
|
74788
|
+
};
|
|
74789
|
+
export declare type MutationConfluence_ResolveCommentsArgs = {
|
|
74790
|
+
cloudId: Scalars['ID']['input'];
|
|
74791
|
+
commentIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
74792
|
+
};
|
|
74514
74793
|
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
74515
74794
|
cloudId: Scalars['ID']['input'];
|
|
74516
74795
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
@@ -78165,7 +78444,6 @@ export declare type Query = {
|
|
|
78165
78444
|
catchupEditMetadataForContent?: Maybe<CatchupEditMetadataForContent>;
|
|
78166
78445
|
catchupGetLastViewedTime?: Maybe<CatchupLastViewedTimeResponse>;
|
|
78167
78446
|
catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
|
|
78168
|
-
catchupVersionSummaryMetadataForContent?: Maybe<CatchupVersionSummaryMetadataForContent>;
|
|
78169
78447
|
ccp?: Maybe<CcpQueryApi>;
|
|
78170
78448
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
78171
78449
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
@@ -78412,7 +78690,6 @@ export declare type Query = {
|
|
|
78412
78690
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
78413
78691
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
78414
78692
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
78415
|
-
connectedData?: Maybe<ConnectedDataQuery>;
|
|
78416
78693
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
78417
78694
|
contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
|
|
78418
78695
|
content?: Maybe<PaginatedContentListWithChild>;
|
|
@@ -78588,6 +78865,7 @@ export declare type Query = {
|
|
|
78588
78865
|
jsw?: Maybe<JswQuery>;
|
|
78589
78866
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
78590
78867
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
78868
|
+
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
78591
78869
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
78592
78870
|
labelSearch?: Maybe<LabelSearchResults>;
|
|
78593
78871
|
license?: Maybe<License>;
|
|
@@ -78749,7 +79027,6 @@ export declare type Query = {
|
|
|
78749
79027
|
team?: Maybe<TeamQuery>;
|
|
78750
79028
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
78751
79029
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
78752
|
-
teamPresence?: Maybe<TeamPresence>;
|
|
78753
79030
|
template?: Maybe<ContentPlatformTemplate>;
|
|
78754
79031
|
templateBodies?: Maybe<PaginatedTemplateBodyList>;
|
|
78755
79032
|
templateCategories?: Maybe<PaginatedTemplateCategoryList>;
|
|
@@ -78965,6 +79242,8 @@ export declare type QueryBlockedAccessRestrictionsArgs = {
|
|
|
78965
79242
|
};
|
|
78966
79243
|
export declare type QueryBoardScopeArgs = {
|
|
78967
79244
|
boardId: Scalars['ID']['input'];
|
|
79245
|
+
customFilterIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
79246
|
+
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
78968
79247
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78969
79248
|
};
|
|
78970
79249
|
export declare type QueryBulkPermittedArgs = {
|
|
@@ -78996,12 +79275,6 @@ export declare type QueryCatchupVersionDiffMetadataForContentArgs = {
|
|
|
78996
79275
|
originalContentVersion: Scalars['Int']['input'];
|
|
78997
79276
|
revisedContentVersion: Scalars['Int']['input'];
|
|
78998
79277
|
};
|
|
78999
|
-
export declare type QueryCatchupVersionSummaryMetadataForContentArgs = {
|
|
79000
|
-
contentId: Scalars['ID']['input'];
|
|
79001
|
-
contentType: CatchupContentType;
|
|
79002
|
-
endTimeMs: Scalars['Long']['input'];
|
|
79003
|
-
updateType: CatchupUpdateType;
|
|
79004
|
-
};
|
|
79005
79278
|
export declare type QueryClassificationLevelArgs = {
|
|
79006
79279
|
id: Scalars['String']['input'];
|
|
79007
79280
|
};
|
|
@@ -80058,7 +80331,7 @@ export declare type QueryConfluence_UserContentAccessArgs = {
|
|
|
80058
80331
|
accessType: ResourceAccessType;
|
|
80059
80332
|
accountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
80060
80333
|
cloudId: Scalars['ID']['input'];
|
|
80061
|
-
contentId: Scalars['
|
|
80334
|
+
contentId: Scalars['ID']['input'];
|
|
80062
80335
|
};
|
|
80063
80336
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
80064
80337
|
applicationId: Scalars['ID']['input'];
|
|
@@ -80719,6 +80992,9 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
|
80719
80992
|
cloudId: Scalars['ID']['input'];
|
|
80720
80993
|
spaceAris: Array<Scalars['ID']['input']>;
|
|
80721
80994
|
};
|
|
80995
|
+
export declare type QueryKnowledgeBase_SearchArticlesArgs = {
|
|
80996
|
+
searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
|
|
80997
|
+
};
|
|
80722
80998
|
export declare type QueryLabelSearchArgs = {
|
|
80723
80999
|
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
80724
81000
|
ignoreRelated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82157,6 +82433,12 @@ export declare type RemoveUserSpacePermissionsInput = {
|
|
|
82157
82433
|
accountId: Scalars['String']['input'];
|
|
82158
82434
|
spaceKey: Scalars['String']['input'];
|
|
82159
82435
|
};
|
|
82436
|
+
export declare type ReopenCommentsMutationErrorExtension = MutationErrorExtension & {
|
|
82437
|
+
__typename?: 'ReopenCommentsMutationErrorExtension';
|
|
82438
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
82439
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
82440
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
82441
|
+
};
|
|
82160
82442
|
export declare type ReplyInlineCommentInput = {
|
|
82161
82443
|
commentBody: CommentBody;
|
|
82162
82444
|
commentSource?: InputMaybe<Platform>;
|
|
@@ -82201,6 +82483,12 @@ export declare type ResetToDefaultSpaceRoleAssignmentsPayload = Payload & {
|
|
|
82201
82483
|
errors?: Maybe<Array<MutationError>>;
|
|
82202
82484
|
success: Scalars['Boolean']['output'];
|
|
82203
82485
|
};
|
|
82486
|
+
export declare type ResolveCommentsMutationErrorExtension = MutationErrorExtension & {
|
|
82487
|
+
__typename?: 'ResolveCommentsMutationErrorExtension';
|
|
82488
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
82489
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
82490
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
82491
|
+
};
|
|
82204
82492
|
export declare type ResolveInlineCommentPayload = {
|
|
82205
82493
|
__typename?: 'ResolveInlineCommentPayload';
|
|
82206
82494
|
resolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
@@ -84291,13 +84579,6 @@ export declare type SecurityWorkspace = {
|
|
|
84291
84579
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
84292
84580
|
url?: Maybe<Scalars['URL']['output']>;
|
|
84293
84581
|
};
|
|
84294
|
-
export declare enum Segment {
|
|
84295
|
-
Enterprise = "ENTERPRISE",
|
|
84296
|
-
Free = "FREE",
|
|
84297
|
-
Premium = "PREMIUM",
|
|
84298
|
-
Standard = "STANDARD",
|
|
84299
|
-
Unknown = "UNKNOWN"
|
|
84300
|
-
}
|
|
84301
84582
|
export declare type ServiceProvider = {
|
|
84302
84583
|
__typename?: 'ServiceProvider';
|
|
84303
84584
|
endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -86334,6 +86615,7 @@ export declare type SoftwareBoard = {
|
|
|
86334
86615
|
columns?: Maybe<Array<Maybe<Column>>>;
|
|
86335
86616
|
customSwimlaneConfig?: Maybe<JswCustomSwimlaneConnection>;
|
|
86336
86617
|
editConfig?: Maybe<BoardEditConfig>;
|
|
86618
|
+
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
86337
86619
|
hasClearedCards?: Maybe<Scalars['Boolean']['output']>;
|
|
86338
86620
|
id?: Maybe<Scalars['ID']['output']>;
|
|
86339
86621
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
@@ -86844,9 +87126,12 @@ export declare enum SpacePermissionType {
|
|
|
86844
87126
|
ArchiveSpace = "ARCHIVE_SPACE",
|
|
86845
87127
|
Comment = "COMMENT",
|
|
86846
87128
|
CreateAttachment = "CREATE_ATTACHMENT",
|
|
87129
|
+
CreateBlog = "CREATE_BLOG",
|
|
86847
87130
|
CreateEditPage = "CREATE_EDIT_PAGE",
|
|
86848
87131
|
DeleteSpace = "DELETE_SPACE",
|
|
86849
87132
|
EditBlog = "EDIT_BLOG",
|
|
87133
|
+
EditNativeContent = "EDIT_NATIVE_CONTENT",
|
|
87134
|
+
ExportContent = "EXPORT_CONTENT",
|
|
86850
87135
|
ExportPage = "EXPORT_PAGE",
|
|
86851
87136
|
ExportSpace = "EXPORT_SPACE",
|
|
86852
87137
|
ManageGuestUsers = "MANAGE_GUEST_USERS",
|
|
@@ -87895,10 +88180,6 @@ export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
|
87895
88180
|
principalsToRemove: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
87896
88181
|
role: TeamRole;
|
|
87897
88182
|
};
|
|
87898
|
-
export declare type TeamPresence = {
|
|
87899
|
-
__typename?: 'TeamPresence';
|
|
87900
|
-
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
87901
|
-
};
|
|
87902
88183
|
export declare type TeamPrincipal = {
|
|
87903
88184
|
__typename?: 'TeamPrincipal';
|
|
87904
88185
|
principalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -88142,7 +88423,6 @@ export declare type Tenant = {
|
|
|
88142
88423
|
cloudId: Scalars['ID']['output'];
|
|
88143
88424
|
editions?: Maybe<ConfluenceEditions>;
|
|
88144
88425
|
environment: Environment;
|
|
88145
|
-
segment?: Maybe<Segment>;
|
|
88146
88426
|
shard: Scalars['String']['output'];
|
|
88147
88427
|
};
|
|
88148
88428
|
export declare type TenantContext = {
|
|
@@ -89005,6 +89285,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
89005
89285
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
89006
89286
|
name: Scalars['String']['output'];
|
|
89007
89287
|
owner?: Maybe<User>;
|
|
89288
|
+
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
89008
89289
|
state?: Maybe<TownsquareProjectState>;
|
|
89009
89290
|
tags?: Maybe<TownsquareTagConnection>;
|
|
89010
89291
|
updates?: Maybe<TownsquareProjectUpdateConnection>;
|
|
@@ -91618,6 +91899,7 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
91618
91899
|
isLinked: Scalars['Boolean']['output'];
|
|
91619
91900
|
isManaged: Scalars['Boolean']['output'];
|
|
91620
91901
|
isPrimary: Scalars['Boolean']['output'];
|
|
91902
|
+
khorosUserId: Scalars['Int']['output'];
|
|
91621
91903
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
91622
91904
|
nickname: Scalars['String']['output'];
|
|
91623
91905
|
picture: Scalars['String']['output'];
|
|
@@ -91629,6 +91911,7 @@ export declare type UnifiedAccountBasics = UnifiedINode & {
|
|
|
91629
91911
|
isLinked: Scalars['Boolean']['output'];
|
|
91630
91912
|
isManaged: Scalars['Boolean']['output'];
|
|
91631
91913
|
isPrimary: Scalars['Boolean']['output'];
|
|
91914
|
+
khorosUserId: Scalars['Int']['output'];
|
|
91632
91915
|
linkedAccountsBasics?: Maybe<UnifiedULinkedAccountBasicsResult>;
|
|
91633
91916
|
nickname: Scalars['String']['output'];
|
|
91634
91917
|
picture: Scalars['String']['output'];
|
|
@@ -91776,6 +92059,7 @@ export declare type UnifiedForums = UnifiedINode & {
|
|
|
91776
92059
|
badges?: Maybe<UnifiedUForumsBadgesResult>;
|
|
91777
92060
|
groups?: Maybe<UnifiedUForumsGroupsResult>;
|
|
91778
92061
|
id: Scalars['ID']['output'];
|
|
92062
|
+
khorosUserId: Scalars['Int']['output'];
|
|
91779
92063
|
snapshot?: Maybe<UnifiedUForumsSnapshotResult>;
|
|
91780
92064
|
};
|
|
91781
92065
|
export declare type UnifiedForumsBadgesArgs = {
|
|
@@ -93351,7 +93635,6 @@ export declare type UserPreferences = {
|
|
|
93351
93635
|
spacePagesSortView: PagesSortPersistenceOption;
|
|
93352
93636
|
spaceViewsPersistence: SpaceViewsPersistenceOption;
|
|
93353
93637
|
theme: Scalars['String']['output'];
|
|
93354
|
-
topNavigationOptedOut?: Maybe<Scalars['Boolean']['output']>;
|
|
93355
93638
|
userSpacesNotifiedChangeBoardingOfExternalCollab: Array<Maybe<Scalars['String']['output']>>;
|
|
93356
93639
|
userSpacesNotifiedOfExternalCollab: Array<Maybe<Scalars['String']['output']>>;
|
|
93357
93640
|
watchMyOwnContent?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -93489,13 +93772,6 @@ export declare type Version = {
|
|
|
93489
93772
|
syncRevSource?: Maybe<Scalars['String']['output']>;
|
|
93490
93773
|
when?: Maybe<Scalars['String']['output']>;
|
|
93491
93774
|
};
|
|
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
93775
|
export declare type ViewedComments = {
|
|
93500
93776
|
__typename?: 'ViewedComments';
|
|
93501
93777
|
commentIds: Array<Maybe<Scalars['ID']['output']>>;
|