@forge/cli-shared 5.3.0 → 5.3.1-next.0
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 +7 -0
- package/out/graphql/graphql-types.d.ts +762 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +139 -15
- package/package.json +2 -2
|
@@ -580,7 +580,10 @@ export declare enum ApiGroup {
|
|
|
580
580
|
Confluence = "CONFLUENCE",
|
|
581
581
|
ConfluenceAnalytics = "CONFLUENCE_ANALYTICS",
|
|
582
582
|
ConfluenceLegacy = "CONFLUENCE_LEGACY",
|
|
583
|
+
ConfluenceMutations = "CONFLUENCE_MUTATIONS",
|
|
584
|
+
ConfluencePageTree = "CONFLUENCE_PAGE_TREE",
|
|
583
585
|
ConfluenceSmarts = "CONFLUENCE_SMARTS",
|
|
586
|
+
ConfluenceTenant = "CONFLUENCE_TENANT",
|
|
584
587
|
ConfluenceUser = "CONFLUENCE_USER",
|
|
585
588
|
ConfluenceV2 = "CONFLUENCE_V2",
|
|
586
589
|
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
@@ -6690,6 +6693,14 @@ export declare type ConfluenceLegacy_AddDefaultExCoSpacePermissionsPayload = {
|
|
|
6690
6693
|
errors?: Maybe<Array<MutationError>>;
|
|
6691
6694
|
status: Scalars['Boolean']['output'];
|
|
6692
6695
|
};
|
|
6696
|
+
export declare type ConfluenceLegacy_AddLabelsInput = {
|
|
6697
|
+
contentId: Scalars['ID']['input'];
|
|
6698
|
+
labels: Array<ConfluenceLegacy_LabelInput>;
|
|
6699
|
+
};
|
|
6700
|
+
export declare type ConfluenceLegacy_AddLabelsPayload = {
|
|
6701
|
+
__typename?: 'ConfluenceLegacy_AddLabelsPayload';
|
|
6702
|
+
labels: ConfluenceLegacy_Mutations_PaginatedLabelList;
|
|
6703
|
+
};
|
|
6693
6704
|
export declare type ConfluenceLegacy_AddPublicLinkPermissionsInput = {
|
|
6694
6705
|
objectId: Scalars['ID']['input'];
|
|
6695
6706
|
objectType: ConfluenceLegacy_PublicLinkPermissionsObjectType;
|
|
@@ -6945,6 +6956,16 @@ export declare type ConfluenceLegacy_BlockSmartLink = ConfluenceLegacy_SmartLink
|
|
|
6945
6956
|
__typename?: 'ConfluenceLegacy_BlockSmartLink';
|
|
6946
6957
|
url: Scalars['String']['output'];
|
|
6947
6958
|
};
|
|
6959
|
+
export declare enum ConfluenceLegacy_BodyFormatType {
|
|
6960
|
+
AnonymousExportView = "ANONYMOUS_EXPORT_VIEW",
|
|
6961
|
+
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
6962
|
+
Editor = "EDITOR",
|
|
6963
|
+
Editor2 = "EDITOR2",
|
|
6964
|
+
ExportView = "EXPORT_VIEW",
|
|
6965
|
+
Storage = "STORAGE",
|
|
6966
|
+
StyledView = "STYLED_VIEW",
|
|
6967
|
+
View = "VIEW"
|
|
6968
|
+
}
|
|
6948
6969
|
export declare type ConfluenceLegacy_BordersAndDividersLookAndFeel = {
|
|
6949
6970
|
__typename?: 'ConfluenceLegacy_BordersAndDividersLookAndFeel';
|
|
6950
6971
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -7407,7 +7428,9 @@ export declare type ConfluenceLegacy_ContentAnalyticsPageViewInfo = {
|
|
|
7407
7428
|
lastVersionViewed: Scalars['Int']['output'];
|
|
7408
7429
|
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
7409
7430
|
lastViewedAt: Scalars['String']['output'];
|
|
7431
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
7410
7432
|
userId: Scalars['ID']['output'];
|
|
7433
|
+
userProfile?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
7411
7434
|
views: Scalars['Int']['output'];
|
|
7412
7435
|
};
|
|
7413
7436
|
export declare type ConfluenceLegacy_ContentAnalyticsTotalViewsByPage = {
|
|
@@ -7809,6 +7832,8 @@ export declare type ConfluenceLegacy_CountGroupByUser = {
|
|
|
7809
7832
|
export declare type ConfluenceLegacy_CountGroupByUserItem = {
|
|
7810
7833
|
__typename?: 'ConfluenceLegacy_CountGroupByUserItem';
|
|
7811
7834
|
count: Scalars['Int']['output'];
|
|
7835
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
7836
|
+
userId: Scalars['String']['output'];
|
|
7812
7837
|
};
|
|
7813
7838
|
export declare type ConfluenceLegacy_CqlMetaData = {
|
|
7814
7839
|
__typename?: 'ConfluenceLegacy_CqlMetaData';
|
|
@@ -8088,6 +8113,15 @@ export declare type ConfluenceLegacy_DeleteInlineCommentInput = {
|
|
|
8088
8113
|
commentId: Scalars['ID']['input'];
|
|
8089
8114
|
step?: InputMaybe<ConfluenceLegacy_Step>;
|
|
8090
8115
|
};
|
|
8116
|
+
export declare type ConfluenceLegacy_DeleteLabelInput = {
|
|
8117
|
+
contentId: Scalars['ID']['input'];
|
|
8118
|
+
label: Scalars['String']['input'];
|
|
8119
|
+
};
|
|
8120
|
+
export declare type ConfluenceLegacy_DeleteLabelPayload = {
|
|
8121
|
+
__typename?: 'ConfluenceLegacy_DeleteLabelPayload';
|
|
8122
|
+
contentId: Scalars['ID']['output'];
|
|
8123
|
+
label: Scalars['String']['output'];
|
|
8124
|
+
};
|
|
8091
8125
|
export declare type ConfluenceLegacy_DeletePagesInput = {
|
|
8092
8126
|
areChildrenIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8093
8127
|
excludedBranchRootPageIDs?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
@@ -8099,6 +8133,19 @@ export declare type ConfluenceLegacy_DeletePagesPayload = {
|
|
|
8099
8133
|
status: Scalars['Boolean']['output'];
|
|
8100
8134
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
8101
8135
|
};
|
|
8136
|
+
export declare type ConfluenceLegacy_DeleteRelationInput = {
|
|
8137
|
+
relationName: ConfluenceLegacy_RelationType;
|
|
8138
|
+
sourceKey: Scalars['String']['input'];
|
|
8139
|
+
sourceType: ConfluenceLegacy_RelationSourceType;
|
|
8140
|
+
targetKey: Scalars['String']['input'];
|
|
8141
|
+
targetType: ConfluenceLegacy_RelationTargetType;
|
|
8142
|
+
};
|
|
8143
|
+
export declare type ConfluenceLegacy_DeleteRelationPayload = {
|
|
8144
|
+
__typename?: 'ConfluenceLegacy_DeleteRelationPayload';
|
|
8145
|
+
relationName: Scalars['String']['output'];
|
|
8146
|
+
sourceKey: Scalars['String']['output'];
|
|
8147
|
+
targetKey: Scalars['String']['output'];
|
|
8148
|
+
};
|
|
8102
8149
|
export declare type ConfluenceLegacy_DeleteSpaceDefaultClassificationLevelInput = {
|
|
8103
8150
|
id: Scalars['Long']['input'];
|
|
8104
8151
|
};
|
|
@@ -8325,6 +8372,16 @@ export declare type ConfluenceLegacy_EntityTimeseriesCountItem = {
|
|
|
8325
8372
|
count: Scalars['Int']['output'];
|
|
8326
8373
|
date: Scalars['String']['output'];
|
|
8327
8374
|
};
|
|
8375
|
+
export declare enum ConfluenceLegacy_Environment {
|
|
8376
|
+
Development = "DEVELOPMENT",
|
|
8377
|
+
Production = "PRODUCTION",
|
|
8378
|
+
Staging = "STAGING"
|
|
8379
|
+
}
|
|
8380
|
+
export declare type ConfluenceLegacy_Error = {
|
|
8381
|
+
__typename?: 'ConfluenceLegacy_Error';
|
|
8382
|
+
message: Scalars['String']['output'];
|
|
8383
|
+
status: Scalars['Int']['output'];
|
|
8384
|
+
};
|
|
8328
8385
|
export declare type ConfluenceLegacy_ExternalCollaboratorDefaultSpace = {
|
|
8329
8386
|
__typename?: 'ConfluenceLegacy_ExternalCollaboratorDefaultSpace';
|
|
8330
8387
|
enabled: Scalars['Boolean']['output'];
|
|
@@ -8857,6 +8914,10 @@ export declare type ConfluenceLegacy_LabelEdge = {
|
|
|
8857
8914
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
8858
8915
|
node?: Maybe<ConfluenceLegacy_Label>;
|
|
8859
8916
|
};
|
|
8917
|
+
export declare type ConfluenceLegacy_LabelInput = {
|
|
8918
|
+
name: Scalars['String']['input'];
|
|
8919
|
+
prefix: Scalars['String']['input'];
|
|
8920
|
+
};
|
|
8860
8921
|
export declare type ConfluenceLegacy_LabelSearchResults = {
|
|
8861
8922
|
__typename?: 'ConfluenceLegacy_LabelSearchResults';
|
|
8862
8923
|
otherLabels: Array<Maybe<ConfluenceLegacy_Label>>;
|
|
@@ -9086,12 +9147,32 @@ export declare type ConfluenceLegacy_MediaAccessTokens = {
|
|
|
9086
9147
|
readOnlyToken?: Maybe<ConfluenceLegacy_MediaToken>;
|
|
9087
9148
|
readWriteToken?: Maybe<ConfluenceLegacy_MediaToken>;
|
|
9088
9149
|
};
|
|
9150
|
+
export declare type ConfluenceLegacy_MediaAttachment = {
|
|
9151
|
+
__typename?: 'ConfluenceLegacy_MediaAttachment';
|
|
9152
|
+
html: Scalars['String']['output'];
|
|
9153
|
+
id: Scalars['ID']['output'];
|
|
9154
|
+
};
|
|
9155
|
+
export declare type ConfluenceLegacy_MediaAttachmentError = {
|
|
9156
|
+
__typename?: 'ConfluenceLegacy_MediaAttachmentError';
|
|
9157
|
+
error: ConfluenceLegacy_Error;
|
|
9158
|
+
};
|
|
9159
|
+
export declare type ConfluenceLegacy_MediaAttachmentInput = {
|
|
9160
|
+
file: ConfluenceLegacy_MediaFile;
|
|
9161
|
+
minorEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9162
|
+
};
|
|
9163
|
+
export declare type ConfluenceLegacy_MediaAttachmentOrError = ConfluenceLegacy_MediaAttachment | ConfluenceLegacy_MediaAttachmentError;
|
|
9089
9164
|
export declare type ConfluenceLegacy_MediaConfiguration = {
|
|
9090
9165
|
__typename?: 'ConfluenceLegacy_MediaConfiguration';
|
|
9091
9166
|
clientId: Scalars['String']['output'];
|
|
9092
9167
|
fileStoreUrl: Scalars['String']['output'];
|
|
9093
9168
|
maxFileSize?: Maybe<Scalars['Long']['output']>;
|
|
9094
9169
|
};
|
|
9170
|
+
export declare type ConfluenceLegacy_MediaFile = {
|
|
9171
|
+
id: Scalars['ID']['input'];
|
|
9172
|
+
mimeType?: InputMaybe<Scalars['String']['input']>;
|
|
9173
|
+
name: Scalars['String']['input'];
|
|
9174
|
+
size: Scalars['Int']['input'];
|
|
9175
|
+
};
|
|
9095
9176
|
export declare type ConfluenceLegacy_MediaPickerUserToken = {
|
|
9096
9177
|
__typename?: 'ConfluenceLegacy_MediaPickerUserToken';
|
|
9097
9178
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -9140,10 +9221,57 @@ export declare type ConfluenceLegacy_MoveBlogPayload = {
|
|
|
9140
9221
|
__typename?: 'ConfluenceLegacy_MoveBlogPayload';
|
|
9141
9222
|
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9142
9223
|
};
|
|
9224
|
+
export declare type ConfluenceLegacy_MovePageAsChildInput = {
|
|
9225
|
+
pageId: Scalars['ID']['input'];
|
|
9226
|
+
parentId: Scalars['ID']['input'];
|
|
9227
|
+
};
|
|
9228
|
+
export declare type ConfluenceLegacy_MovePageAsSiblingInput = {
|
|
9229
|
+
pageId: Scalars['ID']['input'];
|
|
9230
|
+
siblingId: Scalars['ID']['input'];
|
|
9231
|
+
};
|
|
9232
|
+
export declare type ConfluenceLegacy_MovePagePayload = {
|
|
9233
|
+
__typename?: 'ConfluenceLegacy_MovePagePayload';
|
|
9234
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9235
|
+
movedPage: Scalars['ID']['output'];
|
|
9236
|
+
page?: Maybe<ConfluenceLegacy_Page>;
|
|
9237
|
+
};
|
|
9238
|
+
export declare type ConfluenceLegacy_MovePageTopLevelInput = {
|
|
9239
|
+
pageId: Scalars['ID']['input'];
|
|
9240
|
+
targetSpaceKey: Scalars['String']['input'];
|
|
9241
|
+
};
|
|
9143
9242
|
export declare type ConfluenceLegacy_MutationResponse = {
|
|
9144
9243
|
__typename?: 'ConfluenceLegacy_MutationResponse';
|
|
9145
9244
|
success: Scalars['Boolean']['output'];
|
|
9146
9245
|
};
|
|
9246
|
+
export declare type ConfluenceLegacy_Mutations_CloudId = {
|
|
9247
|
+
__typename?: 'ConfluenceLegacy_Mutations_CloudId';
|
|
9248
|
+
cloudId: Scalars['ID']['output'];
|
|
9249
|
+
};
|
|
9250
|
+
export declare type ConfluenceLegacy_Mutations_Label = {
|
|
9251
|
+
__typename?: 'ConfluenceLegacy_Mutations_Label';
|
|
9252
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
9253
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
9254
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9255
|
+
prefix?: Maybe<Scalars['String']['output']>;
|
|
9256
|
+
};
|
|
9257
|
+
export declare type ConfluenceLegacy_Mutations_LabelEdge = {
|
|
9258
|
+
__typename?: 'ConfluenceLegacy_Mutations_LabelEdge';
|
|
9259
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
9260
|
+
node?: Maybe<ConfluenceLegacy_Mutations_Label>;
|
|
9261
|
+
};
|
|
9262
|
+
export declare type ConfluenceLegacy_Mutations_LinksContextBase = {
|
|
9263
|
+
__typename?: 'ConfluenceLegacy_Mutations_LinksContextBase';
|
|
9264
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
9265
|
+
context?: Maybe<Scalars['String']['output']>;
|
|
9266
|
+
};
|
|
9267
|
+
export declare type ConfluenceLegacy_Mutations_PaginatedLabelList = {
|
|
9268
|
+
__typename?: 'ConfluenceLegacy_Mutations_PaginatedLabelList';
|
|
9269
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
9270
|
+
edges?: Maybe<Array<Maybe<ConfluenceLegacy_Mutations_LabelEdge>>>;
|
|
9271
|
+
links?: Maybe<ConfluenceLegacy_Mutations_LinksContextBase>;
|
|
9272
|
+
nodes?: Maybe<Array<Maybe<ConfluenceLegacy_Mutations_Label>>>;
|
|
9273
|
+
pageInfo?: Maybe<PageInfo>;
|
|
9274
|
+
};
|
|
9147
9275
|
export declare type ConfluenceLegacy_MyVisitedPages = {
|
|
9148
9276
|
__typename?: 'ConfluenceLegacy_MyVisitedPages';
|
|
9149
9277
|
nodes: ConfluenceLegacy_MyVisitedPagesItems;
|
|
@@ -9188,6 +9316,18 @@ export declare type ConfluenceLegacy_NestedPageInput = {
|
|
|
9188
9316
|
isSelected?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9189
9317
|
pageID: Scalars['Long']['input'];
|
|
9190
9318
|
};
|
|
9319
|
+
export declare type ConfluenceLegacy_NewPageInput = {
|
|
9320
|
+
page: ConfluenceLegacy_PageInput;
|
|
9321
|
+
space: ConfluenceLegacy_SpaceInput;
|
|
9322
|
+
};
|
|
9323
|
+
export declare type ConfluenceLegacy_NewPagePayload = {
|
|
9324
|
+
__typename?: 'ConfluenceLegacy_NewPagePayload';
|
|
9325
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9326
|
+
contentId: Scalars['ID']['output'];
|
|
9327
|
+
page?: Maybe<ConfluenceLegacy_Page>;
|
|
9328
|
+
pageId: Scalars['ID']['output'];
|
|
9329
|
+
restrictions?: Maybe<ConfluenceLegacy_PageRestrictions>;
|
|
9330
|
+
};
|
|
9191
9331
|
export declare type ConfluenceLegacy_NotificationResponsePayload = Payload & {
|
|
9192
9332
|
__typename?: 'ConfluenceLegacy_NotificationResponsePayload';
|
|
9193
9333
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -9237,6 +9377,64 @@ export declare enum ConfluenceLegacy_OutputDeviceType {
|
|
|
9237
9377
|
Email = "EMAIL",
|
|
9238
9378
|
Mobile = "MOBILE"
|
|
9239
9379
|
}
|
|
9380
|
+
export declare enum ConfluenceLegacy_PtGraphQlPageStatus {
|
|
9381
|
+
Current = "CURRENT",
|
|
9382
|
+
Draft = "DRAFT",
|
|
9383
|
+
Historical = "HISTORICAL",
|
|
9384
|
+
Trashed = "TRASHED"
|
|
9385
|
+
}
|
|
9386
|
+
export declare type ConfluenceLegacy_PtPage = {
|
|
9387
|
+
__typename?: 'ConfluenceLegacy_PTPage';
|
|
9388
|
+
ancestors?: Maybe<Array<Maybe<ConfluenceLegacy_PtPage>>>;
|
|
9389
|
+
children?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9390
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9391
|
+
followingSiblings?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9392
|
+
hasChildren: Scalars['Boolean']['output'];
|
|
9393
|
+
hasInheritedRestrictions: Scalars['Boolean']['output'];
|
|
9394
|
+
hasRestrictions: Scalars['Boolean']['output'];
|
|
9395
|
+
id: Scalars['ID']['output'];
|
|
9396
|
+
nearestAncestors?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9397
|
+
previousSiblings?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9398
|
+
};
|
|
9399
|
+
export declare type ConfluenceLegacy_PtPageChildrenArgs = {
|
|
9400
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9401
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9402
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9403
|
+
};
|
|
9404
|
+
export declare type ConfluenceLegacy_PtPageFollowingSiblingsArgs = {
|
|
9405
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9406
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9407
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9408
|
+
};
|
|
9409
|
+
export declare type ConfluenceLegacy_PtPageNearestAncestorsArgs = {
|
|
9410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9411
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9412
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9413
|
+
};
|
|
9414
|
+
export declare type ConfluenceLegacy_PtPagePreviousSiblingsArgs = {
|
|
9415
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9416
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9417
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9418
|
+
};
|
|
9419
|
+
export declare type ConfluenceLegacy_PtPageEdge = {
|
|
9420
|
+
__typename?: 'ConfluenceLegacy_PTPageEdge';
|
|
9421
|
+
cursor: Scalars['String']['output'];
|
|
9422
|
+
node?: Maybe<ConfluenceLegacy_PtPage>;
|
|
9423
|
+
};
|
|
9424
|
+
export declare type ConfluenceLegacy_PtPageInfo = {
|
|
9425
|
+
__typename?: 'ConfluenceLegacy_PTPageInfo';
|
|
9426
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
9427
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
9428
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
9429
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
9430
|
+
};
|
|
9431
|
+
export declare type ConfluenceLegacy_PtPaginatedPageList = {
|
|
9432
|
+
__typename?: 'ConfluenceLegacy_PTPaginatedPageList';
|
|
9433
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
9434
|
+
edges?: Maybe<Array<Maybe<ConfluenceLegacy_PtPageEdge>>>;
|
|
9435
|
+
nodes?: Maybe<Array<Maybe<ConfluenceLegacy_PtPage>>>;
|
|
9436
|
+
pageInfo?: Maybe<ConfluenceLegacy_PtPageInfo>;
|
|
9437
|
+
};
|
|
9240
9438
|
export declare type ConfluenceLegacy_Page = {
|
|
9241
9439
|
__typename?: 'ConfluenceLegacy_Page';
|
|
9242
9440
|
ancestors: Array<Maybe<ConfluenceLegacy_Page>>;
|
|
@@ -9313,6 +9511,7 @@ export declare type ConfluenceLegacy_PageActivityEventCreatedComment = Confluenc
|
|
|
9313
9511
|
commentType: ConfluenceLegacy_AnalyticsCommentType;
|
|
9314
9512
|
groupSize: Scalars['Int']['output'];
|
|
9315
9513
|
timestamp: Scalars['String']['output'];
|
|
9514
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
9316
9515
|
};
|
|
9317
9516
|
export declare type ConfluenceLegacy_PageActivityEventCreatedPage = ConfluenceLegacy_PageActivityEvent & {
|
|
9318
9517
|
__typename?: 'ConfluenceLegacy_PageActivityEventCreatedPage';
|
|
@@ -9322,6 +9521,7 @@ export declare type ConfluenceLegacy_PageActivityEventCreatedPage = ConfluenceLe
|
|
|
9322
9521
|
groupSize: Scalars['Int']['output'];
|
|
9323
9522
|
pageVersion: Scalars['Int']['output'];
|
|
9324
9523
|
timestamp: Scalars['String']['output'];
|
|
9524
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
9325
9525
|
};
|
|
9326
9526
|
export declare type ConfluenceLegacy_PageActivityEventUpdatedPage = ConfluenceLegacy_PageActivityEvent & {
|
|
9327
9527
|
__typename?: 'ConfluenceLegacy_PageActivityEventUpdatedPage';
|
|
@@ -9331,6 +9531,7 @@ export declare type ConfluenceLegacy_PageActivityEventUpdatedPage = ConfluenceLe
|
|
|
9331
9531
|
groupSize: Scalars['Int']['output'];
|
|
9332
9532
|
pageVersion: Scalars['Int']['output'];
|
|
9333
9533
|
timestamp: Scalars['String']['output'];
|
|
9534
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
9334
9535
|
};
|
|
9335
9536
|
export declare type ConfluenceLegacy_PageActivityPageInfo = {
|
|
9336
9537
|
__typename?: 'ConfluenceLegacy_PageActivityPageInfo';
|
|
@@ -9357,6 +9558,10 @@ export declare type ConfluenceLegacy_PageAnalyticsTimeseriesCountItem = {
|
|
|
9357
9558
|
export declare enum ConfluenceLegacy_PageAnalyticsTimeseriesCountType {
|
|
9358
9559
|
All = "ALL"
|
|
9359
9560
|
}
|
|
9561
|
+
export declare type ConfluenceLegacy_PageBodyInput = {
|
|
9562
|
+
representation?: InputMaybe<ConfluenceLegacy_BodyFormatType>;
|
|
9563
|
+
value: Scalars['String']['input'];
|
|
9564
|
+
};
|
|
9360
9565
|
export declare enum ConfluenceLegacy_PageCardInPageTreeHoverPreference {
|
|
9361
9566
|
NoOptionSelected = "NO_OPTION_SELECTED",
|
|
9362
9567
|
NoShowPagecard = "NO_SHOW_PAGECARD",
|
|
@@ -9372,12 +9577,53 @@ export declare type ConfluenceLegacy_PageEdge = {
|
|
|
9372
9577
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
9373
9578
|
node?: Maybe<ConfluenceLegacy_Page>;
|
|
9374
9579
|
};
|
|
9580
|
+
export declare type ConfluenceLegacy_PageGroupRestriction = {
|
|
9581
|
+
__typename?: 'ConfluenceLegacy_PageGroupRestriction';
|
|
9582
|
+
name: Scalars['String']['output'];
|
|
9583
|
+
};
|
|
9584
|
+
export declare type ConfluenceLegacy_PageGroupRestrictionInput = {
|
|
9585
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
9586
|
+
name: Scalars['String']['input'];
|
|
9587
|
+
};
|
|
9588
|
+
export declare type ConfluenceLegacy_PageInput = {
|
|
9589
|
+
body?: InputMaybe<ConfluenceLegacy_PageBodyInput>;
|
|
9590
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
9591
|
+
restrictions?: InputMaybe<ConfluenceLegacy_PageRestrictionsInput>;
|
|
9592
|
+
status?: InputMaybe<ConfluenceLegacy_PageStatusInput>;
|
|
9593
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
9594
|
+
};
|
|
9595
|
+
export declare type ConfluenceLegacy_PageRestriction = {
|
|
9596
|
+
__typename?: 'ConfluenceLegacy_PageRestriction';
|
|
9597
|
+
group?: Maybe<Array<ConfluenceLegacy_PageGroupRestriction>>;
|
|
9598
|
+
user?: Maybe<Array<ConfluenceLegacy_PageUserRestriction>>;
|
|
9599
|
+
};
|
|
9600
|
+
export declare type ConfluenceLegacy_PageRestrictionInput = {
|
|
9601
|
+
group?: InputMaybe<Array<ConfluenceLegacy_PageGroupRestrictionInput>>;
|
|
9602
|
+
user?: InputMaybe<Array<ConfluenceLegacy_PageUserRestrictionInput>>;
|
|
9603
|
+
};
|
|
9604
|
+
export declare type ConfluenceLegacy_PageRestrictions = {
|
|
9605
|
+
__typename?: 'ConfluenceLegacy_PageRestrictions';
|
|
9606
|
+
read?: Maybe<ConfluenceLegacy_PageRestriction>;
|
|
9607
|
+
update?: Maybe<ConfluenceLegacy_PageRestriction>;
|
|
9608
|
+
};
|
|
9609
|
+
export declare type ConfluenceLegacy_PageRestrictionsInput = {
|
|
9610
|
+
read?: InputMaybe<ConfluenceLegacy_PageRestrictionInput>;
|
|
9611
|
+
update?: InputMaybe<ConfluenceLegacy_PageRestrictionInput>;
|
|
9612
|
+
};
|
|
9375
9613
|
export declare enum ConfluenceLegacy_PageStatus {
|
|
9376
9614
|
Current = "CURRENT",
|
|
9377
9615
|
Draft = "DRAFT",
|
|
9378
9616
|
Historical = "HISTORICAL",
|
|
9379
9617
|
Trashed = "TRASHED"
|
|
9380
9618
|
}
|
|
9619
|
+
export declare enum ConfluenceLegacy_PageStatusInput {
|
|
9620
|
+
Current = "CURRENT",
|
|
9621
|
+
Draft = "DRAFT"
|
|
9622
|
+
}
|
|
9623
|
+
export declare type ConfluenceLegacy_PageTree_CloudId = {
|
|
9624
|
+
__typename?: 'ConfluenceLegacy_PageTree_CloudId';
|
|
9625
|
+
cloudId: Scalars['ID']['output'];
|
|
9626
|
+
};
|
|
9381
9627
|
export declare enum ConfluenceLegacy_PageUpdateTrigger {
|
|
9382
9628
|
CreatePage = "CREATE_PAGE",
|
|
9383
9629
|
DiscardChanges = "DISCARD_CHANGES",
|
|
@@ -9392,6 +9638,13 @@ export declare enum ConfluenceLegacy_PageUpdateTrigger {
|
|
|
9392
9638
|
Unknown = "UNKNOWN",
|
|
9393
9639
|
ViewPage = "VIEW_PAGE"
|
|
9394
9640
|
}
|
|
9641
|
+
export declare type ConfluenceLegacy_PageUserRestriction = {
|
|
9642
|
+
__typename?: 'ConfluenceLegacy_PageUserRestriction';
|
|
9643
|
+
id: Scalars['ID']['output'];
|
|
9644
|
+
};
|
|
9645
|
+
export declare type ConfluenceLegacy_PageUserRestrictionInput = {
|
|
9646
|
+
id: Scalars['ID']['input'];
|
|
9647
|
+
};
|
|
9395
9648
|
export declare type ConfluenceLegacy_PageValidationResult = {
|
|
9396
9649
|
__typename?: 'ConfluenceLegacy_PageValidationResult';
|
|
9397
9650
|
isValid: Scalars['Boolean']['output'];
|
|
@@ -10087,6 +10340,18 @@ export declare type ConfluenceLegacy_RecommendedSpaceItem = {
|
|
|
10087
10340
|
space?: Maybe<ConfluenceLegacy_Space>;
|
|
10088
10341
|
spaceId: Scalars['Long']['output'];
|
|
10089
10342
|
};
|
|
10343
|
+
export declare enum ConfluenceLegacy_RelationSourceType {
|
|
10344
|
+
User = "user"
|
|
10345
|
+
}
|
|
10346
|
+
export declare enum ConfluenceLegacy_RelationTargetType {
|
|
10347
|
+
Content = "content",
|
|
10348
|
+
Space = "space"
|
|
10349
|
+
}
|
|
10350
|
+
export declare enum ConfluenceLegacy_RelationType {
|
|
10351
|
+
Collaborator = "collaborator",
|
|
10352
|
+
Favourite = "favourite",
|
|
10353
|
+
Touched = "touched"
|
|
10354
|
+
}
|
|
10090
10355
|
export declare type ConfluenceLegacy_RelevantFeedFilters = {
|
|
10091
10356
|
__typename?: 'ConfluenceLegacy_RelevantFeedFilters';
|
|
10092
10357
|
relevantFeedSpacesFilter: Array<Maybe<Scalars['Long']['output']>>;
|
|
@@ -10831,6 +11096,9 @@ export declare type ConfluenceLegacy_SpaceHistory = {
|
|
|
10831
11096
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
10832
11097
|
links?: Maybe<ConfluenceLegacy_LinksContextBase>;
|
|
10833
11098
|
};
|
|
11099
|
+
export declare type ConfluenceLegacy_SpaceInput = {
|
|
11100
|
+
key: Scalars['ID']['input'];
|
|
11101
|
+
};
|
|
10834
11102
|
export declare type ConfluenceLegacy_SpaceMetadata = {
|
|
10835
11103
|
__typename?: 'ConfluenceLegacy_SpaceMetadata';
|
|
10836
11104
|
labels?: Maybe<ConfluenceLegacy_PaginatedLabelList>;
|
|
@@ -11367,6 +11635,13 @@ export declare type ConfluenceLegacy_TemplatizeInput = {
|
|
|
11367
11635
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11368
11636
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
11369
11637
|
};
|
|
11638
|
+
export declare type ConfluenceLegacy_Tenant = {
|
|
11639
|
+
__typename?: 'ConfluenceLegacy_Tenant';
|
|
11640
|
+
activationId?: Maybe<Scalars['String']['output']>;
|
|
11641
|
+
cloudId: Scalars['ID']['output'];
|
|
11642
|
+
environment: ConfluenceLegacy_Environment;
|
|
11643
|
+
shard: Scalars['String']['output'];
|
|
11644
|
+
};
|
|
11370
11645
|
export declare type ConfluenceLegacy_TenantContext = {
|
|
11371
11646
|
__typename?: 'ConfluenceLegacy_TenantContext';
|
|
11372
11647
|
baseUrl: Scalars['String']['output'];
|
|
@@ -11374,6 +11649,10 @@ export declare type ConfluenceLegacy_TenantContext = {
|
|
|
11374
11649
|
initialProductList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
11375
11650
|
licensedProducts: Array<ConfluenceLegacy_LicensedProduct>;
|
|
11376
11651
|
};
|
|
11652
|
+
export declare type ConfluenceLegacy_Tenant_CloudId = {
|
|
11653
|
+
__typename?: 'ConfluenceLegacy_Tenant_CloudId';
|
|
11654
|
+
cloudId: Scalars['ID']['output'];
|
|
11655
|
+
};
|
|
11377
11656
|
export declare type ConfluenceLegacy_Theme = {
|
|
11378
11657
|
__typename?: 'ConfluenceLegacy_Theme';
|
|
11379
11658
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -11552,6 +11831,20 @@ export declare type ConfluenceLegacy_UpdateOwnerPayload = {
|
|
|
11552
11831
|
__typename?: 'ConfluenceLegacy_UpdateOwnerPayload';
|
|
11553
11832
|
content: ConfluenceLegacy_Content;
|
|
11554
11833
|
};
|
|
11834
|
+
export declare type ConfluenceLegacy_UpdatePageExtensionInput = {
|
|
11835
|
+
key: Scalars['String']['input'];
|
|
11836
|
+
value: Scalars['String']['input'];
|
|
11837
|
+
};
|
|
11838
|
+
export declare type ConfluenceLegacy_UpdatePageInput = {
|
|
11839
|
+
body?: InputMaybe<ConfluenceLegacy_PageBodyInput>;
|
|
11840
|
+
extensions?: InputMaybe<Array<InputMaybe<ConfluenceLegacy_UpdatePageExtensionInput>>>;
|
|
11841
|
+
mediaAttachments?: InputMaybe<Array<ConfluenceLegacy_MediaAttachmentInput>>;
|
|
11842
|
+
minorEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11843
|
+
pageId: Scalars['ID']['input'];
|
|
11844
|
+
restrictions?: InputMaybe<ConfluenceLegacy_PageRestrictionsInput>;
|
|
11845
|
+
status?: InputMaybe<ConfluenceLegacy_PageStatusInput>;
|
|
11846
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
11847
|
+
};
|
|
11555
11848
|
export declare type ConfluenceLegacy_UpdatePageOwnersInput = {
|
|
11556
11849
|
ownerId: Scalars['ID']['input'];
|
|
11557
11850
|
pageIDs: Array<InputMaybe<Scalars['Long']['input']>>;
|
|
@@ -11562,6 +11855,14 @@ export declare type ConfluenceLegacy_UpdatePageOwnersPayload = Payload & {
|
|
|
11562
11855
|
success: Scalars['Boolean']['output'];
|
|
11563
11856
|
taskId: Scalars['ID']['output'];
|
|
11564
11857
|
};
|
|
11858
|
+
export declare type ConfluenceLegacy_UpdatePagePayload = {
|
|
11859
|
+
__typename?: 'ConfluenceLegacy_UpdatePagePayload';
|
|
11860
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
11861
|
+
mediaAttached: Array<ConfluenceLegacy_MediaAttachmentOrError>;
|
|
11862
|
+
page?: Maybe<ConfluenceLegacy_Page>;
|
|
11863
|
+
pageId: Scalars['ID']['output'];
|
|
11864
|
+
restrictions?: Maybe<ConfluenceLegacy_PageRestrictions>;
|
|
11865
|
+
};
|
|
11565
11866
|
export declare type ConfluenceLegacy_UpdatePageStatusesInput = {
|
|
11566
11867
|
pages: Array<InputMaybe<ConfluenceLegacy_NestedPageInput>>;
|
|
11567
11868
|
spaceKey: Scalars['String']['input'];
|
|
@@ -11577,6 +11878,24 @@ export declare type ConfluenceLegacy_UpdatePermissionSubjectKeyInput = {
|
|
|
11577
11878
|
permissionDisplayType: ConfluenceLegacy_PermissionDisplayType;
|
|
11578
11879
|
subjectId: Scalars['String']['input'];
|
|
11579
11880
|
};
|
|
11881
|
+
export declare type ConfluenceLegacy_UpdateRelationInput = {
|
|
11882
|
+
relationName: ConfluenceLegacy_RelationType;
|
|
11883
|
+
sourceKey: Scalars['String']['input'];
|
|
11884
|
+
sourceStatus?: InputMaybe<Scalars['String']['input']>;
|
|
11885
|
+
sourceType: ConfluenceLegacy_RelationSourceType;
|
|
11886
|
+
sourceVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
11887
|
+
targetKey: Scalars['String']['input'];
|
|
11888
|
+
targetStatus?: InputMaybe<Scalars['String']['input']>;
|
|
11889
|
+
targetType: ConfluenceLegacy_RelationTargetType;
|
|
11890
|
+
targetVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
11891
|
+
};
|
|
11892
|
+
export declare type ConfluenceLegacy_UpdateRelationPayload = {
|
|
11893
|
+
__typename?: 'ConfluenceLegacy_UpdateRelationPayload';
|
|
11894
|
+
relationName: Scalars['String']['output'];
|
|
11895
|
+
sourceKey: Scalars['String']['output'];
|
|
11896
|
+
targetKey: Scalars['String']['output'];
|
|
11897
|
+
url: Scalars['String']['output'];
|
|
11898
|
+
};
|
|
11580
11899
|
export declare type ConfluenceLegacy_UpdateSiteLookAndFeelInput = {
|
|
11581
11900
|
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
11582
11901
|
faviconFiles: Array<ConfluenceLegacy_FaviconFileInput>;
|
|
@@ -13157,6 +13476,7 @@ export declare type ContentPlatformAnchor = {
|
|
|
13157
13476
|
__typename?: 'ContentPlatformAnchor';
|
|
13158
13477
|
anchorId: Scalars['String']['output'];
|
|
13159
13478
|
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
13479
|
+
banner?: Maybe<Array<ContentPlatformAnchorBanner>>;
|
|
13160
13480
|
callToAction?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
13161
13481
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13162
13482
|
headline?: Maybe<Array<ContentPlatformAnchorHeadline>>;
|
|
@@ -13169,6 +13489,19 @@ export declare type ContentPlatformAnchor = {
|
|
|
13169
13489
|
socialProof?: Maybe<Array<ContentPlatformAnchorSocialProof>>;
|
|
13170
13490
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13171
13491
|
};
|
|
13492
|
+
export declare type ContentPlatformAnchorBanner = {
|
|
13493
|
+
__typename?: 'ContentPlatformAnchorBanner';
|
|
13494
|
+
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
13495
|
+
backgroundImage?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
13496
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13497
|
+
image?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
13498
|
+
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
13499
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
13500
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
13501
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13502
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
13503
|
+
urlText?: Maybe<Scalars['String']['output']>;
|
|
13504
|
+
};
|
|
13172
13505
|
export declare type ContentPlatformAnchorContentSearchConnection = {
|
|
13173
13506
|
__typename?: 'ContentPlatformAnchorContentSearchConnection';
|
|
13174
13507
|
edges: Array<ContentPlatformAnchorResultEdge>;
|
|
@@ -13268,6 +13601,7 @@ export declare type ContentPlatformAuthor = {
|
|
|
13268
13601
|
__typename?: 'ContentPlatformAuthor';
|
|
13269
13602
|
authorPicture?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
13270
13603
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13604
|
+
externalContributor?: Maybe<Scalars['Boolean']['output']>;
|
|
13271
13605
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
13272
13606
|
name: Scalars['String']['output'];
|
|
13273
13607
|
organization?: Maybe<ContentPlatformOrganization>;
|
|
@@ -13336,6 +13670,7 @@ export declare type ContentPlatformContentClause = {
|
|
|
13336
13670
|
and?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
13337
13671
|
fieldNamed?: InputMaybe<Scalars['String']['input']>;
|
|
13338
13672
|
gte?: InputMaybe<ContentPlatformDateCondition>;
|
|
13673
|
+
hasAnyValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13339
13674
|
havingValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13340
13675
|
lte?: InputMaybe<ContentPlatformDateCondition>;
|
|
13341
13676
|
or?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
@@ -13949,6 +14284,15 @@ export declare type ContentPlatformTaxonomyRegion = {
|
|
|
13949
14284
|
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
13950
14285
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13951
14286
|
};
|
|
14287
|
+
export declare type ContentPlatformTaxonomyTemplateType = {
|
|
14288
|
+
__typename?: 'ContentPlatformTaxonomyTemplateType';
|
|
14289
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14290
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
14291
|
+
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14292
|
+
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
14293
|
+
templateTypeName?: Maybe<Scalars['String']['output']>;
|
|
14294
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14295
|
+
};
|
|
13952
14296
|
export declare type ContentPlatformTaxonomyUserRole = {
|
|
13953
14297
|
__typename?: 'ContentPlatformTaxonomyUserRole';
|
|
13954
14298
|
description: Scalars['String']['output'];
|
|
@@ -13984,6 +14328,7 @@ export declare type ContentPlatformTemplate = {
|
|
|
13984
14328
|
templateOverview?: Maybe<Array<ContentPlatformTemplateOverview>>;
|
|
13985
14329
|
templatePreview?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
13986
14330
|
templateProductRationale?: Maybe<Array<ContentPlatformTemplateProductRationale>>;
|
|
14331
|
+
templateType?: Maybe<Array<ContentPlatformTaxonomyTemplateType>>;
|
|
13987
14332
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13988
14333
|
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
13989
14334
|
};
|
|
@@ -20251,6 +20596,328 @@ export declare type GraphCreateSprintRetrospectivePageInput = {
|
|
|
20251
20596
|
to: Scalars['ID']['input'];
|
|
20252
20597
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
20253
20598
|
};
|
|
20599
|
+
export declare type GraphDataDepotBranch = {
|
|
20600
|
+
__typename?: 'GraphDataDepotBranch';
|
|
20601
|
+
branchId: Scalars['String']['output'];
|
|
20602
|
+
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
20603
|
+
id: Scalars['ID']['output'];
|
|
20604
|
+
name: Scalars['String']['output'];
|
|
20605
|
+
repositoryId: Scalars['String']['output'];
|
|
20606
|
+
url: Scalars['String']['output'];
|
|
20607
|
+
};
|
|
20608
|
+
export declare type GraphDataDepotBranchReference = {
|
|
20609
|
+
__typename?: 'GraphDataDepotBranchReference';
|
|
20610
|
+
name: Scalars['String']['output'];
|
|
20611
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20612
|
+
};
|
|
20613
|
+
export declare type GraphDataDepotBuildCommitReference = {
|
|
20614
|
+
__typename?: 'GraphDataDepotBuildCommitReference';
|
|
20615
|
+
id: Scalars['String']['output'];
|
|
20616
|
+
repositoryUri: Scalars['String']['output'];
|
|
20617
|
+
};
|
|
20618
|
+
export declare type GraphDataDepotBuildInfo = {
|
|
20619
|
+
__typename?: 'GraphDataDepotBuildInfo';
|
|
20620
|
+
buildNumber: Scalars['Long']['output'];
|
|
20621
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20622
|
+
displayName: Scalars['String']['output'];
|
|
20623
|
+
duration?: Maybe<Scalars['Long']['output']>;
|
|
20624
|
+
id: Scalars['ID']['output'];
|
|
20625
|
+
pipelineId: Scalars['String']['output'];
|
|
20626
|
+
references?: Maybe<Array<GraphDataDepotBuildReferences>>;
|
|
20627
|
+
state: GraphDataDepotBuildState;
|
|
20628
|
+
testInfo?: Maybe<GraphDataDepotTestInfo>;
|
|
20629
|
+
url: Scalars['String']['output'];
|
|
20630
|
+
};
|
|
20631
|
+
export declare type GraphDataDepotBuildRefReference = {
|
|
20632
|
+
__typename?: 'GraphDataDepotBuildRefReference';
|
|
20633
|
+
name: Scalars['String']['output'];
|
|
20634
|
+
uri: Scalars['String']['output'];
|
|
20635
|
+
};
|
|
20636
|
+
export declare type GraphDataDepotBuildReferences = {
|
|
20637
|
+
__typename?: 'GraphDataDepotBuildReferences';
|
|
20638
|
+
commit?: Maybe<GraphDataDepotBuildCommitReference>;
|
|
20639
|
+
ref?: Maybe<GraphDataDepotBuildRefReference>;
|
|
20640
|
+
};
|
|
20641
|
+
export declare enum GraphDataDepotBuildState {
|
|
20642
|
+
Cancelled = "CANCELLED",
|
|
20643
|
+
Failed = "FAILED",
|
|
20644
|
+
InProgress = "IN_PROGRESS",
|
|
20645
|
+
Pending = "PENDING",
|
|
20646
|
+
Successful = "SUCCESSFUL",
|
|
20647
|
+
Unknown = "UNKNOWN"
|
|
20648
|
+
}
|
|
20649
|
+
export declare enum GraphDataDepotChangeType {
|
|
20650
|
+
Added = "ADDED",
|
|
20651
|
+
Copied = "COPIED",
|
|
20652
|
+
Deleted = "DELETED",
|
|
20653
|
+
Modified = "MODIFIED",
|
|
20654
|
+
Moved = "MOVED",
|
|
20655
|
+
Unknown = "UNKNOWN"
|
|
20656
|
+
}
|
|
20657
|
+
export declare type GraphDataDepotChapter = {
|
|
20658
|
+
__typename?: 'GraphDataDepotChapter';
|
|
20659
|
+
startTimeInSeconds: Scalars['Long']['output'];
|
|
20660
|
+
title: Scalars['String']['output'];
|
|
20661
|
+
};
|
|
20662
|
+
export declare type GraphDataDepotCommit = {
|
|
20663
|
+
__typename?: 'GraphDataDepotCommit';
|
|
20664
|
+
commitId: Scalars['String']['output'];
|
|
20665
|
+
createdAt: Scalars['String']['output'];
|
|
20666
|
+
displayId: Scalars['String']['output'];
|
|
20667
|
+
fileInfo: GraphDataDepotFileInfo;
|
|
20668
|
+
flags: Array<GraphDataDepotCommitFlags>;
|
|
20669
|
+
hash: Scalars['String']['output'];
|
|
20670
|
+
id: Scalars['ID']['output'];
|
|
20671
|
+
message: Scalars['String']['output'];
|
|
20672
|
+
repositoryId: Scalars['String']['output'];
|
|
20673
|
+
url: Scalars['String']['output'];
|
|
20674
|
+
};
|
|
20675
|
+
export declare enum GraphDataDepotCommitFlags {
|
|
20676
|
+
MergeCommit = "MERGE_COMMIT"
|
|
20677
|
+
}
|
|
20678
|
+
export declare type GraphDataDepotCue = {
|
|
20679
|
+
__typename?: 'GraphDataDepotCue';
|
|
20680
|
+
endTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
20681
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
20682
|
+
startTimeInSeconds: Scalars['Float']['output'];
|
|
20683
|
+
text: Scalars['String']['output'];
|
|
20684
|
+
};
|
|
20685
|
+
export declare type GraphDataDepotDeployment = {
|
|
20686
|
+
__typename?: 'GraphDataDepotDeployment';
|
|
20687
|
+
deploymentSequenceNumber: Scalars['Long']['output'];
|
|
20688
|
+
description: Scalars['String']['output'];
|
|
20689
|
+
displayName: Scalars['String']['output'];
|
|
20690
|
+
duration?: Maybe<Scalars['Long']['output']>;
|
|
20691
|
+
environment: GraphDataDepotEnvironment;
|
|
20692
|
+
id: Scalars['ID']['output'];
|
|
20693
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
20694
|
+
pipeline: GraphDataDepotPipeline;
|
|
20695
|
+
state: GraphDataDepotDeploymentState;
|
|
20696
|
+
url: Scalars['String']['output'];
|
|
20697
|
+
};
|
|
20698
|
+
export declare enum GraphDataDepotDeploymentState {
|
|
20699
|
+
Cancelled = "CANCELLED",
|
|
20700
|
+
Failed = "FAILED",
|
|
20701
|
+
InProgress = "IN_PROGRESS",
|
|
20702
|
+
Pending = "PENDING",
|
|
20703
|
+
RolledBack = "ROLLED_BACK",
|
|
20704
|
+
Successful = "SUCCESSFUL",
|
|
20705
|
+
Unknown = "UNKNOWN"
|
|
20706
|
+
}
|
|
20707
|
+
export declare type GraphDataDepotEntities = {
|
|
20708
|
+
__typename?: 'GraphDataDepotEntities';
|
|
20709
|
+
branch: Array<GraphDataDepotBranch>;
|
|
20710
|
+
buildInfo: Array<GraphDataDepotBuildInfo>;
|
|
20711
|
+
commit: Array<GraphDataDepotCommit>;
|
|
20712
|
+
deployment: Array<GraphDataDepotDeployment>;
|
|
20713
|
+
featureFlag: Array<GraphDataDepotFeatureFlag>;
|
|
20714
|
+
pullRequest: Array<GraphDataDepotPullRequest>;
|
|
20715
|
+
remoteLink: Array<GraphDataDepotRemoteLink>;
|
|
20716
|
+
video: Array<GraphDataDepotVideo>;
|
|
20717
|
+
vulnerability: Array<GraphDataDepotVulnerability>;
|
|
20718
|
+
};
|
|
20719
|
+
export declare type GraphDataDepotEnvironment = {
|
|
20720
|
+
__typename?: 'GraphDataDepotEnvironment';
|
|
20721
|
+
displayName: Scalars['String']['output'];
|
|
20722
|
+
id: Scalars['String']['output'];
|
|
20723
|
+
type: GraphDataDepotEnvironmentType;
|
|
20724
|
+
};
|
|
20725
|
+
export declare enum GraphDataDepotEnvironmentType {
|
|
20726
|
+
Development = "DEVELOPMENT",
|
|
20727
|
+
Production = "PRODUCTION",
|
|
20728
|
+
Staging = "STAGING",
|
|
20729
|
+
Testing = "TESTING",
|
|
20730
|
+
Unmapped = "UNMAPPED"
|
|
20731
|
+
}
|
|
20732
|
+
export declare type GraphDataDepotFeatureFlag = {
|
|
20733
|
+
__typename?: 'GraphDataDepotFeatureFlag';
|
|
20734
|
+
details: Array<GraphDataDepotFeatureFlagDetail>;
|
|
20735
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
20736
|
+
externalId: Scalars['String']['output'];
|
|
20737
|
+
id: Scalars['ID']['output'];
|
|
20738
|
+
key: Scalars['String']['output'];
|
|
20739
|
+
summary: GraphDataDepotFeatureFlagSummary;
|
|
20740
|
+
};
|
|
20741
|
+
export declare type GraphDataDepotFeatureFlagDetail = {
|
|
20742
|
+
__typename?: 'GraphDataDepotFeatureFlagDetail';
|
|
20743
|
+
environment: GraphDataDepotFeatureFlagEnvironment;
|
|
20744
|
+
status: GraphDataDepotFeatureFlagStatus;
|
|
20745
|
+
url: Scalars['String']['output'];
|
|
20746
|
+
};
|
|
20747
|
+
export declare type GraphDataDepotFeatureFlagEnvironment = {
|
|
20748
|
+
__typename?: 'GraphDataDepotFeatureFlagEnvironment';
|
|
20749
|
+
name: Scalars['String']['output'];
|
|
20750
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
20751
|
+
};
|
|
20752
|
+
export declare type GraphDataDepotFeatureFlagRollout = {
|
|
20753
|
+
__typename?: 'GraphDataDepotFeatureFlagRollout';
|
|
20754
|
+
percentage?: Maybe<Scalars['Float']['output']>;
|
|
20755
|
+
rules?: Maybe<Scalars['Int']['output']>;
|
|
20756
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
20757
|
+
};
|
|
20758
|
+
export declare type GraphDataDepotFeatureFlagStatus = {
|
|
20759
|
+
__typename?: 'GraphDataDepotFeatureFlagStatus';
|
|
20760
|
+
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
20761
|
+
enabled: Scalars['Boolean']['output'];
|
|
20762
|
+
rollout?: Maybe<GraphDataDepotFeatureFlagRollout>;
|
|
20763
|
+
};
|
|
20764
|
+
export declare type GraphDataDepotFeatureFlagSummary = {
|
|
20765
|
+
__typename?: 'GraphDataDepotFeatureFlagSummary';
|
|
20766
|
+
status: GraphDataDepotFeatureFlagStatus;
|
|
20767
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20768
|
+
};
|
|
20769
|
+
export declare type GraphDataDepotFile = {
|
|
20770
|
+
__typename?: 'GraphDataDepotFile';
|
|
20771
|
+
changeType: GraphDataDepotChangeType;
|
|
20772
|
+
linesAdded: Scalars['Int']['output'];
|
|
20773
|
+
linesRemoved: Scalars['Int']['output'];
|
|
20774
|
+
path: Scalars['String']['output'];
|
|
20775
|
+
url: Scalars['String']['output'];
|
|
20776
|
+
};
|
|
20777
|
+
export declare type GraphDataDepotFileInfo = {
|
|
20778
|
+
__typename?: 'GraphDataDepotFileInfo';
|
|
20779
|
+
fileCount: Scalars['Int']['output'];
|
|
20780
|
+
files: Array<GraphDataDepotFile>;
|
|
20781
|
+
};
|
|
20782
|
+
export declare enum GraphDataDepotLifecycleStage {
|
|
20783
|
+
Beta = "BETA",
|
|
20784
|
+
Experimental = "EXPERIMENTAL",
|
|
20785
|
+
Production = "PRODUCTION",
|
|
20786
|
+
Staging = "STAGING"
|
|
20787
|
+
}
|
|
20788
|
+
export declare type GraphDataDepotPipeline = {
|
|
20789
|
+
__typename?: 'GraphDataDepotPipeline';
|
|
20790
|
+
displayName: Scalars['String']['output'];
|
|
20791
|
+
id: Scalars['String']['output'];
|
|
20792
|
+
url: Scalars['String']['output'];
|
|
20793
|
+
};
|
|
20794
|
+
export declare type GraphDataDepotPullRequest = {
|
|
20795
|
+
__typename?: 'GraphDataDepotPullRequest';
|
|
20796
|
+
commentCount: Scalars['Int']['output'];
|
|
20797
|
+
destinationBranch?: Maybe<GraphDataDepotBranchReference>;
|
|
20798
|
+
displayId: Scalars['String']['output'];
|
|
20799
|
+
id: Scalars['ID']['output'];
|
|
20800
|
+
pullRequestId: Scalars['String']['output'];
|
|
20801
|
+
repositoryId: Scalars['String']['output'];
|
|
20802
|
+
sourceBranch: GraphDataDepotBranchReference;
|
|
20803
|
+
status: GraphDataDepotPullRequestStatus;
|
|
20804
|
+
supportedActions?: Maybe<Array<Scalars['String']['output']>>;
|
|
20805
|
+
tasksCount?: Maybe<Scalars['Int']['output']>;
|
|
20806
|
+
title: Scalars['String']['output'];
|
|
20807
|
+
url: Scalars['String']['output'];
|
|
20808
|
+
};
|
|
20809
|
+
export declare enum GraphDataDepotPullRequestStatus {
|
|
20810
|
+
Declined = "DECLINED",
|
|
20811
|
+
Draft = "DRAFT",
|
|
20812
|
+
Merged = "MERGED",
|
|
20813
|
+
Open = "OPEN",
|
|
20814
|
+
Unknown = "UNKNOWN"
|
|
20815
|
+
}
|
|
20816
|
+
export declare type GraphDataDepotQuery = {
|
|
20817
|
+
__typename?: 'GraphDataDepotQuery';
|
|
20818
|
+
entities: GraphDataDepotEntities;
|
|
20819
|
+
};
|
|
20820
|
+
export declare type GraphDataDepotQueryEntitiesArgs = {
|
|
20821
|
+
ids: Array<Scalars['ID']['input']>;
|
|
20822
|
+
};
|
|
20823
|
+
export declare type GraphDataDepotRemoteLink = {
|
|
20824
|
+
__typename?: 'GraphDataDepotRemoteLink';
|
|
20825
|
+
actionIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
20826
|
+
attributeMap?: Maybe<Array<GraphDataDepotRemoteLinkAttributeTuple>>;
|
|
20827
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
20828
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20829
|
+
displayName: Scalars['String']['output'];
|
|
20830
|
+
id: Scalars['ID']['output'];
|
|
20831
|
+
remoteLinkId: Scalars['String']['output'];
|
|
20832
|
+
status?: Maybe<GraphDataDepotRemoteLinkStatus>;
|
|
20833
|
+
type: Scalars['String']['output'];
|
|
20834
|
+
url: Scalars['String']['output'];
|
|
20835
|
+
};
|
|
20836
|
+
export declare type GraphDataDepotRemoteLinkAttributeTuple = {
|
|
20837
|
+
__typename?: 'GraphDataDepotRemoteLinkAttributeTuple';
|
|
20838
|
+
key: Scalars['String']['output'];
|
|
20839
|
+
value: Scalars['String']['output'];
|
|
20840
|
+
};
|
|
20841
|
+
export declare type GraphDataDepotRemoteLinkStatus = {
|
|
20842
|
+
__typename?: 'GraphDataDepotRemoteLinkStatus';
|
|
20843
|
+
appearance: Scalars['String']['output'];
|
|
20844
|
+
label: Scalars['String']['output'];
|
|
20845
|
+
};
|
|
20846
|
+
export declare type GraphDataDepotTestInfo = {
|
|
20847
|
+
__typename?: 'GraphDataDepotTestInfo';
|
|
20848
|
+
numberFailed: Scalars['Int']['output'];
|
|
20849
|
+
numberPassed: Scalars['Int']['output'];
|
|
20850
|
+
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
20851
|
+
totalNumber: Scalars['Int']['output'];
|
|
20852
|
+
};
|
|
20853
|
+
export declare type GraphDataDepotTrack = {
|
|
20854
|
+
__typename?: 'GraphDataDepotTrack';
|
|
20855
|
+
cues: Array<GraphDataDepotCue>;
|
|
20856
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
20857
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
20858
|
+
};
|
|
20859
|
+
export declare type GraphDataDepotVideo = {
|
|
20860
|
+
__typename?: 'GraphDataDepotVideo';
|
|
20861
|
+
chapters?: Maybe<Array<GraphDataDepotChapter>>;
|
|
20862
|
+
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
20863
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20864
|
+
displayName: Scalars['String']['output'];
|
|
20865
|
+
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
20866
|
+
embedUrl: Scalars['String']['output'];
|
|
20867
|
+
externalId: Scalars['String']['output'];
|
|
20868
|
+
height?: Maybe<Scalars['Long']['output']>;
|
|
20869
|
+
id: Scalars['ID']['output'];
|
|
20870
|
+
textTracks?: Maybe<Array<GraphDataDepotTrack>>;
|
|
20871
|
+
thumbnailUrl: Scalars['String']['output'];
|
|
20872
|
+
url: Scalars['String']['output'];
|
|
20873
|
+
width?: Maybe<Scalars['Long']['output']>;
|
|
20874
|
+
};
|
|
20875
|
+
export declare type GraphDataDepotVulnerability = {
|
|
20876
|
+
__typename?: 'GraphDataDepotVulnerability';
|
|
20877
|
+
additionalInfo?: Maybe<GraphDataDepotVulnerabilityAdditionalInfo>;
|
|
20878
|
+
description: Scalars['String']['output'];
|
|
20879
|
+
displayName: Scalars['String']['output'];
|
|
20880
|
+
externalId: Scalars['String']['output'];
|
|
20881
|
+
id: Scalars['ID']['output'];
|
|
20882
|
+
identifiers?: Maybe<Array<GraphDataDepotVulnerabilityIdentifier>>;
|
|
20883
|
+
severity: GraphDataDepotVulnerabilitySeverity;
|
|
20884
|
+
status: GraphDataDepotVulnerabilityStatus;
|
|
20885
|
+
type: GraphDataDepotVulnerabilityType;
|
|
20886
|
+
url: Scalars['String']['output'];
|
|
20887
|
+
};
|
|
20888
|
+
export declare type GraphDataDepotVulnerabilityAdditionalInfo = {
|
|
20889
|
+
__typename?: 'GraphDataDepotVulnerabilityAdditionalInfo';
|
|
20890
|
+
content: Scalars['String']['output'];
|
|
20891
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20892
|
+
};
|
|
20893
|
+
export declare type GraphDataDepotVulnerabilityIdentifier = {
|
|
20894
|
+
__typename?: 'GraphDataDepotVulnerabilityIdentifier';
|
|
20895
|
+
displayName: Scalars['String']['output'];
|
|
20896
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20897
|
+
};
|
|
20898
|
+
export declare type GraphDataDepotVulnerabilitySeverity = {
|
|
20899
|
+
__typename?: 'GraphDataDepotVulnerabilitySeverity';
|
|
20900
|
+
level: GraphDataDepotVulnerabilitySeverityLevel;
|
|
20901
|
+
};
|
|
20902
|
+
export declare enum GraphDataDepotVulnerabilitySeverityLevel {
|
|
20903
|
+
Critical = "CRITICAL",
|
|
20904
|
+
High = "HIGH",
|
|
20905
|
+
Low = "LOW",
|
|
20906
|
+
Medium = "MEDIUM",
|
|
20907
|
+
Unknown = "UNKNOWN"
|
|
20908
|
+
}
|
|
20909
|
+
export declare enum GraphDataDepotVulnerabilityStatus {
|
|
20910
|
+
Closed = "CLOSED",
|
|
20911
|
+
Ignored = "IGNORED",
|
|
20912
|
+
Open = "OPEN",
|
|
20913
|
+
Unknown = "UNKNOWN"
|
|
20914
|
+
}
|
|
20915
|
+
export declare enum GraphDataDepotVulnerabilityType {
|
|
20916
|
+
Dast = "DAST",
|
|
20917
|
+
Sast = "SAST",
|
|
20918
|
+
Sca = "SCA",
|
|
20919
|
+
Unknown = "UNKNOWN"
|
|
20920
|
+
}
|
|
20254
20921
|
export declare type GraphGeneric = Node & {
|
|
20255
20922
|
__typename?: 'GraphGeneric';
|
|
20256
20923
|
data?: Maybe<GraphRelationshipNodeData>;
|
|
@@ -50907,10 +51574,28 @@ export declare type LpCertmetricsCertificateEdge = {
|
|
|
50907
51574
|
cursor: Scalars['String']['output'];
|
|
50908
51575
|
node?: Maybe<LpCertmetricsCertificate>;
|
|
50909
51576
|
};
|
|
51577
|
+
export declare type LpCourseProgress = {
|
|
51578
|
+
__typename?: 'LpCourseProgress';
|
|
51579
|
+
courseId?: Maybe<Scalars['String']['output']>;
|
|
51580
|
+
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
51581
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
51582
|
+
uuid?: Maybe<Scalars['String']['output']>;
|
|
51583
|
+
};
|
|
51584
|
+
export declare type LpCourseProgressConnection = {
|
|
51585
|
+
__typename?: 'LpCourseProgressConnection';
|
|
51586
|
+
edges?: Maybe<Array<LpCourseProgressEdge>>;
|
|
51587
|
+
pageInfo?: Maybe<LpPageInfo>;
|
|
51588
|
+
};
|
|
51589
|
+
export declare type LpCourseProgressEdge = {
|
|
51590
|
+
__typename?: 'LpCourseProgressEdge';
|
|
51591
|
+
cursor: Scalars['String']['output'];
|
|
51592
|
+
node?: Maybe<LpCourseProgress>;
|
|
51593
|
+
};
|
|
50910
51594
|
export declare type LpLearner = Node & {
|
|
50911
51595
|
__typename?: 'LpLearner';
|
|
50912
51596
|
atlassianId: Scalars['String']['output'];
|
|
50913
51597
|
certmetricsCertificates?: Maybe<LpCertmetricsCertificateConnection>;
|
|
51598
|
+
courses?: Maybe<LpCourseProgressConnection>;
|
|
50914
51599
|
id: Scalars['ID']['output'];
|
|
50915
51600
|
};
|
|
50916
51601
|
export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
@@ -50919,6 +51604,12 @@ export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
|
50919
51604
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50920
51605
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
50921
51606
|
};
|
|
51607
|
+
export declare type LpLearnerCoursesArgs = {
|
|
51608
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51609
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
51610
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51611
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51612
|
+
};
|
|
50922
51613
|
export declare type LpLearnerData = {
|
|
50923
51614
|
__typename?: 'LpLearnerData';
|
|
50924
51615
|
learnerByAtlassianId?: Maybe<LpLearner>;
|
|
@@ -50930,6 +51621,11 @@ export declare type LpLearnerDataLearnerByAtlassianIdArgs = {
|
|
|
50930
51621
|
export declare type LpLearnerDataNodeArgs = {
|
|
50931
51622
|
id: Scalars['ID']['input'];
|
|
50932
51623
|
};
|
|
51624
|
+
export declare type LpLessonProgress = {
|
|
51625
|
+
__typename?: 'LpLessonProgress';
|
|
51626
|
+
lessonId?: Maybe<Scalars['String']['output']>;
|
|
51627
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
51628
|
+
};
|
|
50933
51629
|
export declare type LpPageInfo = {
|
|
50934
51630
|
__typename?: 'LpPageInfo';
|
|
50935
51631
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -52914,6 +53610,7 @@ export declare type Mutation = {
|
|
|
52914
53610
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
52915
53611
|
confluenceLegacy_activatePaywallContent?: Maybe<ConfluenceLegacy_ActivatePaywallContentPayload>;
|
|
52916
53612
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacy_AddDefaultExCoSpacePermissionsPayload>;
|
|
53613
|
+
confluenceLegacy_addLabels?: Maybe<ConfluenceLegacy_AddLabelsPayload>;
|
|
52917
53614
|
confluenceLegacy_addPublicLinkPermissions?: Maybe<ConfluenceLegacy_AddPublicLinkPermissionsPayload>;
|
|
52918
53615
|
confluenceLegacy_archivePages?: Maybe<ConfluenceLegacy_BulkArchivePagePayload>;
|
|
52919
53616
|
confluenceLegacy_attachDanglingComment?: Maybe<ConfluenceLegacy_Comment>;
|
|
@@ -52958,7 +53655,9 @@ export declare type Mutation = {
|
|
|
52958
53655
|
confluenceLegacy_deleteExCoSpacePermissions?: Maybe<Array<Maybe<ConfluenceLegacy_DeleteExCoSpacePermissionsPayload>>>;
|
|
52959
53656
|
confluenceLegacy_deleteExternalCollaboratorDefaultSpace?: Maybe<ConfluenceLegacy_DeleteExternalCollaboratorDefaultSpacePayload>;
|
|
52960
53657
|
confluenceLegacy_deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
53658
|
+
confluenceLegacy_deleteLabel?: Maybe<ConfluenceLegacy_DeleteLabelPayload>;
|
|
52961
53659
|
confluenceLegacy_deletePages?: Maybe<ConfluenceLegacy_DeletePagesPayload>;
|
|
53660
|
+
confluenceLegacy_deleteRelation?: Maybe<ConfluenceLegacy_DeleteRelationPayload>;
|
|
52962
53661
|
confluenceLegacy_deleteSpaceDefaultClassificationLevel?: Maybe<ConfluenceLegacy_DeleteSpaceDefaultClassificationLevelPayload>;
|
|
52963
53662
|
confluenceLegacy_deleteSpaceRoles?: Maybe<ConfluenceLegacy_DeleteSpaceRolesPayload>;
|
|
52964
53663
|
confluenceLegacy_deleteTemplate?: Maybe<Scalars['ID']['output']>;
|
|
@@ -52981,6 +53680,12 @@ export declare type Mutation = {
|
|
|
52981
53680
|
confluenceLegacy_markFeatureDiscovered?: Maybe<ConfluenceLegacy_FeatureDiscoveryPayload>;
|
|
52982
53681
|
confluenceLegacy_migrateSpaceShortcuts?: Maybe<ConfluenceLegacy_MigrateSpaceShortcutsPayload>;
|
|
52983
53682
|
confluenceLegacy_moveBlog?: Maybe<ConfluenceLegacy_MoveBlogPayload>;
|
|
53683
|
+
confluenceLegacy_movePageAfter?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53684
|
+
confluenceLegacy_movePageAppend?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53685
|
+
confluenceLegacy_movePageBefore?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53686
|
+
confluenceLegacy_movePageTopLevel?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53687
|
+
confluenceLegacy_mutationsCloudId?: Maybe<ConfluenceLegacy_Mutations_CloudId>;
|
|
53688
|
+
confluenceLegacy_newPage?: Maybe<ConfluenceLegacy_NewPagePayload>;
|
|
52984
53689
|
confluenceLegacy_notifyUsersOnFirstView?: Maybe<ConfluenceLegacy_NotificationResponsePayload>;
|
|
52985
53690
|
confluenceLegacy_openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
52986
53691
|
confluenceLegacy_patchCommentsSummary?: Maybe<ConfluenceLegacy_PatchCommentsSummaryPayload>;
|
|
@@ -53043,10 +53748,12 @@ export declare type Mutation = {
|
|
|
53043
53748
|
confluenceLegacy_updateLocalStorage?: Maybe<ConfluenceLegacy_LocalStorage>;
|
|
53044
53749
|
confluenceLegacy_updateNestedPageOwners?: Maybe<ConfluenceLegacy_UpdateNestedPageOwnersPayload>;
|
|
53045
53750
|
confluenceLegacy_updateOwner?: Maybe<ConfluenceLegacy_UpdateOwnerPayload>;
|
|
53751
|
+
confluenceLegacy_updatePage?: Maybe<ConfluenceLegacy_UpdatePagePayload>;
|
|
53046
53752
|
confluenceLegacy_updatePageOwners?: Maybe<ConfluenceLegacy_UpdatePageOwnersPayload>;
|
|
53047
53753
|
confluenceLegacy_updatePageStatuses?: Maybe<ConfluenceLegacy_UpdatePageStatusesPayload>;
|
|
53048
53754
|
confluenceLegacy_updatePushNotificationCustomSettings?: Maybe<ConfluenceLegacy_PushNotificationSettings>;
|
|
53049
53755
|
confluenceLegacy_updatePushNotificationGroupSetting?: Maybe<ConfluenceLegacy_PushNotificationSettings>;
|
|
53756
|
+
confluenceLegacy_updateRelation?: Maybe<ConfluenceLegacy_UpdateRelationPayload>;
|
|
53050
53757
|
confluenceLegacy_updateSiteLookAndFeel?: Maybe<ConfluenceLegacy_UpdateSiteLookAndFeelPayload>;
|
|
53051
53758
|
confluenceLegacy_updateSitePermission?: Maybe<ConfluenceLegacy_SitePermission>;
|
|
53052
53759
|
confluenceLegacy_updateSpaceDefaultClassificationLevel?: Maybe<ConfluenceLegacy_UpdateSpaceDefaultClassificationLevelPayload>;
|
|
@@ -53244,6 +53951,9 @@ export declare type MutationConfluenceLegacy_ActivatePaywallContentArgs = {
|
|
|
53244
53951
|
export declare type MutationConfluenceLegacy_AddDefaultExCoSpacePermissionsArgs = {
|
|
53245
53952
|
spacePermissionsInput: ConfluenceLegacy_AddDefaultExCoSpacePermissionsInput;
|
|
53246
53953
|
};
|
|
53954
|
+
export declare type MutationConfluenceLegacy_AddLabelsArgs = {
|
|
53955
|
+
input: ConfluenceLegacy_AddLabelsInput;
|
|
53956
|
+
};
|
|
53247
53957
|
export declare type MutationConfluenceLegacy_AddPublicLinkPermissionsArgs = {
|
|
53248
53958
|
input: ConfluenceLegacy_AddPublicLinkPermissionsInput;
|
|
53249
53959
|
};
|
|
@@ -53383,9 +54093,15 @@ export declare type MutationConfluenceLegacy_DeleteExCoSpacePermissionsArgs = {
|
|
|
53383
54093
|
export declare type MutationConfluenceLegacy_DeleteInlineCommentArgs = {
|
|
53384
54094
|
input: ConfluenceLegacy_DeleteInlineCommentInput;
|
|
53385
54095
|
};
|
|
54096
|
+
export declare type MutationConfluenceLegacy_DeleteLabelArgs = {
|
|
54097
|
+
input: ConfluenceLegacy_DeleteLabelInput;
|
|
54098
|
+
};
|
|
53386
54099
|
export declare type MutationConfluenceLegacy_DeletePagesArgs = {
|
|
53387
54100
|
input: Array<InputMaybe<ConfluenceLegacy_DeletePagesInput>>;
|
|
53388
54101
|
};
|
|
54102
|
+
export declare type MutationConfluenceLegacy_DeleteRelationArgs = {
|
|
54103
|
+
input: ConfluenceLegacy_DeleteRelationInput;
|
|
54104
|
+
};
|
|
53389
54105
|
export declare type MutationConfluenceLegacy_DeleteSpaceDefaultClassificationLevelArgs = {
|
|
53390
54106
|
input: ConfluenceLegacy_DeleteSpaceDefaultClassificationLevelInput;
|
|
53391
54107
|
};
|
|
@@ -53439,6 +54155,24 @@ export declare type MutationConfluenceLegacy_MigrateSpaceShortcutsArgs = {
|
|
|
53439
54155
|
export declare type MutationConfluenceLegacy_MoveBlogArgs = {
|
|
53440
54156
|
input: ConfluenceLegacy_MoveBlogInput;
|
|
53441
54157
|
};
|
|
54158
|
+
export declare type MutationConfluenceLegacy_MovePageAfterArgs = {
|
|
54159
|
+
input: ConfluenceLegacy_MovePageAsSiblingInput;
|
|
54160
|
+
};
|
|
54161
|
+
export declare type MutationConfluenceLegacy_MovePageAppendArgs = {
|
|
54162
|
+
input: ConfluenceLegacy_MovePageAsChildInput;
|
|
54163
|
+
};
|
|
54164
|
+
export declare type MutationConfluenceLegacy_MovePageBeforeArgs = {
|
|
54165
|
+
input: ConfluenceLegacy_MovePageAsSiblingInput;
|
|
54166
|
+
};
|
|
54167
|
+
export declare type MutationConfluenceLegacy_MovePageTopLevelArgs = {
|
|
54168
|
+
input: ConfluenceLegacy_MovePageTopLevelInput;
|
|
54169
|
+
};
|
|
54170
|
+
export declare type MutationConfluenceLegacy_MutationsCloudIdArgs = {
|
|
54171
|
+
cloudId: Scalars['ID']['input'];
|
|
54172
|
+
};
|
|
54173
|
+
export declare type MutationConfluenceLegacy_NewPageArgs = {
|
|
54174
|
+
input: ConfluenceLegacy_NewPageInput;
|
|
54175
|
+
};
|
|
53442
54176
|
export declare type MutationConfluenceLegacy_NotifyUsersOnFirstViewArgs = {
|
|
53443
54177
|
contentId: Scalars['ID']['input'];
|
|
53444
54178
|
};
|
|
@@ -53635,6 +54369,9 @@ export declare type MutationConfluenceLegacy_UpdateNestedPageOwnersArgs = {
|
|
|
53635
54369
|
export declare type MutationConfluenceLegacy_UpdateOwnerArgs = {
|
|
53636
54370
|
input: ConfluenceLegacy_UpdateOwnerInput;
|
|
53637
54371
|
};
|
|
54372
|
+
export declare type MutationConfluenceLegacy_UpdatePageArgs = {
|
|
54373
|
+
input: ConfluenceLegacy_UpdatePageInput;
|
|
54374
|
+
};
|
|
53638
54375
|
export declare type MutationConfluenceLegacy_UpdatePageOwnersArgs = {
|
|
53639
54376
|
input: ConfluenceLegacy_UpdatePageOwnersInput;
|
|
53640
54377
|
};
|
|
@@ -53647,6 +54384,9 @@ export declare type MutationConfluenceLegacy_UpdatePushNotificationCustomSetting
|
|
|
53647
54384
|
export declare type MutationConfluenceLegacy_UpdatePushNotificationGroupSettingArgs = {
|
|
53648
54385
|
group: ConfluenceLegacy_PushNotificationGroupInputType;
|
|
53649
54386
|
};
|
|
54387
|
+
export declare type MutationConfluenceLegacy_UpdateRelationArgs = {
|
|
54388
|
+
input: ConfluenceLegacy_UpdateRelationInput;
|
|
54389
|
+
};
|
|
53650
54390
|
export declare type MutationConfluenceLegacy_UpdateSiteLookAndFeelArgs = {
|
|
53651
54391
|
input: ConfluenceLegacy_UpdateSiteLookAndFeelInput;
|
|
53652
54392
|
};
|
|
@@ -56437,6 +57177,7 @@ export declare type Query = {
|
|
|
56437
57177
|
confluenceLegacy_loomToken?: Maybe<ConfluenceLegacy_LoomToken>;
|
|
56438
57178
|
confluenceLegacy_loomUserStatus?: Maybe<ConfluenceLegacy_LoomUserStatus>;
|
|
56439
57179
|
confluenceLegacy_macroBodyRenderer?: Maybe<ConfluenceLegacy_MacroBody>;
|
|
57180
|
+
confluenceLegacy_mutationsPlaceholder?: Maybe<Scalars['String']['output']>;
|
|
56440
57181
|
confluenceLegacy_myVisitedPages?: Maybe<ConfluenceLegacy_MyVisitedPages>;
|
|
56441
57182
|
confluenceLegacy_myVisitedSpaces?: Maybe<ConfluenceLegacy_MyVisitedSpaces>;
|
|
56442
57183
|
confluenceLegacy_onboardingState?: Maybe<Array<ConfluenceLegacy_OnboardingState>>;
|
|
@@ -56447,12 +57188,14 @@ export declare type Query = {
|
|
|
56447
57188
|
confluenceLegacy_pageAnalyticsTimeseriesCount?: Maybe<ConfluenceLegacy_PageAnalyticsTimeseriesCount>;
|
|
56448
57189
|
confluenceLegacy_pageContextContentCreationMetadata?: Maybe<ConfluenceLegacy_ContentCreationMetadata>;
|
|
56449
57190
|
confluenceLegacy_pageDump?: Maybe<ConfluenceLegacy_Page>;
|
|
57191
|
+
confluenceLegacy_pageTreeCloudId?: Maybe<ConfluenceLegacy_PageTree_CloudId>;
|
|
56450
57192
|
confluenceLegacy_pageTreeVersion?: Maybe<Scalars['String']['output']>;
|
|
56451
57193
|
confluenceLegacy_pages?: Maybe<ConfluenceLegacy_PaginatedPageList>;
|
|
56452
57194
|
confluenceLegacy_paywallContentToDisable?: Maybe<ConfluenceLegacy_PaywallContentSingle>;
|
|
56453
57195
|
confluenceLegacy_paywallStatus?: Maybe<ConfluenceLegacy_PaywallStatus>;
|
|
56454
57196
|
confluenceLegacy_personalSpace?: Maybe<ConfluenceLegacy_Space>;
|
|
56455
57197
|
confluenceLegacy_popularFeed?: Maybe<ConfluenceLegacy_PaginatedPopularFeed>;
|
|
57198
|
+
confluenceLegacy_ptpage?: Maybe<ConfluenceLegacy_PtPage>;
|
|
56456
57199
|
confluenceLegacy_publicLinkOnboardingReference?: Maybe<ConfluenceLegacy_PublicLinkOnboardingReference>;
|
|
56457
57200
|
confluenceLegacy_publicLinkPage?: Maybe<ConfluenceLegacy_PublicLinkPage>;
|
|
56458
57201
|
confluenceLegacy_publicLinkPagesByCriteria?: Maybe<ConfluenceLegacy_PublicLinkPageConnection>;
|
|
@@ -56507,6 +57250,8 @@ export declare type Query = {
|
|
|
56507
57250
|
confluenceLegacy_templateMediaSession?: Maybe<ConfluenceLegacy_TemplateMediaSession>;
|
|
56508
57251
|
confluenceLegacy_templatePropertySetByTemplate?: Maybe<ConfluenceLegacy_TemplatePropertySet>;
|
|
56509
57252
|
confluenceLegacy_templates?: Maybe<ConfluenceLegacy_PaginatedContentTemplateList>;
|
|
57253
|
+
confluenceLegacy_tenant?: Maybe<ConfluenceLegacy_Tenant>;
|
|
57254
|
+
confluenceLegacy_tenantCloudId?: Maybe<ConfluenceLegacy_Tenant_CloudId>;
|
|
56510
57255
|
confluenceLegacy_tenantContext?: Maybe<ConfluenceLegacy_TenantContext>;
|
|
56511
57256
|
confluenceLegacy_timeseriesCount?: Maybe<ConfluenceLegacy_TimeseriesCount>;
|
|
56512
57257
|
confluenceLegacy_timeseriesPageBlogCount?: Maybe<ConfluenceLegacy_TimeseriesPageBlogCount>;
|
|
@@ -56560,6 +57305,7 @@ export declare type Query = {
|
|
|
56560
57305
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
56561
57306
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
56562
57307
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
57308
|
+
dataDepot: GraphDataDepotQuery;
|
|
56563
57309
|
devAi?: Maybe<DevAi>;
|
|
56564
57310
|
devOps?: Maybe<DevOps>;
|
|
56565
57311
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
@@ -57282,6 +58028,9 @@ export declare type QueryConfluenceLegacy_PageDumpArgs = {
|
|
|
57282
58028
|
id: Scalars['ID']['input'];
|
|
57283
58029
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
57284
58030
|
};
|
|
58031
|
+
export declare type QueryConfluenceLegacy_PageTreeCloudIdArgs = {
|
|
58032
|
+
cloudId: Scalars['ID']['input'];
|
|
58033
|
+
};
|
|
57285
58034
|
export declare type QueryConfluenceLegacy_PageTreeVersionArgs = {
|
|
57286
58035
|
pageId?: InputMaybe<Scalars['ID']['input']>;
|
|
57287
58036
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -57309,6 +58058,13 @@ export declare type QueryConfluenceLegacy_PopularFeedArgs = {
|
|
|
57309
58058
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57310
58059
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57311
58060
|
};
|
|
58061
|
+
export declare type QueryConfluenceLegacy_PtpageArgs = {
|
|
58062
|
+
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58063
|
+
id: Scalars['ID']['input'];
|
|
58064
|
+
pageTree?: InputMaybe<Scalars['Int']['input']>;
|
|
58065
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
58066
|
+
status?: InputMaybe<Array<InputMaybe<ConfluenceLegacy_PtGraphQlPageStatus>>>;
|
|
58067
|
+
};
|
|
57312
58068
|
export declare type QueryConfluenceLegacy_PublicLinkPageArgs = {
|
|
57313
58069
|
pageId: Scalars['ID']['input'];
|
|
57314
58070
|
};
|
|
@@ -57563,6 +58319,12 @@ export declare type QueryConfluenceLegacy_TemplatesArgs = {
|
|
|
57563
58319
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
57564
58320
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
57565
58321
|
};
|
|
58322
|
+
export declare type QueryConfluenceLegacy_TenantArgs = {
|
|
58323
|
+
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58324
|
+
};
|
|
58325
|
+
export declare type QueryConfluenceLegacy_TenantCloudIdArgs = {
|
|
58326
|
+
cloudId: Scalars['ID']['input'];
|
|
58327
|
+
};
|
|
57566
58328
|
export declare type QueryConfluenceLegacy_TimeseriesCountArgs = {
|
|
57567
58329
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
57568
58330
|
eventName: Array<ConfluenceLegacy_AnalyticsEventName>;
|