@forge/cli-shared 5.3.0 → 5.3.1-next.0-experimental-f6dcf26
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 +770 -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",
|
|
@@ -2452,6 +2455,7 @@ export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementEx
|
|
|
2452
2455
|
__typename?: 'CcpEntitlementExperienceCapabilities';
|
|
2453
2456
|
changeOffering?: Maybe<CcpExperienceCapability>;
|
|
2454
2457
|
changeOfferingV2?: Maybe<CcpChangeOfferingExperienceCapability>;
|
|
2458
|
+
manageEntitlement?: Maybe<CcpManageEntitlementExperienceCapability>;
|
|
2455
2459
|
};
|
|
2456
2460
|
export declare type CcpEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
2457
2461
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -2502,6 +2506,11 @@ export declare type CcpInvoiceGroupExperienceCapabilities = CommerceInvoiceGroup
|
|
|
2502
2506
|
configurePayment?: Maybe<CcpExperienceCapability>;
|
|
2503
2507
|
configurePaymentV2?: Maybe<CcpConfigurePaymentMethodExperienceCapability>;
|
|
2504
2508
|
};
|
|
2509
|
+
export declare type CcpManageEntitlementExperienceCapability = CommerceExperienceCapability & {
|
|
2510
|
+
__typename?: 'CcpManageEntitlementExperienceCapability';
|
|
2511
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
2512
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
2513
|
+
};
|
|
2505
2514
|
export declare type CcpMapEntry = {
|
|
2506
2515
|
__typename?: 'CcpMapEntry';
|
|
2507
2516
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -6690,6 +6699,14 @@ export declare type ConfluenceLegacy_AddDefaultExCoSpacePermissionsPayload = {
|
|
|
6690
6699
|
errors?: Maybe<Array<MutationError>>;
|
|
6691
6700
|
status: Scalars['Boolean']['output'];
|
|
6692
6701
|
};
|
|
6702
|
+
export declare type ConfluenceLegacy_AddLabelsInput = {
|
|
6703
|
+
contentId: Scalars['ID']['input'];
|
|
6704
|
+
labels: Array<ConfluenceLegacy_LabelInput>;
|
|
6705
|
+
};
|
|
6706
|
+
export declare type ConfluenceLegacy_AddLabelsPayload = {
|
|
6707
|
+
__typename?: 'ConfluenceLegacy_AddLabelsPayload';
|
|
6708
|
+
labels: ConfluenceLegacy_Mutations_PaginatedLabelList;
|
|
6709
|
+
};
|
|
6693
6710
|
export declare type ConfluenceLegacy_AddPublicLinkPermissionsInput = {
|
|
6694
6711
|
objectId: Scalars['ID']['input'];
|
|
6695
6712
|
objectType: ConfluenceLegacy_PublicLinkPermissionsObjectType;
|
|
@@ -6945,6 +6962,16 @@ export declare type ConfluenceLegacy_BlockSmartLink = ConfluenceLegacy_SmartLink
|
|
|
6945
6962
|
__typename?: 'ConfluenceLegacy_BlockSmartLink';
|
|
6946
6963
|
url: Scalars['String']['output'];
|
|
6947
6964
|
};
|
|
6965
|
+
export declare enum ConfluenceLegacy_BodyFormatType {
|
|
6966
|
+
AnonymousExportView = "ANONYMOUS_EXPORT_VIEW",
|
|
6967
|
+
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
6968
|
+
Editor = "EDITOR",
|
|
6969
|
+
Editor2 = "EDITOR2",
|
|
6970
|
+
ExportView = "EXPORT_VIEW",
|
|
6971
|
+
Storage = "STORAGE",
|
|
6972
|
+
StyledView = "STYLED_VIEW",
|
|
6973
|
+
View = "VIEW"
|
|
6974
|
+
}
|
|
6948
6975
|
export declare type ConfluenceLegacy_BordersAndDividersLookAndFeel = {
|
|
6949
6976
|
__typename?: 'ConfluenceLegacy_BordersAndDividersLookAndFeel';
|
|
6950
6977
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -7407,7 +7434,9 @@ export declare type ConfluenceLegacy_ContentAnalyticsPageViewInfo = {
|
|
|
7407
7434
|
lastVersionViewed: Scalars['Int']['output'];
|
|
7408
7435
|
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
7409
7436
|
lastViewedAt: Scalars['String']['output'];
|
|
7437
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
7410
7438
|
userId: Scalars['ID']['output'];
|
|
7439
|
+
userProfile?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
7411
7440
|
views: Scalars['Int']['output'];
|
|
7412
7441
|
};
|
|
7413
7442
|
export declare type ConfluenceLegacy_ContentAnalyticsTotalViewsByPage = {
|
|
@@ -7809,6 +7838,8 @@ export declare type ConfluenceLegacy_CountGroupByUser = {
|
|
|
7809
7838
|
export declare type ConfluenceLegacy_CountGroupByUserItem = {
|
|
7810
7839
|
__typename?: 'ConfluenceLegacy_CountGroupByUserItem';
|
|
7811
7840
|
count: Scalars['Int']['output'];
|
|
7841
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
7842
|
+
userId: Scalars['String']['output'];
|
|
7812
7843
|
};
|
|
7813
7844
|
export declare type ConfluenceLegacy_CqlMetaData = {
|
|
7814
7845
|
__typename?: 'ConfluenceLegacy_CqlMetaData';
|
|
@@ -8088,6 +8119,15 @@ export declare type ConfluenceLegacy_DeleteInlineCommentInput = {
|
|
|
8088
8119
|
commentId: Scalars['ID']['input'];
|
|
8089
8120
|
step?: InputMaybe<ConfluenceLegacy_Step>;
|
|
8090
8121
|
};
|
|
8122
|
+
export declare type ConfluenceLegacy_DeleteLabelInput = {
|
|
8123
|
+
contentId: Scalars['ID']['input'];
|
|
8124
|
+
label: Scalars['String']['input'];
|
|
8125
|
+
};
|
|
8126
|
+
export declare type ConfluenceLegacy_DeleteLabelPayload = {
|
|
8127
|
+
__typename?: 'ConfluenceLegacy_DeleteLabelPayload';
|
|
8128
|
+
contentId: Scalars['ID']['output'];
|
|
8129
|
+
label: Scalars['String']['output'];
|
|
8130
|
+
};
|
|
8091
8131
|
export declare type ConfluenceLegacy_DeletePagesInput = {
|
|
8092
8132
|
areChildrenIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8093
8133
|
excludedBranchRootPageIDs?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
@@ -8099,6 +8139,19 @@ export declare type ConfluenceLegacy_DeletePagesPayload = {
|
|
|
8099
8139
|
status: Scalars['Boolean']['output'];
|
|
8100
8140
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
8101
8141
|
};
|
|
8142
|
+
export declare type ConfluenceLegacy_DeleteRelationInput = {
|
|
8143
|
+
relationName: ConfluenceLegacy_RelationType;
|
|
8144
|
+
sourceKey: Scalars['String']['input'];
|
|
8145
|
+
sourceType: ConfluenceLegacy_RelationSourceType;
|
|
8146
|
+
targetKey: Scalars['String']['input'];
|
|
8147
|
+
targetType: ConfluenceLegacy_RelationTargetType;
|
|
8148
|
+
};
|
|
8149
|
+
export declare type ConfluenceLegacy_DeleteRelationPayload = {
|
|
8150
|
+
__typename?: 'ConfluenceLegacy_DeleteRelationPayload';
|
|
8151
|
+
relationName: Scalars['String']['output'];
|
|
8152
|
+
sourceKey: Scalars['String']['output'];
|
|
8153
|
+
targetKey: Scalars['String']['output'];
|
|
8154
|
+
};
|
|
8102
8155
|
export declare type ConfluenceLegacy_DeleteSpaceDefaultClassificationLevelInput = {
|
|
8103
8156
|
id: Scalars['Long']['input'];
|
|
8104
8157
|
};
|
|
@@ -8325,6 +8378,16 @@ export declare type ConfluenceLegacy_EntityTimeseriesCountItem = {
|
|
|
8325
8378
|
count: Scalars['Int']['output'];
|
|
8326
8379
|
date: Scalars['String']['output'];
|
|
8327
8380
|
};
|
|
8381
|
+
export declare enum ConfluenceLegacy_Environment {
|
|
8382
|
+
Development = "DEVELOPMENT",
|
|
8383
|
+
Production = "PRODUCTION",
|
|
8384
|
+
Staging = "STAGING"
|
|
8385
|
+
}
|
|
8386
|
+
export declare type ConfluenceLegacy_Error = {
|
|
8387
|
+
__typename?: 'ConfluenceLegacy_Error';
|
|
8388
|
+
message: Scalars['String']['output'];
|
|
8389
|
+
status: Scalars['Int']['output'];
|
|
8390
|
+
};
|
|
8328
8391
|
export declare type ConfluenceLegacy_ExternalCollaboratorDefaultSpace = {
|
|
8329
8392
|
__typename?: 'ConfluenceLegacy_ExternalCollaboratorDefaultSpace';
|
|
8330
8393
|
enabled: Scalars['Boolean']['output'];
|
|
@@ -8857,6 +8920,10 @@ export declare type ConfluenceLegacy_LabelEdge = {
|
|
|
8857
8920
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
8858
8921
|
node?: Maybe<ConfluenceLegacy_Label>;
|
|
8859
8922
|
};
|
|
8923
|
+
export declare type ConfluenceLegacy_LabelInput = {
|
|
8924
|
+
name: Scalars['String']['input'];
|
|
8925
|
+
prefix: Scalars['String']['input'];
|
|
8926
|
+
};
|
|
8860
8927
|
export declare type ConfluenceLegacy_LabelSearchResults = {
|
|
8861
8928
|
__typename?: 'ConfluenceLegacy_LabelSearchResults';
|
|
8862
8929
|
otherLabels: Array<Maybe<ConfluenceLegacy_Label>>;
|
|
@@ -9086,12 +9153,32 @@ export declare type ConfluenceLegacy_MediaAccessTokens = {
|
|
|
9086
9153
|
readOnlyToken?: Maybe<ConfluenceLegacy_MediaToken>;
|
|
9087
9154
|
readWriteToken?: Maybe<ConfluenceLegacy_MediaToken>;
|
|
9088
9155
|
};
|
|
9156
|
+
export declare type ConfluenceLegacy_MediaAttachment = {
|
|
9157
|
+
__typename?: 'ConfluenceLegacy_MediaAttachment';
|
|
9158
|
+
html: Scalars['String']['output'];
|
|
9159
|
+
id: Scalars['ID']['output'];
|
|
9160
|
+
};
|
|
9161
|
+
export declare type ConfluenceLegacy_MediaAttachmentError = {
|
|
9162
|
+
__typename?: 'ConfluenceLegacy_MediaAttachmentError';
|
|
9163
|
+
error: ConfluenceLegacy_Error;
|
|
9164
|
+
};
|
|
9165
|
+
export declare type ConfluenceLegacy_MediaAttachmentInput = {
|
|
9166
|
+
file: ConfluenceLegacy_MediaFile;
|
|
9167
|
+
minorEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9168
|
+
};
|
|
9169
|
+
export declare type ConfluenceLegacy_MediaAttachmentOrError = ConfluenceLegacy_MediaAttachment | ConfluenceLegacy_MediaAttachmentError;
|
|
9089
9170
|
export declare type ConfluenceLegacy_MediaConfiguration = {
|
|
9090
9171
|
__typename?: 'ConfluenceLegacy_MediaConfiguration';
|
|
9091
9172
|
clientId: Scalars['String']['output'];
|
|
9092
9173
|
fileStoreUrl: Scalars['String']['output'];
|
|
9093
9174
|
maxFileSize?: Maybe<Scalars['Long']['output']>;
|
|
9094
9175
|
};
|
|
9176
|
+
export declare type ConfluenceLegacy_MediaFile = {
|
|
9177
|
+
id: Scalars['ID']['input'];
|
|
9178
|
+
mimeType?: InputMaybe<Scalars['String']['input']>;
|
|
9179
|
+
name: Scalars['String']['input'];
|
|
9180
|
+
size: Scalars['Int']['input'];
|
|
9181
|
+
};
|
|
9095
9182
|
export declare type ConfluenceLegacy_MediaPickerUserToken = {
|
|
9096
9183
|
__typename?: 'ConfluenceLegacy_MediaPickerUserToken';
|
|
9097
9184
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -9140,10 +9227,57 @@ export declare type ConfluenceLegacy_MoveBlogPayload = {
|
|
|
9140
9227
|
__typename?: 'ConfluenceLegacy_MoveBlogPayload';
|
|
9141
9228
|
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9142
9229
|
};
|
|
9230
|
+
export declare type ConfluenceLegacy_MovePageAsChildInput = {
|
|
9231
|
+
pageId: Scalars['ID']['input'];
|
|
9232
|
+
parentId: Scalars['ID']['input'];
|
|
9233
|
+
};
|
|
9234
|
+
export declare type ConfluenceLegacy_MovePageAsSiblingInput = {
|
|
9235
|
+
pageId: Scalars['ID']['input'];
|
|
9236
|
+
siblingId: Scalars['ID']['input'];
|
|
9237
|
+
};
|
|
9238
|
+
export declare type ConfluenceLegacy_MovePagePayload = {
|
|
9239
|
+
__typename?: 'ConfluenceLegacy_MovePagePayload';
|
|
9240
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9241
|
+
movedPage: Scalars['ID']['output'];
|
|
9242
|
+
page?: Maybe<ConfluenceLegacy_Page>;
|
|
9243
|
+
};
|
|
9244
|
+
export declare type ConfluenceLegacy_MovePageTopLevelInput = {
|
|
9245
|
+
pageId: Scalars['ID']['input'];
|
|
9246
|
+
targetSpaceKey: Scalars['String']['input'];
|
|
9247
|
+
};
|
|
9143
9248
|
export declare type ConfluenceLegacy_MutationResponse = {
|
|
9144
9249
|
__typename?: 'ConfluenceLegacy_MutationResponse';
|
|
9145
9250
|
success: Scalars['Boolean']['output'];
|
|
9146
9251
|
};
|
|
9252
|
+
export declare type ConfluenceLegacy_Mutations_CloudId = {
|
|
9253
|
+
__typename?: 'ConfluenceLegacy_Mutations_CloudId';
|
|
9254
|
+
cloudId: Scalars['ID']['output'];
|
|
9255
|
+
};
|
|
9256
|
+
export declare type ConfluenceLegacy_Mutations_Label = {
|
|
9257
|
+
__typename?: 'ConfluenceLegacy_Mutations_Label';
|
|
9258
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
9259
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
9260
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9261
|
+
prefix?: Maybe<Scalars['String']['output']>;
|
|
9262
|
+
};
|
|
9263
|
+
export declare type ConfluenceLegacy_Mutations_LabelEdge = {
|
|
9264
|
+
__typename?: 'ConfluenceLegacy_Mutations_LabelEdge';
|
|
9265
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
9266
|
+
node?: Maybe<ConfluenceLegacy_Mutations_Label>;
|
|
9267
|
+
};
|
|
9268
|
+
export declare type ConfluenceLegacy_Mutations_LinksContextBase = {
|
|
9269
|
+
__typename?: 'ConfluenceLegacy_Mutations_LinksContextBase';
|
|
9270
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
9271
|
+
context?: Maybe<Scalars['String']['output']>;
|
|
9272
|
+
};
|
|
9273
|
+
export declare type ConfluenceLegacy_Mutations_PaginatedLabelList = {
|
|
9274
|
+
__typename?: 'ConfluenceLegacy_Mutations_PaginatedLabelList';
|
|
9275
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
9276
|
+
edges?: Maybe<Array<Maybe<ConfluenceLegacy_Mutations_LabelEdge>>>;
|
|
9277
|
+
links?: Maybe<ConfluenceLegacy_Mutations_LinksContextBase>;
|
|
9278
|
+
nodes?: Maybe<Array<Maybe<ConfluenceLegacy_Mutations_Label>>>;
|
|
9279
|
+
pageInfo?: Maybe<PageInfo>;
|
|
9280
|
+
};
|
|
9147
9281
|
export declare type ConfluenceLegacy_MyVisitedPages = {
|
|
9148
9282
|
__typename?: 'ConfluenceLegacy_MyVisitedPages';
|
|
9149
9283
|
nodes: ConfluenceLegacy_MyVisitedPagesItems;
|
|
@@ -9188,6 +9322,18 @@ export declare type ConfluenceLegacy_NestedPageInput = {
|
|
|
9188
9322
|
isSelected?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9189
9323
|
pageID: Scalars['Long']['input'];
|
|
9190
9324
|
};
|
|
9325
|
+
export declare type ConfluenceLegacy_NewPageInput = {
|
|
9326
|
+
page: ConfluenceLegacy_PageInput;
|
|
9327
|
+
space: ConfluenceLegacy_SpaceInput;
|
|
9328
|
+
};
|
|
9329
|
+
export declare type ConfluenceLegacy_NewPagePayload = {
|
|
9330
|
+
__typename?: 'ConfluenceLegacy_NewPagePayload';
|
|
9331
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9332
|
+
contentId: Scalars['ID']['output'];
|
|
9333
|
+
page?: Maybe<ConfluenceLegacy_Page>;
|
|
9334
|
+
pageId: Scalars['ID']['output'];
|
|
9335
|
+
restrictions?: Maybe<ConfluenceLegacy_PageRestrictions>;
|
|
9336
|
+
};
|
|
9191
9337
|
export declare type ConfluenceLegacy_NotificationResponsePayload = Payload & {
|
|
9192
9338
|
__typename?: 'ConfluenceLegacy_NotificationResponsePayload';
|
|
9193
9339
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -9237,6 +9383,64 @@ export declare enum ConfluenceLegacy_OutputDeviceType {
|
|
|
9237
9383
|
Email = "EMAIL",
|
|
9238
9384
|
Mobile = "MOBILE"
|
|
9239
9385
|
}
|
|
9386
|
+
export declare enum ConfluenceLegacy_PtGraphQlPageStatus {
|
|
9387
|
+
Current = "CURRENT",
|
|
9388
|
+
Draft = "DRAFT",
|
|
9389
|
+
Historical = "HISTORICAL",
|
|
9390
|
+
Trashed = "TRASHED"
|
|
9391
|
+
}
|
|
9392
|
+
export declare type ConfluenceLegacy_PtPage = {
|
|
9393
|
+
__typename?: 'ConfluenceLegacy_PTPage';
|
|
9394
|
+
ancestors?: Maybe<Array<Maybe<ConfluenceLegacy_PtPage>>>;
|
|
9395
|
+
children?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9396
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9397
|
+
followingSiblings?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9398
|
+
hasChildren: Scalars['Boolean']['output'];
|
|
9399
|
+
hasInheritedRestrictions: Scalars['Boolean']['output'];
|
|
9400
|
+
hasRestrictions: Scalars['Boolean']['output'];
|
|
9401
|
+
id: Scalars['ID']['output'];
|
|
9402
|
+
nearestAncestors?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9403
|
+
previousSiblings?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9404
|
+
};
|
|
9405
|
+
export declare type ConfluenceLegacy_PtPageChildrenArgs = {
|
|
9406
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9407
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9408
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9409
|
+
};
|
|
9410
|
+
export declare type ConfluenceLegacy_PtPageFollowingSiblingsArgs = {
|
|
9411
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9413
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9414
|
+
};
|
|
9415
|
+
export declare type ConfluenceLegacy_PtPageNearestAncestorsArgs = {
|
|
9416
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9417
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9418
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9419
|
+
};
|
|
9420
|
+
export declare type ConfluenceLegacy_PtPagePreviousSiblingsArgs = {
|
|
9421
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9422
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9423
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9424
|
+
};
|
|
9425
|
+
export declare type ConfluenceLegacy_PtPageEdge = {
|
|
9426
|
+
__typename?: 'ConfluenceLegacy_PTPageEdge';
|
|
9427
|
+
cursor: Scalars['String']['output'];
|
|
9428
|
+
node?: Maybe<ConfluenceLegacy_PtPage>;
|
|
9429
|
+
};
|
|
9430
|
+
export declare type ConfluenceLegacy_PtPageInfo = {
|
|
9431
|
+
__typename?: 'ConfluenceLegacy_PTPageInfo';
|
|
9432
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
9433
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
9434
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
9435
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
9436
|
+
};
|
|
9437
|
+
export declare type ConfluenceLegacy_PtPaginatedPageList = {
|
|
9438
|
+
__typename?: 'ConfluenceLegacy_PTPaginatedPageList';
|
|
9439
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
9440
|
+
edges?: Maybe<Array<Maybe<ConfluenceLegacy_PtPageEdge>>>;
|
|
9441
|
+
nodes?: Maybe<Array<Maybe<ConfluenceLegacy_PtPage>>>;
|
|
9442
|
+
pageInfo?: Maybe<ConfluenceLegacy_PtPageInfo>;
|
|
9443
|
+
};
|
|
9240
9444
|
export declare type ConfluenceLegacy_Page = {
|
|
9241
9445
|
__typename?: 'ConfluenceLegacy_Page';
|
|
9242
9446
|
ancestors: Array<Maybe<ConfluenceLegacy_Page>>;
|
|
@@ -9313,6 +9517,7 @@ export declare type ConfluenceLegacy_PageActivityEventCreatedComment = Confluenc
|
|
|
9313
9517
|
commentType: ConfluenceLegacy_AnalyticsCommentType;
|
|
9314
9518
|
groupSize: Scalars['Int']['output'];
|
|
9315
9519
|
timestamp: Scalars['String']['output'];
|
|
9520
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
9316
9521
|
};
|
|
9317
9522
|
export declare type ConfluenceLegacy_PageActivityEventCreatedPage = ConfluenceLegacy_PageActivityEvent & {
|
|
9318
9523
|
__typename?: 'ConfluenceLegacy_PageActivityEventCreatedPage';
|
|
@@ -9322,6 +9527,7 @@ export declare type ConfluenceLegacy_PageActivityEventCreatedPage = ConfluenceLe
|
|
|
9322
9527
|
groupSize: Scalars['Int']['output'];
|
|
9323
9528
|
pageVersion: Scalars['Int']['output'];
|
|
9324
9529
|
timestamp: Scalars['String']['output'];
|
|
9530
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
9325
9531
|
};
|
|
9326
9532
|
export declare type ConfluenceLegacy_PageActivityEventUpdatedPage = ConfluenceLegacy_PageActivityEvent & {
|
|
9327
9533
|
__typename?: 'ConfluenceLegacy_PageActivityEventUpdatedPage';
|
|
@@ -9331,6 +9537,7 @@ export declare type ConfluenceLegacy_PageActivityEventUpdatedPage = ConfluenceLe
|
|
|
9331
9537
|
groupSize: Scalars['Int']['output'];
|
|
9332
9538
|
pageVersion: Scalars['Int']['output'];
|
|
9333
9539
|
timestamp: Scalars['String']['output'];
|
|
9540
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
9334
9541
|
};
|
|
9335
9542
|
export declare type ConfluenceLegacy_PageActivityPageInfo = {
|
|
9336
9543
|
__typename?: 'ConfluenceLegacy_PageActivityPageInfo';
|
|
@@ -9357,6 +9564,10 @@ export declare type ConfluenceLegacy_PageAnalyticsTimeseriesCountItem = {
|
|
|
9357
9564
|
export declare enum ConfluenceLegacy_PageAnalyticsTimeseriesCountType {
|
|
9358
9565
|
All = "ALL"
|
|
9359
9566
|
}
|
|
9567
|
+
export declare type ConfluenceLegacy_PageBodyInput = {
|
|
9568
|
+
representation?: InputMaybe<ConfluenceLegacy_BodyFormatType>;
|
|
9569
|
+
value: Scalars['String']['input'];
|
|
9570
|
+
};
|
|
9360
9571
|
export declare enum ConfluenceLegacy_PageCardInPageTreeHoverPreference {
|
|
9361
9572
|
NoOptionSelected = "NO_OPTION_SELECTED",
|
|
9362
9573
|
NoShowPagecard = "NO_SHOW_PAGECARD",
|
|
@@ -9372,12 +9583,53 @@ export declare type ConfluenceLegacy_PageEdge = {
|
|
|
9372
9583
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
9373
9584
|
node?: Maybe<ConfluenceLegacy_Page>;
|
|
9374
9585
|
};
|
|
9586
|
+
export declare type ConfluenceLegacy_PageGroupRestriction = {
|
|
9587
|
+
__typename?: 'ConfluenceLegacy_PageGroupRestriction';
|
|
9588
|
+
name: Scalars['String']['output'];
|
|
9589
|
+
};
|
|
9590
|
+
export declare type ConfluenceLegacy_PageGroupRestrictionInput = {
|
|
9591
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
9592
|
+
name: Scalars['String']['input'];
|
|
9593
|
+
};
|
|
9594
|
+
export declare type ConfluenceLegacy_PageInput = {
|
|
9595
|
+
body?: InputMaybe<ConfluenceLegacy_PageBodyInput>;
|
|
9596
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
9597
|
+
restrictions?: InputMaybe<ConfluenceLegacy_PageRestrictionsInput>;
|
|
9598
|
+
status?: InputMaybe<ConfluenceLegacy_PageStatusInput>;
|
|
9599
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
9600
|
+
};
|
|
9601
|
+
export declare type ConfluenceLegacy_PageRestriction = {
|
|
9602
|
+
__typename?: 'ConfluenceLegacy_PageRestriction';
|
|
9603
|
+
group?: Maybe<Array<ConfluenceLegacy_PageGroupRestriction>>;
|
|
9604
|
+
user?: Maybe<Array<ConfluenceLegacy_PageUserRestriction>>;
|
|
9605
|
+
};
|
|
9606
|
+
export declare type ConfluenceLegacy_PageRestrictionInput = {
|
|
9607
|
+
group?: InputMaybe<Array<ConfluenceLegacy_PageGroupRestrictionInput>>;
|
|
9608
|
+
user?: InputMaybe<Array<ConfluenceLegacy_PageUserRestrictionInput>>;
|
|
9609
|
+
};
|
|
9610
|
+
export declare type ConfluenceLegacy_PageRestrictions = {
|
|
9611
|
+
__typename?: 'ConfluenceLegacy_PageRestrictions';
|
|
9612
|
+
read?: Maybe<ConfluenceLegacy_PageRestriction>;
|
|
9613
|
+
update?: Maybe<ConfluenceLegacy_PageRestriction>;
|
|
9614
|
+
};
|
|
9615
|
+
export declare type ConfluenceLegacy_PageRestrictionsInput = {
|
|
9616
|
+
read?: InputMaybe<ConfluenceLegacy_PageRestrictionInput>;
|
|
9617
|
+
update?: InputMaybe<ConfluenceLegacy_PageRestrictionInput>;
|
|
9618
|
+
};
|
|
9375
9619
|
export declare enum ConfluenceLegacy_PageStatus {
|
|
9376
9620
|
Current = "CURRENT",
|
|
9377
9621
|
Draft = "DRAFT",
|
|
9378
9622
|
Historical = "HISTORICAL",
|
|
9379
9623
|
Trashed = "TRASHED"
|
|
9380
9624
|
}
|
|
9625
|
+
export declare enum ConfluenceLegacy_PageStatusInput {
|
|
9626
|
+
Current = "CURRENT",
|
|
9627
|
+
Draft = "DRAFT"
|
|
9628
|
+
}
|
|
9629
|
+
export declare type ConfluenceLegacy_PageTree_CloudId = {
|
|
9630
|
+
__typename?: 'ConfluenceLegacy_PageTree_CloudId';
|
|
9631
|
+
cloudId: Scalars['ID']['output'];
|
|
9632
|
+
};
|
|
9381
9633
|
export declare enum ConfluenceLegacy_PageUpdateTrigger {
|
|
9382
9634
|
CreatePage = "CREATE_PAGE",
|
|
9383
9635
|
DiscardChanges = "DISCARD_CHANGES",
|
|
@@ -9392,6 +9644,13 @@ export declare enum ConfluenceLegacy_PageUpdateTrigger {
|
|
|
9392
9644
|
Unknown = "UNKNOWN",
|
|
9393
9645
|
ViewPage = "VIEW_PAGE"
|
|
9394
9646
|
}
|
|
9647
|
+
export declare type ConfluenceLegacy_PageUserRestriction = {
|
|
9648
|
+
__typename?: 'ConfluenceLegacy_PageUserRestriction';
|
|
9649
|
+
id: Scalars['ID']['output'];
|
|
9650
|
+
};
|
|
9651
|
+
export declare type ConfluenceLegacy_PageUserRestrictionInput = {
|
|
9652
|
+
id: Scalars['ID']['input'];
|
|
9653
|
+
};
|
|
9395
9654
|
export declare type ConfluenceLegacy_PageValidationResult = {
|
|
9396
9655
|
__typename?: 'ConfluenceLegacy_PageValidationResult';
|
|
9397
9656
|
isValid: Scalars['Boolean']['output'];
|
|
@@ -10087,6 +10346,18 @@ export declare type ConfluenceLegacy_RecommendedSpaceItem = {
|
|
|
10087
10346
|
space?: Maybe<ConfluenceLegacy_Space>;
|
|
10088
10347
|
spaceId: Scalars['Long']['output'];
|
|
10089
10348
|
};
|
|
10349
|
+
export declare enum ConfluenceLegacy_RelationSourceType {
|
|
10350
|
+
User = "user"
|
|
10351
|
+
}
|
|
10352
|
+
export declare enum ConfluenceLegacy_RelationTargetType {
|
|
10353
|
+
Content = "content",
|
|
10354
|
+
Space = "space"
|
|
10355
|
+
}
|
|
10356
|
+
export declare enum ConfluenceLegacy_RelationType {
|
|
10357
|
+
Collaborator = "collaborator",
|
|
10358
|
+
Favourite = "favourite",
|
|
10359
|
+
Touched = "touched"
|
|
10360
|
+
}
|
|
10090
10361
|
export declare type ConfluenceLegacy_RelevantFeedFilters = {
|
|
10091
10362
|
__typename?: 'ConfluenceLegacy_RelevantFeedFilters';
|
|
10092
10363
|
relevantFeedSpacesFilter: Array<Maybe<Scalars['Long']['output']>>;
|
|
@@ -10831,6 +11102,9 @@ export declare type ConfluenceLegacy_SpaceHistory = {
|
|
|
10831
11102
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
10832
11103
|
links?: Maybe<ConfluenceLegacy_LinksContextBase>;
|
|
10833
11104
|
};
|
|
11105
|
+
export declare type ConfluenceLegacy_SpaceInput = {
|
|
11106
|
+
key: Scalars['ID']['input'];
|
|
11107
|
+
};
|
|
10834
11108
|
export declare type ConfluenceLegacy_SpaceMetadata = {
|
|
10835
11109
|
__typename?: 'ConfluenceLegacy_SpaceMetadata';
|
|
10836
11110
|
labels?: Maybe<ConfluenceLegacy_PaginatedLabelList>;
|
|
@@ -11367,6 +11641,13 @@ export declare type ConfluenceLegacy_TemplatizeInput = {
|
|
|
11367
11641
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11368
11642
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
11369
11643
|
};
|
|
11644
|
+
export declare type ConfluenceLegacy_Tenant = {
|
|
11645
|
+
__typename?: 'ConfluenceLegacy_Tenant';
|
|
11646
|
+
activationId?: Maybe<Scalars['String']['output']>;
|
|
11647
|
+
cloudId: Scalars['ID']['output'];
|
|
11648
|
+
environment: ConfluenceLegacy_Environment;
|
|
11649
|
+
shard: Scalars['String']['output'];
|
|
11650
|
+
};
|
|
11370
11651
|
export declare type ConfluenceLegacy_TenantContext = {
|
|
11371
11652
|
__typename?: 'ConfluenceLegacy_TenantContext';
|
|
11372
11653
|
baseUrl: Scalars['String']['output'];
|
|
@@ -11374,6 +11655,10 @@ export declare type ConfluenceLegacy_TenantContext = {
|
|
|
11374
11655
|
initialProductList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
11375
11656
|
licensedProducts: Array<ConfluenceLegacy_LicensedProduct>;
|
|
11376
11657
|
};
|
|
11658
|
+
export declare type ConfluenceLegacy_Tenant_CloudId = {
|
|
11659
|
+
__typename?: 'ConfluenceLegacy_Tenant_CloudId';
|
|
11660
|
+
cloudId: Scalars['ID']['output'];
|
|
11661
|
+
};
|
|
11377
11662
|
export declare type ConfluenceLegacy_Theme = {
|
|
11378
11663
|
__typename?: 'ConfluenceLegacy_Theme';
|
|
11379
11664
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -11552,6 +11837,20 @@ export declare type ConfluenceLegacy_UpdateOwnerPayload = {
|
|
|
11552
11837
|
__typename?: 'ConfluenceLegacy_UpdateOwnerPayload';
|
|
11553
11838
|
content: ConfluenceLegacy_Content;
|
|
11554
11839
|
};
|
|
11840
|
+
export declare type ConfluenceLegacy_UpdatePageExtensionInput = {
|
|
11841
|
+
key: Scalars['String']['input'];
|
|
11842
|
+
value: Scalars['String']['input'];
|
|
11843
|
+
};
|
|
11844
|
+
export declare type ConfluenceLegacy_UpdatePageInput = {
|
|
11845
|
+
body?: InputMaybe<ConfluenceLegacy_PageBodyInput>;
|
|
11846
|
+
extensions?: InputMaybe<Array<InputMaybe<ConfluenceLegacy_UpdatePageExtensionInput>>>;
|
|
11847
|
+
mediaAttachments?: InputMaybe<Array<ConfluenceLegacy_MediaAttachmentInput>>;
|
|
11848
|
+
minorEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11849
|
+
pageId: Scalars['ID']['input'];
|
|
11850
|
+
restrictions?: InputMaybe<ConfluenceLegacy_PageRestrictionsInput>;
|
|
11851
|
+
status?: InputMaybe<ConfluenceLegacy_PageStatusInput>;
|
|
11852
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
11853
|
+
};
|
|
11555
11854
|
export declare type ConfluenceLegacy_UpdatePageOwnersInput = {
|
|
11556
11855
|
ownerId: Scalars['ID']['input'];
|
|
11557
11856
|
pageIDs: Array<InputMaybe<Scalars['Long']['input']>>;
|
|
@@ -11562,6 +11861,14 @@ export declare type ConfluenceLegacy_UpdatePageOwnersPayload = Payload & {
|
|
|
11562
11861
|
success: Scalars['Boolean']['output'];
|
|
11563
11862
|
taskId: Scalars['ID']['output'];
|
|
11564
11863
|
};
|
|
11864
|
+
export declare type ConfluenceLegacy_UpdatePagePayload = {
|
|
11865
|
+
__typename?: 'ConfluenceLegacy_UpdatePagePayload';
|
|
11866
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
11867
|
+
mediaAttached: Array<ConfluenceLegacy_MediaAttachmentOrError>;
|
|
11868
|
+
page?: Maybe<ConfluenceLegacy_Page>;
|
|
11869
|
+
pageId: Scalars['ID']['output'];
|
|
11870
|
+
restrictions?: Maybe<ConfluenceLegacy_PageRestrictions>;
|
|
11871
|
+
};
|
|
11565
11872
|
export declare type ConfluenceLegacy_UpdatePageStatusesInput = {
|
|
11566
11873
|
pages: Array<InputMaybe<ConfluenceLegacy_NestedPageInput>>;
|
|
11567
11874
|
spaceKey: Scalars['String']['input'];
|
|
@@ -11577,6 +11884,24 @@ export declare type ConfluenceLegacy_UpdatePermissionSubjectKeyInput = {
|
|
|
11577
11884
|
permissionDisplayType: ConfluenceLegacy_PermissionDisplayType;
|
|
11578
11885
|
subjectId: Scalars['String']['input'];
|
|
11579
11886
|
};
|
|
11887
|
+
export declare type ConfluenceLegacy_UpdateRelationInput = {
|
|
11888
|
+
relationName: ConfluenceLegacy_RelationType;
|
|
11889
|
+
sourceKey: Scalars['String']['input'];
|
|
11890
|
+
sourceStatus?: InputMaybe<Scalars['String']['input']>;
|
|
11891
|
+
sourceType: ConfluenceLegacy_RelationSourceType;
|
|
11892
|
+
sourceVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
11893
|
+
targetKey: Scalars['String']['input'];
|
|
11894
|
+
targetStatus?: InputMaybe<Scalars['String']['input']>;
|
|
11895
|
+
targetType: ConfluenceLegacy_RelationTargetType;
|
|
11896
|
+
targetVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
11897
|
+
};
|
|
11898
|
+
export declare type ConfluenceLegacy_UpdateRelationPayload = {
|
|
11899
|
+
__typename?: 'ConfluenceLegacy_UpdateRelationPayload';
|
|
11900
|
+
relationName: Scalars['String']['output'];
|
|
11901
|
+
sourceKey: Scalars['String']['output'];
|
|
11902
|
+
targetKey: Scalars['String']['output'];
|
|
11903
|
+
url: Scalars['String']['output'];
|
|
11904
|
+
};
|
|
11580
11905
|
export declare type ConfluenceLegacy_UpdateSiteLookAndFeelInput = {
|
|
11581
11906
|
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
11582
11907
|
faviconFiles: Array<ConfluenceLegacy_FaviconFileInput>;
|
|
@@ -13157,6 +13482,7 @@ export declare type ContentPlatformAnchor = {
|
|
|
13157
13482
|
__typename?: 'ContentPlatformAnchor';
|
|
13158
13483
|
anchorId: Scalars['String']['output'];
|
|
13159
13484
|
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
13485
|
+
banner?: Maybe<Array<ContentPlatformAnchorBanner>>;
|
|
13160
13486
|
callToAction?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
13161
13487
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13162
13488
|
headline?: Maybe<Array<ContentPlatformAnchorHeadline>>;
|
|
@@ -13169,6 +13495,19 @@ export declare type ContentPlatformAnchor = {
|
|
|
13169
13495
|
socialProof?: Maybe<Array<ContentPlatformAnchorSocialProof>>;
|
|
13170
13496
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13171
13497
|
};
|
|
13498
|
+
export declare type ContentPlatformAnchorBanner = {
|
|
13499
|
+
__typename?: 'ContentPlatformAnchorBanner';
|
|
13500
|
+
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
13501
|
+
backgroundImage?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
13502
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13503
|
+
image?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
13504
|
+
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
13505
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
13506
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
13507
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13508
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
13509
|
+
urlText?: Maybe<Scalars['String']['output']>;
|
|
13510
|
+
};
|
|
13172
13511
|
export declare type ContentPlatformAnchorContentSearchConnection = {
|
|
13173
13512
|
__typename?: 'ContentPlatformAnchorContentSearchConnection';
|
|
13174
13513
|
edges: Array<ContentPlatformAnchorResultEdge>;
|
|
@@ -13268,6 +13607,7 @@ export declare type ContentPlatformAuthor = {
|
|
|
13268
13607
|
__typename?: 'ContentPlatformAuthor';
|
|
13269
13608
|
authorPicture?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
13270
13609
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13610
|
+
externalContributor?: Maybe<Scalars['Boolean']['output']>;
|
|
13271
13611
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
13272
13612
|
name: Scalars['String']['output'];
|
|
13273
13613
|
organization?: Maybe<ContentPlatformOrganization>;
|
|
@@ -13336,6 +13676,7 @@ export declare type ContentPlatformContentClause = {
|
|
|
13336
13676
|
and?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
13337
13677
|
fieldNamed?: InputMaybe<Scalars['String']['input']>;
|
|
13338
13678
|
gte?: InputMaybe<ContentPlatformDateCondition>;
|
|
13679
|
+
hasAnyValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13339
13680
|
havingValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13340
13681
|
lte?: InputMaybe<ContentPlatformDateCondition>;
|
|
13341
13682
|
or?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
@@ -13949,6 +14290,15 @@ export declare type ContentPlatformTaxonomyRegion = {
|
|
|
13949
14290
|
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
13950
14291
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13951
14292
|
};
|
|
14293
|
+
export declare type ContentPlatformTaxonomyTemplateType = {
|
|
14294
|
+
__typename?: 'ContentPlatformTaxonomyTemplateType';
|
|
14295
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14296
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
14297
|
+
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14298
|
+
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
14299
|
+
templateTypeName?: Maybe<Scalars['String']['output']>;
|
|
14300
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14301
|
+
};
|
|
13952
14302
|
export declare type ContentPlatformTaxonomyUserRole = {
|
|
13953
14303
|
__typename?: 'ContentPlatformTaxonomyUserRole';
|
|
13954
14304
|
description: Scalars['String']['output'];
|
|
@@ -13984,6 +14334,7 @@ export declare type ContentPlatformTemplate = {
|
|
|
13984
14334
|
templateOverview?: Maybe<Array<ContentPlatformTemplateOverview>>;
|
|
13985
14335
|
templatePreview?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
13986
14336
|
templateProductRationale?: Maybe<Array<ContentPlatformTemplateProductRationale>>;
|
|
14337
|
+
templateType?: Maybe<Array<ContentPlatformTaxonomyTemplateType>>;
|
|
13987
14338
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13988
14339
|
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
13989
14340
|
};
|
|
@@ -20251,6 +20602,328 @@ export declare type GraphCreateSprintRetrospectivePageInput = {
|
|
|
20251
20602
|
to: Scalars['ID']['input'];
|
|
20252
20603
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
20253
20604
|
};
|
|
20605
|
+
export declare type GraphDataDepotBranch = {
|
|
20606
|
+
__typename?: 'GraphDataDepotBranch';
|
|
20607
|
+
branchId: Scalars['String']['output'];
|
|
20608
|
+
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
20609
|
+
id: Scalars['ID']['output'];
|
|
20610
|
+
name: Scalars['String']['output'];
|
|
20611
|
+
repositoryId: Scalars['String']['output'];
|
|
20612
|
+
url: Scalars['String']['output'];
|
|
20613
|
+
};
|
|
20614
|
+
export declare type GraphDataDepotBranchReference = {
|
|
20615
|
+
__typename?: 'GraphDataDepotBranchReference';
|
|
20616
|
+
name: Scalars['String']['output'];
|
|
20617
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20618
|
+
};
|
|
20619
|
+
export declare type GraphDataDepotBuildCommitReference = {
|
|
20620
|
+
__typename?: 'GraphDataDepotBuildCommitReference';
|
|
20621
|
+
id: Scalars['String']['output'];
|
|
20622
|
+
repositoryUri: Scalars['String']['output'];
|
|
20623
|
+
};
|
|
20624
|
+
export declare type GraphDataDepotBuildInfo = {
|
|
20625
|
+
__typename?: 'GraphDataDepotBuildInfo';
|
|
20626
|
+
buildNumber: Scalars['Long']['output'];
|
|
20627
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20628
|
+
displayName: Scalars['String']['output'];
|
|
20629
|
+
duration?: Maybe<Scalars['Long']['output']>;
|
|
20630
|
+
id: Scalars['ID']['output'];
|
|
20631
|
+
pipelineId: Scalars['String']['output'];
|
|
20632
|
+
references?: Maybe<Array<GraphDataDepotBuildReferences>>;
|
|
20633
|
+
state: GraphDataDepotBuildState;
|
|
20634
|
+
testInfo?: Maybe<GraphDataDepotTestInfo>;
|
|
20635
|
+
url: Scalars['String']['output'];
|
|
20636
|
+
};
|
|
20637
|
+
export declare type GraphDataDepotBuildRefReference = {
|
|
20638
|
+
__typename?: 'GraphDataDepotBuildRefReference';
|
|
20639
|
+
name: Scalars['String']['output'];
|
|
20640
|
+
uri: Scalars['String']['output'];
|
|
20641
|
+
};
|
|
20642
|
+
export declare type GraphDataDepotBuildReferences = {
|
|
20643
|
+
__typename?: 'GraphDataDepotBuildReferences';
|
|
20644
|
+
commit?: Maybe<GraphDataDepotBuildCommitReference>;
|
|
20645
|
+
ref?: Maybe<GraphDataDepotBuildRefReference>;
|
|
20646
|
+
};
|
|
20647
|
+
export declare enum GraphDataDepotBuildState {
|
|
20648
|
+
Cancelled = "CANCELLED",
|
|
20649
|
+
Failed = "FAILED",
|
|
20650
|
+
InProgress = "IN_PROGRESS",
|
|
20651
|
+
Pending = "PENDING",
|
|
20652
|
+
Successful = "SUCCESSFUL",
|
|
20653
|
+
Unknown = "UNKNOWN"
|
|
20654
|
+
}
|
|
20655
|
+
export declare enum GraphDataDepotChangeType {
|
|
20656
|
+
Added = "ADDED",
|
|
20657
|
+
Copied = "COPIED",
|
|
20658
|
+
Deleted = "DELETED",
|
|
20659
|
+
Modified = "MODIFIED",
|
|
20660
|
+
Moved = "MOVED",
|
|
20661
|
+
Unknown = "UNKNOWN"
|
|
20662
|
+
}
|
|
20663
|
+
export declare type GraphDataDepotChapter = {
|
|
20664
|
+
__typename?: 'GraphDataDepotChapter';
|
|
20665
|
+
startTimeInSeconds: Scalars['Long']['output'];
|
|
20666
|
+
title: Scalars['String']['output'];
|
|
20667
|
+
};
|
|
20668
|
+
export declare type GraphDataDepotCommit = {
|
|
20669
|
+
__typename?: 'GraphDataDepotCommit';
|
|
20670
|
+
commitId: Scalars['String']['output'];
|
|
20671
|
+
createdAt: Scalars['String']['output'];
|
|
20672
|
+
displayId: Scalars['String']['output'];
|
|
20673
|
+
fileInfo: GraphDataDepotFileInfo;
|
|
20674
|
+
flags: Array<GraphDataDepotCommitFlags>;
|
|
20675
|
+
hash: Scalars['String']['output'];
|
|
20676
|
+
id: Scalars['ID']['output'];
|
|
20677
|
+
message: Scalars['String']['output'];
|
|
20678
|
+
repositoryId: Scalars['String']['output'];
|
|
20679
|
+
url: Scalars['String']['output'];
|
|
20680
|
+
};
|
|
20681
|
+
export declare enum GraphDataDepotCommitFlags {
|
|
20682
|
+
MergeCommit = "MERGE_COMMIT"
|
|
20683
|
+
}
|
|
20684
|
+
export declare type GraphDataDepotCue = {
|
|
20685
|
+
__typename?: 'GraphDataDepotCue';
|
|
20686
|
+
endTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
20687
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
20688
|
+
startTimeInSeconds: Scalars['Float']['output'];
|
|
20689
|
+
text: Scalars['String']['output'];
|
|
20690
|
+
};
|
|
20691
|
+
export declare type GraphDataDepotDeployment = {
|
|
20692
|
+
__typename?: 'GraphDataDepotDeployment';
|
|
20693
|
+
deploymentSequenceNumber: Scalars['Long']['output'];
|
|
20694
|
+
description: Scalars['String']['output'];
|
|
20695
|
+
displayName: Scalars['String']['output'];
|
|
20696
|
+
duration?: Maybe<Scalars['Long']['output']>;
|
|
20697
|
+
environment: GraphDataDepotEnvironment;
|
|
20698
|
+
id: Scalars['ID']['output'];
|
|
20699
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
20700
|
+
pipeline: GraphDataDepotPipeline;
|
|
20701
|
+
state: GraphDataDepotDeploymentState;
|
|
20702
|
+
url: Scalars['String']['output'];
|
|
20703
|
+
};
|
|
20704
|
+
export declare enum GraphDataDepotDeploymentState {
|
|
20705
|
+
Cancelled = "CANCELLED",
|
|
20706
|
+
Failed = "FAILED",
|
|
20707
|
+
InProgress = "IN_PROGRESS",
|
|
20708
|
+
Pending = "PENDING",
|
|
20709
|
+
RolledBack = "ROLLED_BACK",
|
|
20710
|
+
Successful = "SUCCESSFUL",
|
|
20711
|
+
Unknown = "UNKNOWN"
|
|
20712
|
+
}
|
|
20713
|
+
export declare type GraphDataDepotEntities = {
|
|
20714
|
+
__typename?: 'GraphDataDepotEntities';
|
|
20715
|
+
branch: Array<GraphDataDepotBranch>;
|
|
20716
|
+
buildInfo: Array<GraphDataDepotBuildInfo>;
|
|
20717
|
+
commit: Array<GraphDataDepotCommit>;
|
|
20718
|
+
deployment: Array<GraphDataDepotDeployment>;
|
|
20719
|
+
featureFlag: Array<GraphDataDepotFeatureFlag>;
|
|
20720
|
+
pullRequest: Array<GraphDataDepotPullRequest>;
|
|
20721
|
+
remoteLink: Array<GraphDataDepotRemoteLink>;
|
|
20722
|
+
video: Array<GraphDataDepotVideo>;
|
|
20723
|
+
vulnerability: Array<GraphDataDepotVulnerability>;
|
|
20724
|
+
};
|
|
20725
|
+
export declare type GraphDataDepotEnvironment = {
|
|
20726
|
+
__typename?: 'GraphDataDepotEnvironment';
|
|
20727
|
+
displayName: Scalars['String']['output'];
|
|
20728
|
+
id: Scalars['String']['output'];
|
|
20729
|
+
type: GraphDataDepotEnvironmentType;
|
|
20730
|
+
};
|
|
20731
|
+
export declare enum GraphDataDepotEnvironmentType {
|
|
20732
|
+
Development = "DEVELOPMENT",
|
|
20733
|
+
Production = "PRODUCTION",
|
|
20734
|
+
Staging = "STAGING",
|
|
20735
|
+
Testing = "TESTING",
|
|
20736
|
+
Unmapped = "UNMAPPED"
|
|
20737
|
+
}
|
|
20738
|
+
export declare type GraphDataDepotFeatureFlag = {
|
|
20739
|
+
__typename?: 'GraphDataDepotFeatureFlag';
|
|
20740
|
+
details: Array<GraphDataDepotFeatureFlagDetail>;
|
|
20741
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
20742
|
+
externalId: Scalars['String']['output'];
|
|
20743
|
+
id: Scalars['ID']['output'];
|
|
20744
|
+
key: Scalars['String']['output'];
|
|
20745
|
+
summary: GraphDataDepotFeatureFlagSummary;
|
|
20746
|
+
};
|
|
20747
|
+
export declare type GraphDataDepotFeatureFlagDetail = {
|
|
20748
|
+
__typename?: 'GraphDataDepotFeatureFlagDetail';
|
|
20749
|
+
environment: GraphDataDepotFeatureFlagEnvironment;
|
|
20750
|
+
status: GraphDataDepotFeatureFlagStatus;
|
|
20751
|
+
url: Scalars['String']['output'];
|
|
20752
|
+
};
|
|
20753
|
+
export declare type GraphDataDepotFeatureFlagEnvironment = {
|
|
20754
|
+
__typename?: 'GraphDataDepotFeatureFlagEnvironment';
|
|
20755
|
+
name: Scalars['String']['output'];
|
|
20756
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
20757
|
+
};
|
|
20758
|
+
export declare type GraphDataDepotFeatureFlagRollout = {
|
|
20759
|
+
__typename?: 'GraphDataDepotFeatureFlagRollout';
|
|
20760
|
+
percentage?: Maybe<Scalars['Float']['output']>;
|
|
20761
|
+
rules?: Maybe<Scalars['Int']['output']>;
|
|
20762
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
20763
|
+
};
|
|
20764
|
+
export declare type GraphDataDepotFeatureFlagStatus = {
|
|
20765
|
+
__typename?: 'GraphDataDepotFeatureFlagStatus';
|
|
20766
|
+
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
20767
|
+
enabled: Scalars['Boolean']['output'];
|
|
20768
|
+
rollout?: Maybe<GraphDataDepotFeatureFlagRollout>;
|
|
20769
|
+
};
|
|
20770
|
+
export declare type GraphDataDepotFeatureFlagSummary = {
|
|
20771
|
+
__typename?: 'GraphDataDepotFeatureFlagSummary';
|
|
20772
|
+
status: GraphDataDepotFeatureFlagStatus;
|
|
20773
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20774
|
+
};
|
|
20775
|
+
export declare type GraphDataDepotFile = {
|
|
20776
|
+
__typename?: 'GraphDataDepotFile';
|
|
20777
|
+
changeType: GraphDataDepotChangeType;
|
|
20778
|
+
linesAdded: Scalars['Int']['output'];
|
|
20779
|
+
linesRemoved: Scalars['Int']['output'];
|
|
20780
|
+
path: Scalars['String']['output'];
|
|
20781
|
+
url: Scalars['String']['output'];
|
|
20782
|
+
};
|
|
20783
|
+
export declare type GraphDataDepotFileInfo = {
|
|
20784
|
+
__typename?: 'GraphDataDepotFileInfo';
|
|
20785
|
+
fileCount: Scalars['Int']['output'];
|
|
20786
|
+
files: Array<GraphDataDepotFile>;
|
|
20787
|
+
};
|
|
20788
|
+
export declare enum GraphDataDepotLifecycleStage {
|
|
20789
|
+
Beta = "BETA",
|
|
20790
|
+
Experimental = "EXPERIMENTAL",
|
|
20791
|
+
Production = "PRODUCTION",
|
|
20792
|
+
Staging = "STAGING"
|
|
20793
|
+
}
|
|
20794
|
+
export declare type GraphDataDepotPipeline = {
|
|
20795
|
+
__typename?: 'GraphDataDepotPipeline';
|
|
20796
|
+
displayName: Scalars['String']['output'];
|
|
20797
|
+
id: Scalars['String']['output'];
|
|
20798
|
+
url: Scalars['String']['output'];
|
|
20799
|
+
};
|
|
20800
|
+
export declare type GraphDataDepotPullRequest = {
|
|
20801
|
+
__typename?: 'GraphDataDepotPullRequest';
|
|
20802
|
+
commentCount: Scalars['Int']['output'];
|
|
20803
|
+
destinationBranch?: Maybe<GraphDataDepotBranchReference>;
|
|
20804
|
+
displayId: Scalars['String']['output'];
|
|
20805
|
+
id: Scalars['ID']['output'];
|
|
20806
|
+
pullRequestId: Scalars['String']['output'];
|
|
20807
|
+
repositoryId: Scalars['String']['output'];
|
|
20808
|
+
sourceBranch: GraphDataDepotBranchReference;
|
|
20809
|
+
status: GraphDataDepotPullRequestStatus;
|
|
20810
|
+
supportedActions?: Maybe<Array<Scalars['String']['output']>>;
|
|
20811
|
+
tasksCount?: Maybe<Scalars['Int']['output']>;
|
|
20812
|
+
title: Scalars['String']['output'];
|
|
20813
|
+
url: Scalars['String']['output'];
|
|
20814
|
+
};
|
|
20815
|
+
export declare enum GraphDataDepotPullRequestStatus {
|
|
20816
|
+
Declined = "DECLINED",
|
|
20817
|
+
Draft = "DRAFT",
|
|
20818
|
+
Merged = "MERGED",
|
|
20819
|
+
Open = "OPEN",
|
|
20820
|
+
Unknown = "UNKNOWN"
|
|
20821
|
+
}
|
|
20822
|
+
export declare type GraphDataDepotQuery = {
|
|
20823
|
+
__typename?: 'GraphDataDepotQuery';
|
|
20824
|
+
entities: GraphDataDepotEntities;
|
|
20825
|
+
};
|
|
20826
|
+
export declare type GraphDataDepotQueryEntitiesArgs = {
|
|
20827
|
+
ids: Array<Scalars['ID']['input']>;
|
|
20828
|
+
};
|
|
20829
|
+
export declare type GraphDataDepotRemoteLink = {
|
|
20830
|
+
__typename?: 'GraphDataDepotRemoteLink';
|
|
20831
|
+
actionIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
20832
|
+
attributeMap?: Maybe<Array<GraphDataDepotRemoteLinkAttributeTuple>>;
|
|
20833
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
20834
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20835
|
+
displayName: Scalars['String']['output'];
|
|
20836
|
+
id: Scalars['ID']['output'];
|
|
20837
|
+
remoteLinkId: Scalars['String']['output'];
|
|
20838
|
+
status?: Maybe<GraphDataDepotRemoteLinkStatus>;
|
|
20839
|
+
type: Scalars['String']['output'];
|
|
20840
|
+
url: Scalars['String']['output'];
|
|
20841
|
+
};
|
|
20842
|
+
export declare type GraphDataDepotRemoteLinkAttributeTuple = {
|
|
20843
|
+
__typename?: 'GraphDataDepotRemoteLinkAttributeTuple';
|
|
20844
|
+
key: Scalars['String']['output'];
|
|
20845
|
+
value: Scalars['String']['output'];
|
|
20846
|
+
};
|
|
20847
|
+
export declare type GraphDataDepotRemoteLinkStatus = {
|
|
20848
|
+
__typename?: 'GraphDataDepotRemoteLinkStatus';
|
|
20849
|
+
appearance: Scalars['String']['output'];
|
|
20850
|
+
label: Scalars['String']['output'];
|
|
20851
|
+
};
|
|
20852
|
+
export declare type GraphDataDepotTestInfo = {
|
|
20853
|
+
__typename?: 'GraphDataDepotTestInfo';
|
|
20854
|
+
numberFailed: Scalars['Int']['output'];
|
|
20855
|
+
numberPassed: Scalars['Int']['output'];
|
|
20856
|
+
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
20857
|
+
totalNumber: Scalars['Int']['output'];
|
|
20858
|
+
};
|
|
20859
|
+
export declare type GraphDataDepotTrack = {
|
|
20860
|
+
__typename?: 'GraphDataDepotTrack';
|
|
20861
|
+
cues: Array<GraphDataDepotCue>;
|
|
20862
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
20863
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
20864
|
+
};
|
|
20865
|
+
export declare type GraphDataDepotVideo = {
|
|
20866
|
+
__typename?: 'GraphDataDepotVideo';
|
|
20867
|
+
chapters?: Maybe<Array<GraphDataDepotChapter>>;
|
|
20868
|
+
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
20869
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20870
|
+
displayName: Scalars['String']['output'];
|
|
20871
|
+
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
20872
|
+
embedUrl: Scalars['String']['output'];
|
|
20873
|
+
externalId: Scalars['String']['output'];
|
|
20874
|
+
height?: Maybe<Scalars['Long']['output']>;
|
|
20875
|
+
id: Scalars['ID']['output'];
|
|
20876
|
+
textTracks?: Maybe<Array<GraphDataDepotTrack>>;
|
|
20877
|
+
thumbnailUrl: Scalars['String']['output'];
|
|
20878
|
+
url: Scalars['String']['output'];
|
|
20879
|
+
width?: Maybe<Scalars['Long']['output']>;
|
|
20880
|
+
};
|
|
20881
|
+
export declare type GraphDataDepotVulnerability = {
|
|
20882
|
+
__typename?: 'GraphDataDepotVulnerability';
|
|
20883
|
+
additionalInfo?: Maybe<GraphDataDepotVulnerabilityAdditionalInfo>;
|
|
20884
|
+
description: Scalars['String']['output'];
|
|
20885
|
+
displayName: Scalars['String']['output'];
|
|
20886
|
+
externalId: Scalars['String']['output'];
|
|
20887
|
+
id: Scalars['ID']['output'];
|
|
20888
|
+
identifiers?: Maybe<Array<GraphDataDepotVulnerabilityIdentifier>>;
|
|
20889
|
+
severity: GraphDataDepotVulnerabilitySeverity;
|
|
20890
|
+
status: GraphDataDepotVulnerabilityStatus;
|
|
20891
|
+
type: GraphDataDepotVulnerabilityType;
|
|
20892
|
+
url: Scalars['String']['output'];
|
|
20893
|
+
};
|
|
20894
|
+
export declare type GraphDataDepotVulnerabilityAdditionalInfo = {
|
|
20895
|
+
__typename?: 'GraphDataDepotVulnerabilityAdditionalInfo';
|
|
20896
|
+
content: Scalars['String']['output'];
|
|
20897
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20898
|
+
};
|
|
20899
|
+
export declare type GraphDataDepotVulnerabilityIdentifier = {
|
|
20900
|
+
__typename?: 'GraphDataDepotVulnerabilityIdentifier';
|
|
20901
|
+
displayName: Scalars['String']['output'];
|
|
20902
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20903
|
+
};
|
|
20904
|
+
export declare type GraphDataDepotVulnerabilitySeverity = {
|
|
20905
|
+
__typename?: 'GraphDataDepotVulnerabilitySeverity';
|
|
20906
|
+
level: GraphDataDepotVulnerabilitySeverityLevel;
|
|
20907
|
+
};
|
|
20908
|
+
export declare enum GraphDataDepotVulnerabilitySeverityLevel {
|
|
20909
|
+
Critical = "CRITICAL",
|
|
20910
|
+
High = "HIGH",
|
|
20911
|
+
Low = "LOW",
|
|
20912
|
+
Medium = "MEDIUM",
|
|
20913
|
+
Unknown = "UNKNOWN"
|
|
20914
|
+
}
|
|
20915
|
+
export declare enum GraphDataDepotVulnerabilityStatus {
|
|
20916
|
+
Closed = "CLOSED",
|
|
20917
|
+
Ignored = "IGNORED",
|
|
20918
|
+
Open = "OPEN",
|
|
20919
|
+
Unknown = "UNKNOWN"
|
|
20920
|
+
}
|
|
20921
|
+
export declare enum GraphDataDepotVulnerabilityType {
|
|
20922
|
+
Dast = "DAST",
|
|
20923
|
+
Sast = "SAST",
|
|
20924
|
+
Sca = "SCA",
|
|
20925
|
+
Unknown = "UNKNOWN"
|
|
20926
|
+
}
|
|
20254
20927
|
export declare type GraphGeneric = Node & {
|
|
20255
20928
|
__typename?: 'GraphGeneric';
|
|
20256
20929
|
data?: Maybe<GraphRelationshipNodeData>;
|
|
@@ -40934,6 +41607,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
40934
41607
|
JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
|
|
40935
41608
|
JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
|
|
40936
41609
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
41610
|
+
JiraConnectNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
40937
41611
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
40938
41612
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
40939
41613
|
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
@@ -46013,6 +46687,7 @@ export declare type JiraScenario = Node & {
|
|
|
46013
46687
|
color?: Maybe<Scalars['String']['output']>;
|
|
46014
46688
|
id: Scalars['ID']['output'];
|
|
46015
46689
|
scenarioId?: Maybe<Scalars['Long']['output']>;
|
|
46690
|
+
scenarioUrl?: Maybe<Scalars['URL']['output']>;
|
|
46016
46691
|
title?: Maybe<Scalars['String']['output']>;
|
|
46017
46692
|
};
|
|
46018
46693
|
export declare type JiraScenarioIssue = JiraScenarioIssueLike & Node & {
|
|
@@ -50907,10 +51582,28 @@ export declare type LpCertmetricsCertificateEdge = {
|
|
|
50907
51582
|
cursor: Scalars['String']['output'];
|
|
50908
51583
|
node?: Maybe<LpCertmetricsCertificate>;
|
|
50909
51584
|
};
|
|
51585
|
+
export declare type LpCourseProgress = {
|
|
51586
|
+
__typename?: 'LpCourseProgress';
|
|
51587
|
+
courseId?: Maybe<Scalars['String']['output']>;
|
|
51588
|
+
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
51589
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
51590
|
+
uuid?: Maybe<Scalars['String']['output']>;
|
|
51591
|
+
};
|
|
51592
|
+
export declare type LpCourseProgressConnection = {
|
|
51593
|
+
__typename?: 'LpCourseProgressConnection';
|
|
51594
|
+
edges?: Maybe<Array<LpCourseProgressEdge>>;
|
|
51595
|
+
pageInfo?: Maybe<LpPageInfo>;
|
|
51596
|
+
};
|
|
51597
|
+
export declare type LpCourseProgressEdge = {
|
|
51598
|
+
__typename?: 'LpCourseProgressEdge';
|
|
51599
|
+
cursor: Scalars['String']['output'];
|
|
51600
|
+
node?: Maybe<LpCourseProgress>;
|
|
51601
|
+
};
|
|
50910
51602
|
export declare type LpLearner = Node & {
|
|
50911
51603
|
__typename?: 'LpLearner';
|
|
50912
51604
|
atlassianId: Scalars['String']['output'];
|
|
50913
51605
|
certmetricsCertificates?: Maybe<LpCertmetricsCertificateConnection>;
|
|
51606
|
+
courses?: Maybe<LpCourseProgressConnection>;
|
|
50914
51607
|
id: Scalars['ID']['output'];
|
|
50915
51608
|
};
|
|
50916
51609
|
export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
@@ -50919,6 +51612,12 @@ export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
|
50919
51612
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50920
51613
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
50921
51614
|
};
|
|
51615
|
+
export declare type LpLearnerCoursesArgs = {
|
|
51616
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51617
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
51618
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51619
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51620
|
+
};
|
|
50922
51621
|
export declare type LpLearnerData = {
|
|
50923
51622
|
__typename?: 'LpLearnerData';
|
|
50924
51623
|
learnerByAtlassianId?: Maybe<LpLearner>;
|
|
@@ -50930,6 +51629,11 @@ export declare type LpLearnerDataLearnerByAtlassianIdArgs = {
|
|
|
50930
51629
|
export declare type LpLearnerDataNodeArgs = {
|
|
50931
51630
|
id: Scalars['ID']['input'];
|
|
50932
51631
|
};
|
|
51632
|
+
export declare type LpLessonProgress = {
|
|
51633
|
+
__typename?: 'LpLessonProgress';
|
|
51634
|
+
lessonId?: Maybe<Scalars['String']['output']>;
|
|
51635
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
51636
|
+
};
|
|
50933
51637
|
export declare type LpPageInfo = {
|
|
50934
51638
|
__typename?: 'LpPageInfo';
|
|
50935
51639
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -52914,6 +53618,7 @@ export declare type Mutation = {
|
|
|
52914
53618
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
52915
53619
|
confluenceLegacy_activatePaywallContent?: Maybe<ConfluenceLegacy_ActivatePaywallContentPayload>;
|
|
52916
53620
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacy_AddDefaultExCoSpacePermissionsPayload>;
|
|
53621
|
+
confluenceLegacy_addLabels?: Maybe<ConfluenceLegacy_AddLabelsPayload>;
|
|
52917
53622
|
confluenceLegacy_addPublicLinkPermissions?: Maybe<ConfluenceLegacy_AddPublicLinkPermissionsPayload>;
|
|
52918
53623
|
confluenceLegacy_archivePages?: Maybe<ConfluenceLegacy_BulkArchivePagePayload>;
|
|
52919
53624
|
confluenceLegacy_attachDanglingComment?: Maybe<ConfluenceLegacy_Comment>;
|
|
@@ -52958,7 +53663,9 @@ export declare type Mutation = {
|
|
|
52958
53663
|
confluenceLegacy_deleteExCoSpacePermissions?: Maybe<Array<Maybe<ConfluenceLegacy_DeleteExCoSpacePermissionsPayload>>>;
|
|
52959
53664
|
confluenceLegacy_deleteExternalCollaboratorDefaultSpace?: Maybe<ConfluenceLegacy_DeleteExternalCollaboratorDefaultSpacePayload>;
|
|
52960
53665
|
confluenceLegacy_deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
53666
|
+
confluenceLegacy_deleteLabel?: Maybe<ConfluenceLegacy_DeleteLabelPayload>;
|
|
52961
53667
|
confluenceLegacy_deletePages?: Maybe<ConfluenceLegacy_DeletePagesPayload>;
|
|
53668
|
+
confluenceLegacy_deleteRelation?: Maybe<ConfluenceLegacy_DeleteRelationPayload>;
|
|
52962
53669
|
confluenceLegacy_deleteSpaceDefaultClassificationLevel?: Maybe<ConfluenceLegacy_DeleteSpaceDefaultClassificationLevelPayload>;
|
|
52963
53670
|
confluenceLegacy_deleteSpaceRoles?: Maybe<ConfluenceLegacy_DeleteSpaceRolesPayload>;
|
|
52964
53671
|
confluenceLegacy_deleteTemplate?: Maybe<Scalars['ID']['output']>;
|
|
@@ -52981,6 +53688,12 @@ export declare type Mutation = {
|
|
|
52981
53688
|
confluenceLegacy_markFeatureDiscovered?: Maybe<ConfluenceLegacy_FeatureDiscoveryPayload>;
|
|
52982
53689
|
confluenceLegacy_migrateSpaceShortcuts?: Maybe<ConfluenceLegacy_MigrateSpaceShortcutsPayload>;
|
|
52983
53690
|
confluenceLegacy_moveBlog?: Maybe<ConfluenceLegacy_MoveBlogPayload>;
|
|
53691
|
+
confluenceLegacy_movePageAfter?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53692
|
+
confluenceLegacy_movePageAppend?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53693
|
+
confluenceLegacy_movePageBefore?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53694
|
+
confluenceLegacy_movePageTopLevel?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53695
|
+
confluenceLegacy_mutationsCloudId?: Maybe<ConfluenceLegacy_Mutations_CloudId>;
|
|
53696
|
+
confluenceLegacy_newPage?: Maybe<ConfluenceLegacy_NewPagePayload>;
|
|
52984
53697
|
confluenceLegacy_notifyUsersOnFirstView?: Maybe<ConfluenceLegacy_NotificationResponsePayload>;
|
|
52985
53698
|
confluenceLegacy_openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
52986
53699
|
confluenceLegacy_patchCommentsSummary?: Maybe<ConfluenceLegacy_PatchCommentsSummaryPayload>;
|
|
@@ -53043,10 +53756,12 @@ export declare type Mutation = {
|
|
|
53043
53756
|
confluenceLegacy_updateLocalStorage?: Maybe<ConfluenceLegacy_LocalStorage>;
|
|
53044
53757
|
confluenceLegacy_updateNestedPageOwners?: Maybe<ConfluenceLegacy_UpdateNestedPageOwnersPayload>;
|
|
53045
53758
|
confluenceLegacy_updateOwner?: Maybe<ConfluenceLegacy_UpdateOwnerPayload>;
|
|
53759
|
+
confluenceLegacy_updatePage?: Maybe<ConfluenceLegacy_UpdatePagePayload>;
|
|
53046
53760
|
confluenceLegacy_updatePageOwners?: Maybe<ConfluenceLegacy_UpdatePageOwnersPayload>;
|
|
53047
53761
|
confluenceLegacy_updatePageStatuses?: Maybe<ConfluenceLegacy_UpdatePageStatusesPayload>;
|
|
53048
53762
|
confluenceLegacy_updatePushNotificationCustomSettings?: Maybe<ConfluenceLegacy_PushNotificationSettings>;
|
|
53049
53763
|
confluenceLegacy_updatePushNotificationGroupSetting?: Maybe<ConfluenceLegacy_PushNotificationSettings>;
|
|
53764
|
+
confluenceLegacy_updateRelation?: Maybe<ConfluenceLegacy_UpdateRelationPayload>;
|
|
53050
53765
|
confluenceLegacy_updateSiteLookAndFeel?: Maybe<ConfluenceLegacy_UpdateSiteLookAndFeelPayload>;
|
|
53051
53766
|
confluenceLegacy_updateSitePermission?: Maybe<ConfluenceLegacy_SitePermission>;
|
|
53052
53767
|
confluenceLegacy_updateSpaceDefaultClassificationLevel?: Maybe<ConfluenceLegacy_UpdateSpaceDefaultClassificationLevelPayload>;
|
|
@@ -53244,6 +53959,9 @@ export declare type MutationConfluenceLegacy_ActivatePaywallContentArgs = {
|
|
|
53244
53959
|
export declare type MutationConfluenceLegacy_AddDefaultExCoSpacePermissionsArgs = {
|
|
53245
53960
|
spacePermissionsInput: ConfluenceLegacy_AddDefaultExCoSpacePermissionsInput;
|
|
53246
53961
|
};
|
|
53962
|
+
export declare type MutationConfluenceLegacy_AddLabelsArgs = {
|
|
53963
|
+
input: ConfluenceLegacy_AddLabelsInput;
|
|
53964
|
+
};
|
|
53247
53965
|
export declare type MutationConfluenceLegacy_AddPublicLinkPermissionsArgs = {
|
|
53248
53966
|
input: ConfluenceLegacy_AddPublicLinkPermissionsInput;
|
|
53249
53967
|
};
|
|
@@ -53383,9 +54101,15 @@ export declare type MutationConfluenceLegacy_DeleteExCoSpacePermissionsArgs = {
|
|
|
53383
54101
|
export declare type MutationConfluenceLegacy_DeleteInlineCommentArgs = {
|
|
53384
54102
|
input: ConfluenceLegacy_DeleteInlineCommentInput;
|
|
53385
54103
|
};
|
|
54104
|
+
export declare type MutationConfluenceLegacy_DeleteLabelArgs = {
|
|
54105
|
+
input: ConfluenceLegacy_DeleteLabelInput;
|
|
54106
|
+
};
|
|
53386
54107
|
export declare type MutationConfluenceLegacy_DeletePagesArgs = {
|
|
53387
54108
|
input: Array<InputMaybe<ConfluenceLegacy_DeletePagesInput>>;
|
|
53388
54109
|
};
|
|
54110
|
+
export declare type MutationConfluenceLegacy_DeleteRelationArgs = {
|
|
54111
|
+
input: ConfluenceLegacy_DeleteRelationInput;
|
|
54112
|
+
};
|
|
53389
54113
|
export declare type MutationConfluenceLegacy_DeleteSpaceDefaultClassificationLevelArgs = {
|
|
53390
54114
|
input: ConfluenceLegacy_DeleteSpaceDefaultClassificationLevelInput;
|
|
53391
54115
|
};
|
|
@@ -53439,6 +54163,24 @@ export declare type MutationConfluenceLegacy_MigrateSpaceShortcutsArgs = {
|
|
|
53439
54163
|
export declare type MutationConfluenceLegacy_MoveBlogArgs = {
|
|
53440
54164
|
input: ConfluenceLegacy_MoveBlogInput;
|
|
53441
54165
|
};
|
|
54166
|
+
export declare type MutationConfluenceLegacy_MovePageAfterArgs = {
|
|
54167
|
+
input: ConfluenceLegacy_MovePageAsSiblingInput;
|
|
54168
|
+
};
|
|
54169
|
+
export declare type MutationConfluenceLegacy_MovePageAppendArgs = {
|
|
54170
|
+
input: ConfluenceLegacy_MovePageAsChildInput;
|
|
54171
|
+
};
|
|
54172
|
+
export declare type MutationConfluenceLegacy_MovePageBeforeArgs = {
|
|
54173
|
+
input: ConfluenceLegacy_MovePageAsSiblingInput;
|
|
54174
|
+
};
|
|
54175
|
+
export declare type MutationConfluenceLegacy_MovePageTopLevelArgs = {
|
|
54176
|
+
input: ConfluenceLegacy_MovePageTopLevelInput;
|
|
54177
|
+
};
|
|
54178
|
+
export declare type MutationConfluenceLegacy_MutationsCloudIdArgs = {
|
|
54179
|
+
cloudId: Scalars['ID']['input'];
|
|
54180
|
+
};
|
|
54181
|
+
export declare type MutationConfluenceLegacy_NewPageArgs = {
|
|
54182
|
+
input: ConfluenceLegacy_NewPageInput;
|
|
54183
|
+
};
|
|
53442
54184
|
export declare type MutationConfluenceLegacy_NotifyUsersOnFirstViewArgs = {
|
|
53443
54185
|
contentId: Scalars['ID']['input'];
|
|
53444
54186
|
};
|
|
@@ -53635,6 +54377,9 @@ export declare type MutationConfluenceLegacy_UpdateNestedPageOwnersArgs = {
|
|
|
53635
54377
|
export declare type MutationConfluenceLegacy_UpdateOwnerArgs = {
|
|
53636
54378
|
input: ConfluenceLegacy_UpdateOwnerInput;
|
|
53637
54379
|
};
|
|
54380
|
+
export declare type MutationConfluenceLegacy_UpdatePageArgs = {
|
|
54381
|
+
input: ConfluenceLegacy_UpdatePageInput;
|
|
54382
|
+
};
|
|
53638
54383
|
export declare type MutationConfluenceLegacy_UpdatePageOwnersArgs = {
|
|
53639
54384
|
input: ConfluenceLegacy_UpdatePageOwnersInput;
|
|
53640
54385
|
};
|
|
@@ -53647,6 +54392,9 @@ export declare type MutationConfluenceLegacy_UpdatePushNotificationCustomSetting
|
|
|
53647
54392
|
export declare type MutationConfluenceLegacy_UpdatePushNotificationGroupSettingArgs = {
|
|
53648
54393
|
group: ConfluenceLegacy_PushNotificationGroupInputType;
|
|
53649
54394
|
};
|
|
54395
|
+
export declare type MutationConfluenceLegacy_UpdateRelationArgs = {
|
|
54396
|
+
input: ConfluenceLegacy_UpdateRelationInput;
|
|
54397
|
+
};
|
|
53650
54398
|
export declare type MutationConfluenceLegacy_UpdateSiteLookAndFeelArgs = {
|
|
53651
54399
|
input: ConfluenceLegacy_UpdateSiteLookAndFeelInput;
|
|
53652
54400
|
};
|
|
@@ -56437,6 +57185,7 @@ export declare type Query = {
|
|
|
56437
57185
|
confluenceLegacy_loomToken?: Maybe<ConfluenceLegacy_LoomToken>;
|
|
56438
57186
|
confluenceLegacy_loomUserStatus?: Maybe<ConfluenceLegacy_LoomUserStatus>;
|
|
56439
57187
|
confluenceLegacy_macroBodyRenderer?: Maybe<ConfluenceLegacy_MacroBody>;
|
|
57188
|
+
confluenceLegacy_mutationsPlaceholder?: Maybe<Scalars['String']['output']>;
|
|
56440
57189
|
confluenceLegacy_myVisitedPages?: Maybe<ConfluenceLegacy_MyVisitedPages>;
|
|
56441
57190
|
confluenceLegacy_myVisitedSpaces?: Maybe<ConfluenceLegacy_MyVisitedSpaces>;
|
|
56442
57191
|
confluenceLegacy_onboardingState?: Maybe<Array<ConfluenceLegacy_OnboardingState>>;
|
|
@@ -56447,12 +57196,14 @@ export declare type Query = {
|
|
|
56447
57196
|
confluenceLegacy_pageAnalyticsTimeseriesCount?: Maybe<ConfluenceLegacy_PageAnalyticsTimeseriesCount>;
|
|
56448
57197
|
confluenceLegacy_pageContextContentCreationMetadata?: Maybe<ConfluenceLegacy_ContentCreationMetadata>;
|
|
56449
57198
|
confluenceLegacy_pageDump?: Maybe<ConfluenceLegacy_Page>;
|
|
57199
|
+
confluenceLegacy_pageTreeCloudId?: Maybe<ConfluenceLegacy_PageTree_CloudId>;
|
|
56450
57200
|
confluenceLegacy_pageTreeVersion?: Maybe<Scalars['String']['output']>;
|
|
56451
57201
|
confluenceLegacy_pages?: Maybe<ConfluenceLegacy_PaginatedPageList>;
|
|
56452
57202
|
confluenceLegacy_paywallContentToDisable?: Maybe<ConfluenceLegacy_PaywallContentSingle>;
|
|
56453
57203
|
confluenceLegacy_paywallStatus?: Maybe<ConfluenceLegacy_PaywallStatus>;
|
|
56454
57204
|
confluenceLegacy_personalSpace?: Maybe<ConfluenceLegacy_Space>;
|
|
56455
57205
|
confluenceLegacy_popularFeed?: Maybe<ConfluenceLegacy_PaginatedPopularFeed>;
|
|
57206
|
+
confluenceLegacy_ptpage?: Maybe<ConfluenceLegacy_PtPage>;
|
|
56456
57207
|
confluenceLegacy_publicLinkOnboardingReference?: Maybe<ConfluenceLegacy_PublicLinkOnboardingReference>;
|
|
56457
57208
|
confluenceLegacy_publicLinkPage?: Maybe<ConfluenceLegacy_PublicLinkPage>;
|
|
56458
57209
|
confluenceLegacy_publicLinkPagesByCriteria?: Maybe<ConfluenceLegacy_PublicLinkPageConnection>;
|
|
@@ -56507,6 +57258,8 @@ export declare type Query = {
|
|
|
56507
57258
|
confluenceLegacy_templateMediaSession?: Maybe<ConfluenceLegacy_TemplateMediaSession>;
|
|
56508
57259
|
confluenceLegacy_templatePropertySetByTemplate?: Maybe<ConfluenceLegacy_TemplatePropertySet>;
|
|
56509
57260
|
confluenceLegacy_templates?: Maybe<ConfluenceLegacy_PaginatedContentTemplateList>;
|
|
57261
|
+
confluenceLegacy_tenant?: Maybe<ConfluenceLegacy_Tenant>;
|
|
57262
|
+
confluenceLegacy_tenantCloudId?: Maybe<ConfluenceLegacy_Tenant_CloudId>;
|
|
56510
57263
|
confluenceLegacy_tenantContext?: Maybe<ConfluenceLegacy_TenantContext>;
|
|
56511
57264
|
confluenceLegacy_timeseriesCount?: Maybe<ConfluenceLegacy_TimeseriesCount>;
|
|
56512
57265
|
confluenceLegacy_timeseriesPageBlogCount?: Maybe<ConfluenceLegacy_TimeseriesPageBlogCount>;
|
|
@@ -56560,6 +57313,7 @@ export declare type Query = {
|
|
|
56560
57313
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
56561
57314
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
56562
57315
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
57316
|
+
dataDepot: GraphDataDepotQuery;
|
|
56563
57317
|
devAi?: Maybe<DevAi>;
|
|
56564
57318
|
devOps?: Maybe<DevOps>;
|
|
56565
57319
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
@@ -57282,6 +58036,9 @@ export declare type QueryConfluenceLegacy_PageDumpArgs = {
|
|
|
57282
58036
|
id: Scalars['ID']['input'];
|
|
57283
58037
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
57284
58038
|
};
|
|
58039
|
+
export declare type QueryConfluenceLegacy_PageTreeCloudIdArgs = {
|
|
58040
|
+
cloudId: Scalars['ID']['input'];
|
|
58041
|
+
};
|
|
57285
58042
|
export declare type QueryConfluenceLegacy_PageTreeVersionArgs = {
|
|
57286
58043
|
pageId?: InputMaybe<Scalars['ID']['input']>;
|
|
57287
58044
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -57309,6 +58066,13 @@ export declare type QueryConfluenceLegacy_PopularFeedArgs = {
|
|
|
57309
58066
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57310
58067
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57311
58068
|
};
|
|
58069
|
+
export declare type QueryConfluenceLegacy_PtpageArgs = {
|
|
58070
|
+
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58071
|
+
id: Scalars['ID']['input'];
|
|
58072
|
+
pageTree?: InputMaybe<Scalars['Int']['input']>;
|
|
58073
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
58074
|
+
status?: InputMaybe<Array<InputMaybe<ConfluenceLegacy_PtGraphQlPageStatus>>>;
|
|
58075
|
+
};
|
|
57312
58076
|
export declare type QueryConfluenceLegacy_PublicLinkPageArgs = {
|
|
57313
58077
|
pageId: Scalars['ID']['input'];
|
|
57314
58078
|
};
|
|
@@ -57563,6 +58327,12 @@ export declare type QueryConfluenceLegacy_TemplatesArgs = {
|
|
|
57563
58327
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
57564
58328
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
57565
58329
|
};
|
|
58330
|
+
export declare type QueryConfluenceLegacy_TenantArgs = {
|
|
58331
|
+
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58332
|
+
};
|
|
58333
|
+
export declare type QueryConfluenceLegacy_TenantCloudIdArgs = {
|
|
58334
|
+
cloudId: Scalars['ID']['input'];
|
|
58335
|
+
};
|
|
57566
58336
|
export declare type QueryConfluenceLegacy_TimeseriesCountArgs = {
|
|
57567
58337
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
57568
58338
|
eventName: Array<ConfluenceLegacy_AnalyticsEventName>;
|