@forge/cli-shared 5.3.1 → 5.3.2-next.1
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/auth/instruction.js +1 -1
- package/out/auth/personal/credential-store.js +1 -1
- package/out/graphql/gateway.d.ts +2 -3
- package/out/graphql/gateway.d.ts.map +1 -1
- package/out/graphql/gateway.js +5 -5
- package/out/graphql/graphql-types.d.ts +848 -101
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +241 -15
- package/out/service/bridge-script-service.d.ts.map +1 -1
- package/out/service/bridge-script-service.js +1 -1
- package/out/service/feature-flag-service.d.ts +2 -2
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +1 -1
- package/out/service/iframe-resizer-script-service.d.ts.map +1 -1
- package/out/service/iframe-resizer-script-service.js +1 -1
- package/package.json +2 -2
|
@@ -201,10 +201,12 @@ export declare type ActionsActionableAppEdge = {
|
|
|
201
201
|
};
|
|
202
202
|
export declare type ActionsActionableAppsFilter = {
|
|
203
203
|
byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
204
|
+
byActionVerb?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
204
205
|
byCapability?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
205
206
|
byContextEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
206
207
|
byEntityProperty?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
207
208
|
byEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
209
|
+
byExtensionAri?: InputMaybe<Scalars['String']['input']>;
|
|
208
210
|
byIntegrationKey?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
209
211
|
byProviderID?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
210
212
|
};
|
|
@@ -581,6 +583,7 @@ export declare enum ApiGroup {
|
|
|
581
583
|
ConfluenceAnalytics = "CONFLUENCE_ANALYTICS",
|
|
582
584
|
ConfluenceLegacy = "CONFLUENCE_LEGACY",
|
|
583
585
|
ConfluenceMutations = "CONFLUENCE_MUTATIONS",
|
|
586
|
+
ConfluencePages = "CONFLUENCE_PAGES",
|
|
584
587
|
ConfluencePageTree = "CONFLUENCE_PAGE_TREE",
|
|
585
588
|
ConfluenceSmarts = "CONFLUENCE_SMARTS",
|
|
586
589
|
ConfluenceTenant = "CONFLUENCE_TENANT",
|
|
@@ -6790,6 +6793,7 @@ export declare type ConfluenceLegacyAdminReport = {
|
|
|
6790
6793
|
link?: Maybe<Scalars['String']['output']>;
|
|
6791
6794
|
reportId?: Maybe<Scalars['ID']['output']>;
|
|
6792
6795
|
requesterId?: Maybe<Scalars['ID']['output']>;
|
|
6796
|
+
user?: Maybe<ConfluenceLegacyAtlassianUser>;
|
|
6793
6797
|
};
|
|
6794
6798
|
export declare type ConfluenceLegacyAdminReportPayload = {
|
|
6795
6799
|
__typename?: 'ConfluenceLegacyAdminReportPayload';
|
|
@@ -6914,7 +6918,7 @@ export declare type ConfluenceLegacyArchivedContentMetadata = {
|
|
|
6914
6918
|
export declare type ConfluenceLegacyAtlassianUser = {
|
|
6915
6919
|
__typename?: 'ConfluenceLegacyAtlassianUser';
|
|
6916
6920
|
companyName?: Maybe<Scalars['String']['output']>;
|
|
6917
|
-
confluence?: Maybe<
|
|
6921
|
+
confluence?: Maybe<ConfluenceLegacyConfluenceUser>;
|
|
6918
6922
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
6919
6923
|
emails?: Maybe<Array<Maybe<ConfluenceLegacyAtlassianUserEmail>>>;
|
|
6920
6924
|
groups?: Maybe<Array<Maybe<ConfluenceLegacyAtlassianUserGroup>>>;
|
|
@@ -7157,6 +7161,7 @@ export declare type ConfluenceLegacyComment = {
|
|
|
7157
7161
|
location: ConfluenceLegacyCommentLocation;
|
|
7158
7162
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
7159
7163
|
permissions: ConfluenceLegacyCommentPermissions;
|
|
7164
|
+
reactionsSummary?: Maybe<ConfluenceLegacyReactionsSummaryResponse>;
|
|
7160
7165
|
replies: Array<Maybe<ConfluenceLegacyComment>>;
|
|
7161
7166
|
spaceId: Scalars['Long']['output'];
|
|
7162
7167
|
version: ConfluenceLegacyVersion;
|
|
@@ -7164,6 +7169,11 @@ export declare type ConfluenceLegacyComment = {
|
|
|
7164
7169
|
export declare type ConfluenceLegacyCommentBodyArgs = {
|
|
7165
7170
|
representation?: InputMaybe<ConfluenceLegacyDocumentRepresentation>;
|
|
7166
7171
|
};
|
|
7172
|
+
export declare type ConfluenceLegacyCommentReactionsSummaryArgs = {
|
|
7173
|
+
childType: Scalars['String']['input'];
|
|
7174
|
+
contentType?: InputMaybe<Scalars['String']['input']>;
|
|
7175
|
+
pageId: Scalars['ID']['input'];
|
|
7176
|
+
};
|
|
7167
7177
|
export declare type ConfluenceLegacyCommentRepliesArgs = {
|
|
7168
7178
|
depth?: InputMaybe<Scalars['Int']['input']>;
|
|
7169
7179
|
};
|
|
@@ -7239,6 +7249,22 @@ export declare type ConfluenceLegacyCompanyHubFeature = {
|
|
|
7239
7249
|
__typename?: 'ConfluenceLegacyCompanyHubFeature';
|
|
7240
7250
|
isEntitled: Scalars['Boolean']['output'];
|
|
7241
7251
|
};
|
|
7252
|
+
export declare type ConfluenceLegacyConfluenceUser = {
|
|
7253
|
+
__typename?: 'ConfluenceLegacyConfluenceUser';
|
|
7254
|
+
accessStatus: ConfluenceLegacyAccessStatus;
|
|
7255
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
7256
|
+
currentUser?: Maybe<ConfluenceLegacyCurrentUserOperations>;
|
|
7257
|
+
groups: Array<Maybe<Scalars['String']['output']>>;
|
|
7258
|
+
groupsWithId: Array<Maybe<ConfluenceLegacyGroup>>;
|
|
7259
|
+
hasBlog?: Maybe<Scalars['Boolean']['output']>;
|
|
7260
|
+
hasPersonalSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
7261
|
+
locale: Scalars['String']['output'];
|
|
7262
|
+
operations: Array<Maybe<ConfluenceLegacyOperationCheckResult>>;
|
|
7263
|
+
permissionType?: Maybe<ConfluenceLegacySitePermissionType>;
|
|
7264
|
+
roles?: Maybe<ConfluenceLegacyUserRoles>;
|
|
7265
|
+
space?: Maybe<ConfluenceLegacySpace>;
|
|
7266
|
+
userKey?: Maybe<Scalars['String']['output']>;
|
|
7267
|
+
};
|
|
7242
7268
|
export declare type ConfluenceLegacyContactAdminMutationInput = {
|
|
7243
7269
|
content: ConfluenceLegacyContactAdminMutationInputContent;
|
|
7244
7270
|
recaptchaResponseToken?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7279,6 +7305,12 @@ export declare type ConfluenceLegacyContainerSummary = {
|
|
|
7279
7305
|
links?: Maybe<ConfluenceLegacyLinksContextBase>;
|
|
7280
7306
|
title?: Maybe<Scalars['String']['output']>;
|
|
7281
7307
|
};
|
|
7308
|
+
export declare enum ConfluenceLegacyContainerType {
|
|
7309
|
+
Blogpost = "BLOGPOST",
|
|
7310
|
+
Page = "PAGE",
|
|
7311
|
+
Space = "SPACE",
|
|
7312
|
+
Whiteboard = "WHITEBOARD"
|
|
7313
|
+
}
|
|
7282
7314
|
export declare type ConfluenceLegacyContent = {
|
|
7283
7315
|
__typename?: 'ConfluenceLegacyContent';
|
|
7284
7316
|
ancestors?: Maybe<Array<Maybe<ConfluenceLegacyContent>>>;
|
|
@@ -7291,14 +7323,18 @@ export declare type ConfluenceLegacyContent = {
|
|
|
7291
7323
|
childTypes?: Maybe<ConfluenceLegacyChildContentTypesAvailable>;
|
|
7292
7324
|
children?: Maybe<ConfluenceLegacyPaginatedContentList>;
|
|
7293
7325
|
classificationLevelId?: Maybe<Scalars['String']['output']>;
|
|
7326
|
+
classificationLevelMetadata?: Maybe<ConfluenceLegacyContentDataClassificationLevel>;
|
|
7294
7327
|
classificationLevelOverrideId?: Maybe<Scalars['String']['output']>;
|
|
7295
7328
|
comments?: Maybe<ConfluenceLegacyPaginatedContentList>;
|
|
7296
7329
|
container?: Maybe<ConfluenceLegacySpaceOrContent>;
|
|
7330
|
+
contentAnalyticsViewers?: Maybe<ConfluenceLegacyContentAnalyticsViewers>;
|
|
7331
|
+
contentAnalyticsViews?: Maybe<ConfluenceLegacyContentAnalyticsViews>;
|
|
7332
|
+
contentAnalyticsViewsByUser?: Maybe<ConfluenceLegacyContentAnalyticsViewsByUser>;
|
|
7333
|
+
contentReactionsSummary?: Maybe<ConfluenceLegacyReactionsSummaryResponse>;
|
|
7297
7334
|
contentState?: Maybe<ConfluenceLegacyContentState>;
|
|
7298
7335
|
contentStateLastUpdated?: Maybe<ConfluenceLegacyDate>;
|
|
7299
7336
|
creatorId?: Maybe<Scalars['String']['output']>;
|
|
7300
7337
|
currentUserIsWatching: Scalars['Boolean']['output'];
|
|
7301
|
-
dataClassificationLevel?: Maybe<Scalars['String']['output']>;
|
|
7302
7338
|
deletableDescendantsCount: Scalars['Long']['output'];
|
|
7303
7339
|
dynamicMobileBody?: Maybe<ConfluenceLegacyContentBody>;
|
|
7304
7340
|
embeddedProduct?: Maybe<Scalars['String']['output']>;
|
|
@@ -7329,6 +7365,7 @@ export declare type ConfluenceLegacyContent = {
|
|
|
7329
7365
|
restrictions?: Maybe<ConfluenceLegacyContentRestrictions>;
|
|
7330
7366
|
schedulePublishDate?: Maybe<Scalars['String']['output']>;
|
|
7331
7367
|
schedulePublishInfo?: Maybe<ConfluenceLegacySchedulePublishInfo>;
|
|
7368
|
+
smartFeatures?: Maybe<ConfluenceLegacySmartPageFeatures>;
|
|
7332
7369
|
space?: Maybe<ConfluenceLegacySpace>;
|
|
7333
7370
|
status?: Maybe<Scalars['String']['output']>;
|
|
7334
7371
|
subType?: Maybe<Scalars['String']['output']>;
|
|
@@ -7359,6 +7396,10 @@ export declare type ConfluenceLegacyContentCommentsArgs = {
|
|
|
7359
7396
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7360
7397
|
recentFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7361
7398
|
};
|
|
7399
|
+
export declare type ConfluenceLegacyContentContentAnalyticsViewsByUserArgs = {
|
|
7400
|
+
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
7401
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7402
|
+
};
|
|
7362
7403
|
export declare type ConfluenceLegacyContentContentStateArgs = {
|
|
7363
7404
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7364
7405
|
};
|
|
@@ -7431,6 +7472,16 @@ export declare type ConfluenceLegacyContentAnalyticsLastViewedAtByPageItem = {
|
|
|
7431
7472
|
contentId: Scalars['ID']['output'];
|
|
7432
7473
|
lastViewedAt: Scalars['String']['output'];
|
|
7433
7474
|
};
|
|
7475
|
+
export declare type ConfluenceLegacyContentAnalyticsPageViewInfo = {
|
|
7476
|
+
__typename?: 'ConfluenceLegacyContentAnalyticsPageViewInfo';
|
|
7477
|
+
lastVersionViewed: Scalars['Int']['output'];
|
|
7478
|
+
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
7479
|
+
lastViewedAt: Scalars['String']['output'];
|
|
7480
|
+
user?: Maybe<ConfluenceLegacyAtlassianUser>;
|
|
7481
|
+
userId: Scalars['ID']['output'];
|
|
7482
|
+
userProfile?: Maybe<ConfluenceLegacyAtlassianUser>;
|
|
7483
|
+
views: Scalars['Int']['output'];
|
|
7484
|
+
};
|
|
7434
7485
|
export declare type ConfluenceLegacyContentAnalyticsTotalViewsByPage = {
|
|
7435
7486
|
__typename?: 'ConfluenceLegacyContentAnalyticsTotalViewsByPage';
|
|
7436
7487
|
nodes?: Maybe<Array<Maybe<ConfluenceLegacyContentAnalyticsTotalViewsByPageItem>>>;
|
|
@@ -7448,6 +7499,11 @@ export declare type ConfluenceLegacyContentAnalyticsViews = {
|
|
|
7448
7499
|
__typename?: 'ConfluenceLegacyContentAnalyticsViews';
|
|
7449
7500
|
count: Scalars['Int']['output'];
|
|
7450
7501
|
};
|
|
7502
|
+
export declare type ConfluenceLegacyContentAnalyticsViewsByUser = {
|
|
7503
|
+
__typename?: 'ConfluenceLegacyContentAnalyticsViewsByUser';
|
|
7504
|
+
id: Scalars['ID']['output'];
|
|
7505
|
+
pageViews: Array<ConfluenceLegacyContentAnalyticsPageViewInfo>;
|
|
7506
|
+
};
|
|
7451
7507
|
export declare type ConfluenceLegacyContentBody = {
|
|
7452
7508
|
__typename?: 'ConfluenceLegacyContentBody';
|
|
7453
7509
|
content?: Maybe<ConfluenceLegacyContent>;
|
|
@@ -7727,6 +7783,7 @@ export declare type ConfluenceLegacyContentTemplate = {
|
|
|
7727
7783
|
referencingBlueprint?: Maybe<Scalars['String']['output']>;
|
|
7728
7784
|
space?: Maybe<ConfluenceLegacySpace>;
|
|
7729
7785
|
templateId?: Maybe<Scalars['String']['output']>;
|
|
7786
|
+
templatePropertySet?: Maybe<ConfluenceLegacyTemplatePropertySet>;
|
|
7730
7787
|
templateType?: Maybe<Scalars['String']['output']>;
|
|
7731
7788
|
};
|
|
7732
7789
|
export declare type ConfluenceLegacyContentTemplateBodyInput = {
|
|
@@ -8053,6 +8110,7 @@ export declare type ConfluenceLegacyDeactivatedUserPageCountEntity = {
|
|
|
8053
8110
|
__typename?: 'ConfluenceLegacyDeactivatedUserPageCountEntity';
|
|
8054
8111
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
8055
8112
|
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
8113
|
+
user?: Maybe<ConfluenceLegacyAtlassianUser>;
|
|
8056
8114
|
};
|
|
8057
8115
|
export declare type ConfluenceLegacyDeactivatedUserPageCountEntityEdge = {
|
|
8058
8116
|
__typename?: 'ConfluenceLegacyDeactivatedUserPageCountEntityEdge';
|
|
@@ -8239,6 +8297,15 @@ export declare type ConfluenceLegacyEditUpdate = ConfluenceLegacyAllUpdatesFeedE
|
|
|
8239
8297
|
user?: Maybe<ConfluenceLegacyPerson>;
|
|
8240
8298
|
version: Scalars['Int']['output'];
|
|
8241
8299
|
};
|
|
8300
|
+
export declare enum ConfluenceLegacyEdition {
|
|
8301
|
+
Free = "FREE",
|
|
8302
|
+
Premium = "PREMIUM",
|
|
8303
|
+
Standard = "STANDARD"
|
|
8304
|
+
}
|
|
8305
|
+
export declare type ConfluenceLegacyEditions = {
|
|
8306
|
+
__typename?: 'ConfluenceLegacyEditions';
|
|
8307
|
+
edition: ConfluenceLegacyEdition;
|
|
8308
|
+
};
|
|
8242
8309
|
export declare enum ConfluenceLegacyEditorConversionSetting {
|
|
8243
8310
|
None = "NONE",
|
|
8244
8311
|
Supported = "SUPPORTED"
|
|
@@ -8369,6 +8436,7 @@ export declare type ConfluenceLegacyError = {
|
|
|
8369
8436
|
export declare type ConfluenceLegacyExternalCollaboratorDefaultSpace = {
|
|
8370
8437
|
__typename?: 'ConfluenceLegacyExternalCollaboratorDefaultSpace';
|
|
8371
8438
|
enabled: Scalars['Boolean']['output'];
|
|
8439
|
+
space?: Maybe<ConfluenceLegacySpace>;
|
|
8372
8440
|
spaceId: Scalars['Long']['output'];
|
|
8373
8441
|
};
|
|
8374
8442
|
export declare type ConfluenceLegacyExternalCollaboratorFeature = {
|
|
@@ -8554,21 +8622,6 @@ export declare type ConfluenceLegacyGlobalDescription = {
|
|
|
8554
8622
|
__typename?: 'ConfluenceLegacyGlobalDescription';
|
|
8555
8623
|
id: Scalars['ID']['output'];
|
|
8556
8624
|
};
|
|
8557
|
-
export declare type ConfluenceLegacyGlobalPageTemplateUser = {
|
|
8558
|
-
__typename?: 'ConfluenceLegacyGlobalPageTemplateUser';
|
|
8559
|
-
accessStatus: ConfluenceLegacyAccessStatus;
|
|
8560
|
-
accountId?: Maybe<Scalars['String']['output']>;
|
|
8561
|
-
currentUser?: Maybe<ConfluenceLegacyCurrentUserOperations>;
|
|
8562
|
-
groups: Array<Maybe<Scalars['String']['output']>>;
|
|
8563
|
-
groupsWithId: Array<Maybe<ConfluenceLegacyGroup>>;
|
|
8564
|
-
hasBlog?: Maybe<Scalars['Boolean']['output']>;
|
|
8565
|
-
hasPersonalSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
8566
|
-
locale: Scalars['String']['output'];
|
|
8567
|
-
operations: Array<Maybe<ConfluenceLegacyOperationCheckResult>>;
|
|
8568
|
-
permissionType?: Maybe<ConfluenceLegacySitePermissionType>;
|
|
8569
|
-
roles?: Maybe<ConfluenceLegacyUserRoles>;
|
|
8570
|
-
userKey?: Maybe<Scalars['String']['output']>;
|
|
8571
|
-
};
|
|
8572
8625
|
export declare type ConfluenceLegacyGlobalSpaceConfiguration = {
|
|
8573
8626
|
__typename?: 'ConfluenceLegacyGlobalSpaceConfiguration';
|
|
8574
8627
|
publicLinkDefaultSpaceStatus?: Maybe<ConfluenceLegacyPublicLinkDefaultSpaceStatus>;
|
|
@@ -9371,13 +9424,14 @@ export declare type ConfluenceLegacyPtPage = {
|
|
|
9371
9424
|
__typename?: 'ConfluenceLegacyPTPage';
|
|
9372
9425
|
ancestors?: Maybe<Array<Maybe<ConfluenceLegacyPtPage>>>;
|
|
9373
9426
|
children?: Maybe<ConfluenceLegacyPtPaginatedPageList>;
|
|
9374
|
-
content?: Maybe<ConfluenceLegacyContent>;
|
|
9375
9427
|
followingSiblings?: Maybe<ConfluenceLegacyPtPaginatedPageList>;
|
|
9376
9428
|
hasChildren: Scalars['Boolean']['output'];
|
|
9377
9429
|
hasInheritedRestrictions: Scalars['Boolean']['output'];
|
|
9378
9430
|
hasRestrictions: Scalars['Boolean']['output'];
|
|
9379
9431
|
id: Scalars['ID']['output'];
|
|
9432
|
+
mediaSession?: Maybe<ConfluenceLegacyContentMediaSession>;
|
|
9380
9433
|
nearestAncestors?: Maybe<ConfluenceLegacyPtPaginatedPageList>;
|
|
9434
|
+
page?: Maybe<ConfluenceLegacyPage>;
|
|
9381
9435
|
previousSiblings?: Maybe<ConfluenceLegacyPtPaginatedPageList>;
|
|
9382
9436
|
};
|
|
9383
9437
|
export declare type ConfluenceLegacyPtPageChildrenArgs = {
|
|
@@ -9604,10 +9658,6 @@ export declare enum ConfluenceLegacyPageStatusInput {
|
|
|
9604
9658
|
Current = "CURRENT",
|
|
9605
9659
|
Draft = "DRAFT"
|
|
9606
9660
|
}
|
|
9607
|
-
export declare type ConfluenceLegacyPageTreeCloudId = {
|
|
9608
|
-
__typename?: 'ConfluenceLegacyPageTreeCloudId';
|
|
9609
|
-
cloudId: Scalars['ID']['output'];
|
|
9610
|
-
};
|
|
9611
9661
|
export declare enum ConfluenceLegacyPageUpdateTrigger {
|
|
9612
9662
|
CreatePage = "CREATE_PAGE",
|
|
9613
9663
|
DiscardChanges = "DISCARD_CHANGES",
|
|
@@ -9992,6 +10042,7 @@ export declare type ConfluenceLegacyPublicLink = {
|
|
|
9992
10042
|
__typename?: 'ConfluenceLegacyPublicLink';
|
|
9993
10043
|
id: Scalars['ID']['output'];
|
|
9994
10044
|
lastEnabledBy?: Maybe<Scalars['String']['output']>;
|
|
10045
|
+
lastEnabledByUser?: Maybe<ConfluenceLegacyPerson>;
|
|
9995
10046
|
lastEnabledDate?: Maybe<Scalars['String']['output']>;
|
|
9996
10047
|
publicLinkUrlPath?: Maybe<Scalars['String']['output']>;
|
|
9997
10048
|
status: ConfluenceLegacyPublicLinkStatus;
|
|
@@ -10020,6 +10071,7 @@ export declare type ConfluenceLegacyPublicLinkOnboardingReference = {
|
|
|
10020
10071
|
export declare type ConfluenceLegacyPublicLinkPage = {
|
|
10021
10072
|
__typename?: 'ConfluenceLegacyPublicLinkPage';
|
|
10022
10073
|
lastEnabledBy?: Maybe<Scalars['String']['output']>;
|
|
10074
|
+
lastEnabledByUser?: Maybe<ConfluenceLegacyPerson>;
|
|
10023
10075
|
lastEnabledDate?: Maybe<Scalars['String']['output']>;
|
|
10024
10076
|
pageId: Scalars['ID']['output'];
|
|
10025
10077
|
pageStatus: ConfluenceLegacyPublicLinkPageStatus;
|
|
@@ -10236,6 +10288,40 @@ export declare type ConfluenceLegacyQuickReloadComment = {
|
|
|
10236
10288
|
primaryActions: Array<Maybe<ConfluenceLegacyCommentUserAction>>;
|
|
10237
10289
|
secondaryActions: Array<Maybe<ConfluenceLegacyCommentUserAction>>;
|
|
10238
10290
|
};
|
|
10291
|
+
export declare type ConfluenceLegacyReactedUsersResponse = {
|
|
10292
|
+
__typename?: 'ConfluenceLegacyReactedUsersResponse';
|
|
10293
|
+
ari: Scalars['String']['output'];
|
|
10294
|
+
containerAri: Scalars['String']['output'];
|
|
10295
|
+
count: Scalars['Int']['output'];
|
|
10296
|
+
emojiId: Scalars['String']['output'];
|
|
10297
|
+
reacted: Scalars['Boolean']['output'];
|
|
10298
|
+
users?: Maybe<Array<Maybe<ConfluenceLegacyUser>>>;
|
|
10299
|
+
};
|
|
10300
|
+
export declare enum ConfluenceLegacyReactionContentType {
|
|
10301
|
+
Blogpost = "BLOGPOST",
|
|
10302
|
+
Comment = "COMMENT",
|
|
10303
|
+
Page = "PAGE"
|
|
10304
|
+
}
|
|
10305
|
+
export declare type ConfluenceLegacyReactionsId = {
|
|
10306
|
+
containerId: Scalars['ID']['input'];
|
|
10307
|
+
containerType: Scalars['String']['input'];
|
|
10308
|
+
contentId: Scalars['ID']['input'];
|
|
10309
|
+
contentType: Scalars['String']['input'];
|
|
10310
|
+
};
|
|
10311
|
+
export declare type ConfluenceLegacyReactionsSummaryForEmoji = {
|
|
10312
|
+
__typename?: 'ConfluenceLegacyReactionsSummaryForEmoji';
|
|
10313
|
+
count: Scalars['Int']['output'];
|
|
10314
|
+
emojiId: Scalars['String']['output'];
|
|
10315
|
+
id: Scalars['String']['output'];
|
|
10316
|
+
reacted: Scalars['Boolean']['output'];
|
|
10317
|
+
};
|
|
10318
|
+
export declare type ConfluenceLegacyReactionsSummaryResponse = {
|
|
10319
|
+
__typename?: 'ConfluenceLegacyReactionsSummaryResponse';
|
|
10320
|
+
ari: Scalars['String']['output'];
|
|
10321
|
+
containerAri: Scalars['String']['output'];
|
|
10322
|
+
reactionsCount: Scalars['Int']['output'];
|
|
10323
|
+
reactionsSummaryForEmoji: Array<Maybe<ConfluenceLegacyReactionsSummaryForEmoji>>;
|
|
10324
|
+
};
|
|
10239
10325
|
export declare type ConfluenceLegacyReattachInlineCommentInput = {
|
|
10240
10326
|
commentId: Scalars['ID']['input'];
|
|
10241
10327
|
containerId: Scalars['ID']['input'];
|
|
@@ -10439,6 +10525,12 @@ export declare enum ConfluenceLegacyRoleAssignmentPrincipalType {
|
|
|
10439
10525
|
Team = "TEAM",
|
|
10440
10526
|
User = "USER"
|
|
10441
10527
|
}
|
|
10528
|
+
export declare type ConfluenceLegacySaveReactionResponse = {
|
|
10529
|
+
__typename?: 'ConfluenceLegacySaveReactionResponse';
|
|
10530
|
+
ari: Scalars['String']['output'];
|
|
10531
|
+
containerAri: Scalars['String']['output'];
|
|
10532
|
+
emojiId: Scalars['String']['output'];
|
|
10533
|
+
};
|
|
10442
10534
|
export declare type ConfluenceLegacySchedulePublishInfo = {
|
|
10443
10535
|
__typename?: 'ConfluenceLegacySchedulePublishInfo';
|
|
10444
10536
|
date?: Maybe<Scalars['String']['output']>;
|
|
@@ -10935,7 +11027,10 @@ export declare type ConfluenceLegacySpace = {
|
|
|
10935
11027
|
hasRestriction: Scalars['Boolean']['output'];
|
|
10936
11028
|
history?: Maybe<ConfluenceLegacySpaceHistory>;
|
|
10937
11029
|
homepage?: Maybe<ConfluenceLegacyContent>;
|
|
11030
|
+
homepageComments?: Maybe<ConfluenceLegacyPaginatedCommentList>;
|
|
10938
11031
|
homepageId?: Maybe<Scalars['ID']['output']>;
|
|
11032
|
+
homepageV2?: Maybe<ConfluenceLegacyContent>;
|
|
11033
|
+
homepageWebSections?: Maybe<Array<Maybe<ConfluenceLegacyWebSection>>>;
|
|
10939
11034
|
icon?: Maybe<ConfluenceLegacyIcon>;
|
|
10940
11035
|
id?: Maybe<Scalars['ID']['output']>;
|
|
10941
11036
|
identifiers?: Maybe<ConfluenceLegacyGlobalSpaceIdentifier>;
|
|
@@ -10946,6 +11041,7 @@ export declare type ConfluenceLegacySpace = {
|
|
|
10946
11041
|
metadata: ConfluenceLegacySpaceMetadata;
|
|
10947
11042
|
name?: Maybe<Scalars['String']['output']>;
|
|
10948
11043
|
operations?: Maybe<Array<Maybe<ConfluenceLegacyOperationCheckResult>>>;
|
|
11044
|
+
pageTree?: Maybe<ConfluenceLegacyPtPage>;
|
|
10949
11045
|
permissions?: Maybe<Array<Maybe<ConfluenceLegacySpacePermission>>>;
|
|
10950
11046
|
settings?: Maybe<ConfluenceLegacySpaceSettings>;
|
|
10951
11047
|
spaceAdmins: ConfluenceLegacyPaginatedPersonList;
|
|
@@ -10987,6 +11083,20 @@ export declare type ConfluenceLegacySpaceHasRestrictionArgs = {
|
|
|
10987
11083
|
accountID: Scalars['String']['input'];
|
|
10988
11084
|
permission: ConfluenceLegacyInspectPermissions;
|
|
10989
11085
|
};
|
|
11086
|
+
export declare type ConfluenceLegacySpaceHomepageCommentsArgs = {
|
|
11087
|
+
depth?: InputMaybe<ConfluenceLegacyDepth>;
|
|
11088
|
+
type?: InputMaybe<Array<InputMaybe<ConfluenceLegacyCommentType>>>;
|
|
11089
|
+
};
|
|
11090
|
+
export declare type ConfluenceLegacySpaceHomepageWebSectionsArgs = {
|
|
11091
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
11092
|
+
locations?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
11093
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
11094
|
+
};
|
|
11095
|
+
export declare type ConfluenceLegacySpacePageTreeArgs = {
|
|
11096
|
+
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11097
|
+
pageTree?: InputMaybe<Scalars['Int']['input']>;
|
|
11098
|
+
status?: InputMaybe<Array<InputMaybe<ConfluenceLegacyPtGraphQlPageStatus>>>;
|
|
11099
|
+
};
|
|
10990
11100
|
export declare type ConfluenceLegacySpaceSpaceAdminsArgs = {
|
|
10991
11101
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
10992
11102
|
excludeAddOns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -11332,6 +11442,7 @@ export declare type ConfluenceLegacyStalePagePayload = {
|
|
|
11332
11442
|
__typename?: 'ConfluenceLegacyStalePagePayload';
|
|
11333
11443
|
lastActivityDate: Scalars['String']['output'];
|
|
11334
11444
|
lastViewedDate?: Maybe<Scalars['String']['output']>;
|
|
11445
|
+
page?: Maybe<ConfluenceLegacyContent>;
|
|
11335
11446
|
pageId: Scalars['String']['output'];
|
|
11336
11447
|
pageStatus: ConfluenceLegacyStalePageStatus;
|
|
11337
11448
|
spaceId: Scalars['String']['output'];
|
|
@@ -11544,6 +11655,10 @@ export declare type ConfluenceLegacyTemplateMigration = {
|
|
|
11544
11655
|
__typename?: 'ConfluenceLegacyTemplateMigration';
|
|
11545
11656
|
unsupportedTemplatesNames: Array<Maybe<Scalars['String']['output']>>;
|
|
11546
11657
|
};
|
|
11658
|
+
export declare type ConfluenceLegacyTemplatePropertySet = {
|
|
11659
|
+
__typename?: 'ConfluenceLegacyTemplatePropertySet';
|
|
11660
|
+
contentAppearance?: Maybe<ConfluenceLegacyTemplateContentAppearance>;
|
|
11661
|
+
};
|
|
11547
11662
|
export declare type ConfluenceLegacyTemplatePropertySetInput = {
|
|
11548
11663
|
contentAppearance?: InputMaybe<ConfluenceLegacyTemplateContentAppearance>;
|
|
11549
11664
|
};
|
|
@@ -11561,6 +11676,7 @@ export declare type ConfluenceLegacyTenant = {
|
|
|
11561
11676
|
__typename?: 'ConfluenceLegacyTenant';
|
|
11562
11677
|
activationId?: Maybe<Scalars['String']['output']>;
|
|
11563
11678
|
cloudId: Scalars['ID']['output'];
|
|
11679
|
+
editions?: Maybe<ConfluenceLegacyEditions>;
|
|
11564
11680
|
environment: ConfluenceLegacyEnvironment;
|
|
11565
11681
|
shard: Scalars['String']['output'];
|
|
11566
11682
|
};
|
|
@@ -11902,6 +12018,7 @@ export declare type ConfluenceLegacyUser = ConfluenceLegacyPerson & {
|
|
|
11902
12018
|
permissionType?: Maybe<ConfluenceLegacySitePermissionType>;
|
|
11903
12019
|
profilePicture?: Maybe<ConfluenceLegacyIcon>;
|
|
11904
12020
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
12021
|
+
spacesAssigned?: Maybe<ConfluenceLegacyPaginatedSpaceList>;
|
|
11905
12022
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
11906
12023
|
type?: Maybe<Scalars['String']['output']>;
|
|
11907
12024
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -12395,6 +12512,7 @@ export declare type ConfluencePage = {
|
|
|
12395
12512
|
properties?: Maybe<Array<Maybe<ConfluencePageProperty>>>;
|
|
12396
12513
|
space?: Maybe<ConfluenceSpace>;
|
|
12397
12514
|
status?: Maybe<ConfluencePageStatus>;
|
|
12515
|
+
subtype?: Maybe<ConfluencePageSubType>;
|
|
12398
12516
|
title?: Maybe<Scalars['String']['output']>;
|
|
12399
12517
|
type?: Maybe<ConfluenceContentType>;
|
|
12400
12518
|
viewer?: Maybe<ConfluencePageViewerSummary>;
|
|
@@ -12428,6 +12546,9 @@ export declare enum ConfluencePageStatus {
|
|
|
12428
12546
|
Historical = "HISTORICAL",
|
|
12429
12547
|
Trashed = "TRASHED"
|
|
12430
12548
|
}
|
|
12549
|
+
export declare enum ConfluencePageSubType {
|
|
12550
|
+
Live = "LIVE"
|
|
12551
|
+
}
|
|
12431
12552
|
export declare type ConfluencePageVersion = {
|
|
12432
12553
|
__typename?: 'ConfluencePageVersion';
|
|
12433
12554
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -13867,6 +13988,7 @@ export declare enum ContentPlatformOperators {
|
|
|
13867
13988
|
}
|
|
13868
13989
|
export declare type ContentPlatformOrganization = {
|
|
13869
13990
|
__typename?: 'ContentPlatformOrganization';
|
|
13991
|
+
altDarkLogo?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
13870
13992
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13871
13993
|
industry?: Maybe<Array<ContentPlatformTaxonomyIndustry>>;
|
|
13872
13994
|
logo?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
@@ -18384,7 +18506,6 @@ export declare type EcosystemQueryDataClassificationsArgs = {
|
|
|
18384
18506
|
};
|
|
18385
18507
|
export declare type EcosystemQueryForgeAlertsArgs = {
|
|
18386
18508
|
appId: Scalars['ID']['input'];
|
|
18387
|
-
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
18388
18509
|
};
|
|
18389
18510
|
export declare type EcosystemQueryForgeAuditLogsArgs = {
|
|
18390
18511
|
appId: Scalars['ID']['input'];
|
|
@@ -18629,6 +18750,31 @@ export declare type ForgeAlertsActivityEdge = {
|
|
|
18629
18750
|
cursor: Scalars['String']['output'];
|
|
18630
18751
|
node?: Maybe<ForgeAlertsActivity>;
|
|
18631
18752
|
};
|
|
18753
|
+
export declare type ForgeAlertsActivityLog = {
|
|
18754
|
+
__typename?: 'ForgeAlertsActivityLog';
|
|
18755
|
+
context?: Maybe<ForgeAlertsActivityLogContext>;
|
|
18756
|
+
type: ForgeAlertsAlertActivityType;
|
|
18757
|
+
};
|
|
18758
|
+
export declare type ForgeAlertsActivityLogContext = {
|
|
18759
|
+
__typename?: 'ForgeAlertsActivityLogContext';
|
|
18760
|
+
actor?: Maybe<ForgeAlertsUserInfo>;
|
|
18761
|
+
at?: Maybe<Scalars['String']['output']>;
|
|
18762
|
+
severity?: Maybe<ForgeAlertsActivityLogSeverity>;
|
|
18763
|
+
to?: Maybe<Array<Maybe<ForgeAlertsEmailMeta>>>;
|
|
18764
|
+
};
|
|
18765
|
+
export declare type ForgeAlertsActivityLogSeverity = {
|
|
18766
|
+
__typename?: 'ForgeAlertsActivityLogSeverity';
|
|
18767
|
+
current?: Maybe<Scalars['String']['output']>;
|
|
18768
|
+
previous?: Maybe<Scalars['String']['output']>;
|
|
18769
|
+
};
|
|
18770
|
+
export declare type ForgeAlertsActivityLogsInput = {
|
|
18771
|
+
alertId: Scalars['Int']['input'];
|
|
18772
|
+
};
|
|
18773
|
+
export declare type ForgeAlertsActivityLogsResult = ForgeAlertsActivityLogsSuccess | QueryError;
|
|
18774
|
+
export declare type ForgeAlertsActivityLogsSuccess = {
|
|
18775
|
+
__typename?: 'ForgeAlertsActivityLogsSuccess';
|
|
18776
|
+
activities?: Maybe<Array<Maybe<ForgeAlertsActivityLog>>>;
|
|
18777
|
+
};
|
|
18632
18778
|
export declare enum ForgeAlertsActivityType {
|
|
18633
18779
|
AlertCreated = "ALERT_CREATED",
|
|
18634
18780
|
AlertMuted = "ALERT_MUTED",
|
|
@@ -18639,6 +18785,33 @@ export declare enum ForgeAlertsActivityType {
|
|
|
18639
18785
|
AlertUnmuted = "ALERT_UNMUTED",
|
|
18640
18786
|
AlertUpdated = "ALERT_UPDATED"
|
|
18641
18787
|
}
|
|
18788
|
+
export declare enum ForgeAlertsAlertActivityType {
|
|
18789
|
+
AlertClosed = "ALERT_CLOSED",
|
|
18790
|
+
AlertOpen = "ALERT_OPEN",
|
|
18791
|
+
EmailSent = "EMAIL_SENT",
|
|
18792
|
+
SeverityUpdated = "SEVERITY_UPDATED"
|
|
18793
|
+
}
|
|
18794
|
+
export declare type ForgeAlertsChartDetailsData = {
|
|
18795
|
+
__typename?: 'ForgeAlertsChartDetailsData';
|
|
18796
|
+
interval: ForgeAlertsMetricsIntervalRange;
|
|
18797
|
+
name: Scalars['String']['output'];
|
|
18798
|
+
resolution: ForgeAlertsMetricsResolution;
|
|
18799
|
+
series: Array<ForgeAlertsMetricsSeries>;
|
|
18800
|
+
type: ForgeAlertsMetricsDataType;
|
|
18801
|
+
};
|
|
18802
|
+
export declare type ForgeAlertsChartDetailsInput = {
|
|
18803
|
+
environment: Scalars['String']['input'];
|
|
18804
|
+
filters?: InputMaybe<Array<ForgeAlertsRuleFilters>>;
|
|
18805
|
+
interval?: InputMaybe<ForgeAlertsQueryIntervalInput>;
|
|
18806
|
+
metric: ForgeAlertsRuleMetricType;
|
|
18807
|
+
period?: InputMaybe<Scalars['Int']['input']>;
|
|
18808
|
+
};
|
|
18809
|
+
export declare type ForgeAlertsChartDetailsResult = ForgeAlertsChartDetailsData | QueryError;
|
|
18810
|
+
export declare type ForgeAlertsClosed = {
|
|
18811
|
+
__typename?: 'ForgeAlertsClosed';
|
|
18812
|
+
success: Scalars['Boolean']['output'];
|
|
18813
|
+
};
|
|
18814
|
+
export declare type ForgeAlertsClosedResponse = ForgeAlertsClosed | QueryError;
|
|
18642
18815
|
export declare type ForgeAlertsConfigData = {
|
|
18643
18816
|
__typename?: 'ForgeAlertsConfigData';
|
|
18644
18817
|
alertId: Scalars['String']['output'];
|
|
@@ -18720,6 +18893,14 @@ export declare type ForgeAlertsDeleteRulePayload = Payload & {
|
|
|
18720
18893
|
errors?: Maybe<Array<MutationError>>;
|
|
18721
18894
|
success: Scalars['Boolean']['output'];
|
|
18722
18895
|
};
|
|
18896
|
+
export declare type ForgeAlertsEmailMeta = {
|
|
18897
|
+
__typename?: 'ForgeAlertsEmailMeta';
|
|
18898
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
18899
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
18900
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
18901
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
18902
|
+
};
|
|
18903
|
+
export declare type ForgeAlertsIsAlertOpenForRuleResponse = ForgeAlertsOpen | QueryError;
|
|
18723
18904
|
export declare enum ForgeAlertsListOrderByColumns {
|
|
18724
18905
|
AlertId = "alertId",
|
|
18725
18906
|
ClosedAt = "closedAt",
|
|
@@ -18750,6 +18931,39 @@ export declare type ForgeAlertsListSuccess = {
|
|
|
18750
18931
|
alerts: Array<ForgeAlertsData>;
|
|
18751
18932
|
count: Scalars['Int']['output'];
|
|
18752
18933
|
};
|
|
18934
|
+
export declare type ForgeAlertsMetricsDataPoint = {
|
|
18935
|
+
__typename?: 'ForgeAlertsMetricsDataPoint';
|
|
18936
|
+
timestamp: Scalars['String']['output'];
|
|
18937
|
+
value: Scalars['Float']['output'];
|
|
18938
|
+
};
|
|
18939
|
+
export declare enum ForgeAlertsMetricsDataType {
|
|
18940
|
+
DateTime = "DATE_TIME"
|
|
18941
|
+
}
|
|
18942
|
+
export declare type ForgeAlertsMetricsIntervalRange = {
|
|
18943
|
+
__typename?: 'ForgeAlertsMetricsIntervalRange';
|
|
18944
|
+
end: Scalars['String']['output'];
|
|
18945
|
+
start: Scalars['String']['output'];
|
|
18946
|
+
};
|
|
18947
|
+
export declare type ForgeAlertsMetricsLabelGroup = {
|
|
18948
|
+
__typename?: 'ForgeAlertsMetricsLabelGroup';
|
|
18949
|
+
key: Scalars['String']['output'];
|
|
18950
|
+
value: Scalars['String']['output'];
|
|
18951
|
+
};
|
|
18952
|
+
export declare type ForgeAlertsMetricsResolution = {
|
|
18953
|
+
__typename?: 'ForgeAlertsMetricsResolution';
|
|
18954
|
+
size: Scalars['Int']['output'];
|
|
18955
|
+
units: ForgeAlertsMetricsResolutionUnit;
|
|
18956
|
+
};
|
|
18957
|
+
export declare enum ForgeAlertsMetricsResolutionUnit {
|
|
18958
|
+
Day = "DAY",
|
|
18959
|
+
Hours = "HOURS",
|
|
18960
|
+
Minutes = "MINUTES"
|
|
18961
|
+
}
|
|
18962
|
+
export declare type ForgeAlertsMetricsSeries = {
|
|
18963
|
+
__typename?: 'ForgeAlertsMetricsSeries';
|
|
18964
|
+
data: Array<ForgeAlertsMetricsDataPoint>;
|
|
18965
|
+
groups: Array<ForgeAlertsMetricsLabelGroup>;
|
|
18966
|
+
};
|
|
18753
18967
|
export declare type ForgeAlertsMutation = {
|
|
18754
18968
|
__typename?: 'ForgeAlertsMutation';
|
|
18755
18969
|
appId: Scalars['ID']['output'];
|
|
@@ -18778,29 +18992,100 @@ export declare type ForgeAlertsMutationModifyAlertConfigArgs = {
|
|
|
18778
18992
|
export declare type ForgeAlertsMutationUpdateRuleArgs = {
|
|
18779
18993
|
input: ForgeAlertsUpdateRuleInput;
|
|
18780
18994
|
};
|
|
18995
|
+
export declare type ForgeAlertsOpen = {
|
|
18996
|
+
__typename?: 'ForgeAlertsOpen';
|
|
18997
|
+
success: Scalars['Boolean']['output'];
|
|
18998
|
+
};
|
|
18781
18999
|
export declare type ForgeAlertsQuery = {
|
|
18782
19000
|
__typename?: 'ForgeAlertsQuery';
|
|
18783
19001
|
alert?: Maybe<ForgeAlertsSingleResult>;
|
|
18784
19002
|
alertActivities?: Maybe<ForgeAlertsActivitiesResult>;
|
|
19003
|
+
alertActivityLogs?: Maybe<ForgeAlertsActivityLogsResult>;
|
|
18785
19004
|
alertConfig?: Maybe<ForgeAlertsConfigResult>;
|
|
18786
19005
|
alerts?: Maybe<ForgeAlertsListResult>;
|
|
18787
19006
|
appId: Scalars['ID']['output'];
|
|
19007
|
+
chartDetails?: Maybe<ForgeAlertsChartDetailsResult>;
|
|
19008
|
+
closeAlert?: Maybe<ForgeAlertsClosedResponse>;
|
|
19009
|
+
isAlertOpenForRule?: Maybe<ForgeAlertsIsAlertOpenForRuleResponse>;
|
|
18788
19010
|
rule?: Maybe<ForgeAlertsRuleResult>;
|
|
18789
|
-
|
|
19011
|
+
ruleActivityLogs?: Maybe<ForgeAlertsRuleActivityLogsResult>;
|
|
18790
19012
|
rules?: Maybe<ForgeAlertsRulesResult>;
|
|
18791
19013
|
};
|
|
18792
19014
|
export declare type ForgeAlertsQueryAlertArgs = {
|
|
18793
|
-
|
|
19015
|
+
alertId: Scalars['ID']['input'];
|
|
18794
19016
|
};
|
|
18795
19017
|
export declare type ForgeAlertsQueryAlertActivitiesArgs = {
|
|
18796
19018
|
input: ForgeAlertsActivitiesQueryInput;
|
|
18797
19019
|
};
|
|
19020
|
+
export declare type ForgeAlertsQueryAlertActivityLogsArgs = {
|
|
19021
|
+
query: ForgeAlertsActivityLogsInput;
|
|
19022
|
+
};
|
|
18798
19023
|
export declare type ForgeAlertsQueryAlertConfigArgs = {
|
|
18799
19024
|
input: ForgeAlertsConfigQueryInput;
|
|
18800
19025
|
};
|
|
18801
19026
|
export declare type ForgeAlertsQueryAlertsArgs = {
|
|
18802
19027
|
query: ForgeAlertsListQueryInput;
|
|
18803
19028
|
};
|
|
19029
|
+
export declare type ForgeAlertsQueryChartDetailsArgs = {
|
|
19030
|
+
input: ForgeAlertsChartDetailsInput;
|
|
19031
|
+
};
|
|
19032
|
+
export declare type ForgeAlertsQueryCloseAlertArgs = {
|
|
19033
|
+
ruleId: Scalars['ID']['input'];
|
|
19034
|
+
};
|
|
19035
|
+
export declare type ForgeAlertsQueryIsAlertOpenForRuleArgs = {
|
|
19036
|
+
ruleId: Scalars['ID']['input'];
|
|
19037
|
+
};
|
|
19038
|
+
export declare type ForgeAlertsQueryRuleArgs = {
|
|
19039
|
+
ruleId: Scalars['ID']['input'];
|
|
19040
|
+
};
|
|
19041
|
+
export declare type ForgeAlertsQueryRuleActivityLogsArgs = {
|
|
19042
|
+
query: ForgeAlertsRuleActivityLogsInput;
|
|
19043
|
+
};
|
|
19044
|
+
export declare type ForgeAlertsQueryIntervalInput = {
|
|
19045
|
+
end: Scalars['String']['input'];
|
|
19046
|
+
start: Scalars['String']['input'];
|
|
19047
|
+
};
|
|
19048
|
+
export declare enum ForgeAlertsRuleActivityAction {
|
|
19049
|
+
Created = "CREATED",
|
|
19050
|
+
Deleted = "DELETED",
|
|
19051
|
+
Disabled = "DISABLED",
|
|
19052
|
+
Enabled = "ENABLED",
|
|
19053
|
+
Updated = "UPDATED"
|
|
19054
|
+
}
|
|
19055
|
+
export declare type ForgeAlertsRuleActivityLogContext = {
|
|
19056
|
+
__typename?: 'ForgeAlertsRuleActivityLogContext';
|
|
19057
|
+
ruleName?: Maybe<Scalars['String']['output']>;
|
|
19058
|
+
updates?: Maybe<Array<Maybe<ForgeAlertsRuleActivityLogContextUpdates>>>;
|
|
19059
|
+
};
|
|
19060
|
+
export declare type ForgeAlertsRuleActivityLogContextUpdates = {
|
|
19061
|
+
__typename?: 'ForgeAlertsRuleActivityLogContextUpdates';
|
|
19062
|
+
current?: Maybe<Scalars['String']['output']>;
|
|
19063
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
19064
|
+
previous?: Maybe<Scalars['String']['output']>;
|
|
19065
|
+
};
|
|
19066
|
+
export declare type ForgeAlertsRuleActivityLogs = {
|
|
19067
|
+
__typename?: 'ForgeAlertsRuleActivityLogs';
|
|
19068
|
+
action?: Maybe<ForgeAlertsRuleActivityAction>;
|
|
19069
|
+
actor?: Maybe<ForgeAlertsUserInfo>;
|
|
19070
|
+
context?: Maybe<ForgeAlertsRuleActivityLogContext>;
|
|
19071
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19072
|
+
ruleId?: Maybe<Scalars['String']['output']>;
|
|
19073
|
+
};
|
|
19074
|
+
export declare type ForgeAlertsRuleActivityLogsInput = {
|
|
19075
|
+
action?: InputMaybe<ForgeAlertsRuleActivityAction>;
|
|
19076
|
+
actor?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19077
|
+
endTime: Scalars['String']['input'];
|
|
19078
|
+
limit: Scalars['Int']['input'];
|
|
19079
|
+
page: Scalars['Int']['input'];
|
|
19080
|
+
ruleIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19081
|
+
startTime: Scalars['String']['input'];
|
|
19082
|
+
};
|
|
19083
|
+
export declare type ForgeAlertsRuleActivityLogsResult = ForgeAlertsRuleActivityLogsSuccess | QueryError;
|
|
19084
|
+
export declare type ForgeAlertsRuleActivityLogsSuccess = {
|
|
19085
|
+
__typename?: 'ForgeAlertsRuleActivityLogsSuccess';
|
|
19086
|
+
activities?: Maybe<Array<Maybe<ForgeAlertsRuleActivityLogs>>>;
|
|
19087
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
19088
|
+
};
|
|
18804
19089
|
export declare type ForgeAlertsRuleConditions = {
|
|
18805
19090
|
severity: ForgeAlertsRuleSeverity;
|
|
18806
19091
|
threshold: Scalars['String']['input'];
|
|
@@ -18887,9 +19172,6 @@ export declare type ForgeAlertsRulesSuccess = {
|
|
|
18887
19172
|
__typename?: 'ForgeAlertsRulesSuccess';
|
|
18888
19173
|
rules: Array<ForgeAlertsRulesData>;
|
|
18889
19174
|
};
|
|
18890
|
-
export declare type ForgeAlertsSingleQueryInput = {
|
|
18891
|
-
alertId: Scalars['ID']['input'];
|
|
18892
|
-
};
|
|
18893
19175
|
export declare type ForgeAlertsSingleResult = ForgeAlertsSingleSuccess | QueryError;
|
|
18894
19176
|
export declare type ForgeAlertsSingleSuccess = {
|
|
18895
19177
|
__typename?: 'ForgeAlertsSingleSuccess';
|
|
@@ -20516,6 +20798,11 @@ export declare type GraphCreateSprintRetrospectivePageInput = {
|
|
|
20516
20798
|
to: Scalars['ID']['input'];
|
|
20517
20799
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
20518
20800
|
};
|
|
20801
|
+
export declare enum GraphDataDepotApprovalStatus {
|
|
20802
|
+
Approved = "APPROVED",
|
|
20803
|
+
Needswork = "NEEDSWORK",
|
|
20804
|
+
Unapproved = "UNAPPROVED"
|
|
20805
|
+
}
|
|
20519
20806
|
export declare type GraphDataDepotBranch = {
|
|
20520
20807
|
__typename?: 'GraphDataDepotBranch';
|
|
20521
20808
|
branchId: Scalars['String']['output'];
|
|
@@ -20581,6 +20868,7 @@ export declare type GraphDataDepotChapter = {
|
|
|
20581
20868
|
};
|
|
20582
20869
|
export declare type GraphDataDepotCommit = {
|
|
20583
20870
|
__typename?: 'GraphDataDepotCommit';
|
|
20871
|
+
author: GraphDataDepotUser;
|
|
20584
20872
|
commitId: Scalars['String']['output'];
|
|
20585
20873
|
createdAt: Scalars['String']['output'];
|
|
20586
20874
|
displayId: Scalars['String']['output'];
|
|
@@ -20613,6 +20901,7 @@ export declare type GraphDataDepotDeployment = {
|
|
|
20613
20901
|
label?: Maybe<Scalars['String']['output']>;
|
|
20614
20902
|
pipeline: GraphDataDepotPipeline;
|
|
20615
20903
|
state: GraphDataDepotDeploymentState;
|
|
20904
|
+
triggeredBy?: Maybe<GraphDataDepotUser>;
|
|
20616
20905
|
url: Scalars['String']['output'];
|
|
20617
20906
|
};
|
|
20618
20907
|
export declare enum GraphDataDepotDeploymentState {
|
|
@@ -20739,12 +21028,14 @@ export declare type GraphDataDepotPipeline = {
|
|
|
20739
21028
|
};
|
|
20740
21029
|
export declare type GraphDataDepotPullRequest = {
|
|
20741
21030
|
__typename?: 'GraphDataDepotPullRequest';
|
|
21031
|
+
author: GraphDataDepotUser;
|
|
20742
21032
|
commentCount: Scalars['Int']['output'];
|
|
20743
21033
|
destinationBranch?: Maybe<GraphDataDepotBranchReference>;
|
|
20744
21034
|
displayId: Scalars['String']['output'];
|
|
20745
21035
|
id: Scalars['ID']['output'];
|
|
20746
21036
|
pullRequestId: Scalars['String']['output'];
|
|
20747
21037
|
repositoryId: Scalars['String']['output'];
|
|
21038
|
+
reviewers: Array<GraphDataDepotReviewer>;
|
|
20748
21039
|
sourceBranch: GraphDataDepotBranchReference;
|
|
20749
21040
|
status: GraphDataDepotPullRequestStatus;
|
|
20750
21041
|
supportedActions?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -20769,7 +21060,9 @@ export declare type GraphDataDepotQueryEntitiesArgs = {
|
|
|
20769
21060
|
export declare type GraphDataDepotRemoteLink = {
|
|
20770
21061
|
__typename?: 'GraphDataDepotRemoteLink';
|
|
20771
21062
|
actionIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
21063
|
+
assignee?: Maybe<GraphDataDepotUser>;
|
|
20772
21064
|
attributeMap?: Maybe<Array<GraphDataDepotRemoteLinkAttributeTuple>>;
|
|
21065
|
+
author?: Maybe<GraphDataDepotUser>;
|
|
20773
21066
|
category?: Maybe<Scalars['String']['output']>;
|
|
20774
21067
|
description?: Maybe<Scalars['String']['output']>;
|
|
20775
21068
|
displayName: Scalars['String']['output'];
|
|
@@ -20789,6 +21082,11 @@ export declare type GraphDataDepotRemoteLinkStatus = {
|
|
|
20789
21082
|
appearance: Scalars['String']['output'];
|
|
20790
21083
|
label: Scalars['String']['output'];
|
|
20791
21084
|
};
|
|
21085
|
+
export declare type GraphDataDepotReviewer = {
|
|
21086
|
+
__typename?: 'GraphDataDepotReviewer';
|
|
21087
|
+
approvalStatus: GraphDataDepotApprovalStatus;
|
|
21088
|
+
user?: Maybe<GraphDataDepotUser>;
|
|
21089
|
+
};
|
|
20792
21090
|
export declare type GraphDataDepotTestInfo = {
|
|
20793
21091
|
__typename?: 'GraphDataDepotTestInfo';
|
|
20794
21092
|
numberFailed: Scalars['Int']['output'];
|
|
@@ -20802,10 +21100,16 @@ export declare type GraphDataDepotTrack = {
|
|
|
20802
21100
|
locale?: Maybe<Scalars['String']['output']>;
|
|
20803
21101
|
name?: Maybe<Scalars['String']['output']>;
|
|
20804
21102
|
};
|
|
21103
|
+
export declare type GraphDataDepotUser = {
|
|
21104
|
+
__typename?: 'GraphDataDepotUser';
|
|
21105
|
+
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
21106
|
+
user?: Maybe<User>;
|
|
21107
|
+
};
|
|
20805
21108
|
export declare type GraphDataDepotVideo = {
|
|
20806
21109
|
__typename?: 'GraphDataDepotVideo';
|
|
20807
21110
|
chapters?: Maybe<Array<GraphDataDepotChapter>>;
|
|
20808
21111
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
21112
|
+
createdBy?: Maybe<GraphDataDepotUser>;
|
|
20809
21113
|
description?: Maybe<Scalars['String']['output']>;
|
|
20810
21114
|
displayName: Scalars['String']['output'];
|
|
20811
21115
|
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
@@ -20813,6 +21117,8 @@ export declare type GraphDataDepotVideo = {
|
|
|
20813
21117
|
externalId: Scalars['String']['output'];
|
|
20814
21118
|
height?: Maybe<Scalars['Long']['output']>;
|
|
20815
21119
|
id: Scalars['ID']['output'];
|
|
21120
|
+
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
21121
|
+
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
20816
21122
|
textTracks?: Maybe<Array<GraphDataDepotTrack>>;
|
|
20817
21123
|
thumbnailUrl: Scalars['String']['output'];
|
|
20818
21124
|
url: Scalars['String']['output'];
|
|
@@ -23774,6 +24080,8 @@ export declare type GraphStore = {
|
|
|
23774
24080
|
shipit57IssueRecursiveLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverseConnection>;
|
|
23775
24081
|
shipit57PullRequestLinksToPage?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageConnection>;
|
|
23776
24082
|
shipit57PullRequestLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseConnection>;
|
|
24083
|
+
spaceAssociatedWithProject?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectConnection>;
|
|
24084
|
+
spaceAssociatedWithProjectInverse?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection>;
|
|
23777
24085
|
sprintAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
23778
24086
|
sprintAssociatedBuildRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
23779
24087
|
sprintAssociatedDeployment?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentConnection>;
|
|
@@ -25395,6 +25703,18 @@ export declare type GraphStoreShipit57PullRequestLinksToPageInverseArgs = {
|
|
|
25395
25703
|
id: Scalars['ID']['input'];
|
|
25396
25704
|
sort?: InputMaybe<GraphStoreShipit57PullRequestLinksToPageSortInput>;
|
|
25397
25705
|
};
|
|
25706
|
+
export declare type GraphStoreSpaceAssociatedWithProjectArgs = {
|
|
25707
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25708
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25709
|
+
id: Scalars['ID']['input'];
|
|
25710
|
+
sort?: InputMaybe<GraphStoreSpaceAssociatedWithProjectSortInput>;
|
|
25711
|
+
};
|
|
25712
|
+
export declare type GraphStoreSpaceAssociatedWithProjectInverseArgs = {
|
|
25713
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25714
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25715
|
+
id: Scalars['ID']['input'];
|
|
25716
|
+
sort?: InputMaybe<GraphStoreSpaceAssociatedWithProjectSortInput>;
|
|
25717
|
+
};
|
|
25398
25718
|
export declare type GraphStoreSprintAssociatedBuildInverseRelationshipArgs = {
|
|
25399
25719
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25400
25720
|
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
@@ -26677,6 +26997,20 @@ export declare type GraphStoreCreateProjectHasVersionRelationshipInput = {
|
|
|
26677
26997
|
to: Scalars['ID']['input'];
|
|
26678
26998
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
26679
26999
|
};
|
|
27000
|
+
export declare type GraphStoreCreateSpaceAssociatedWithProjectInput = {
|
|
27001
|
+
relationships: Array<GraphStoreCreateSpaceAssociatedWithProjectRelationshipInput>;
|
|
27002
|
+
};
|
|
27003
|
+
export declare type GraphStoreCreateSpaceAssociatedWithProjectPayload = Payload & {
|
|
27004
|
+
__typename?: 'GraphStoreCreateSpaceAssociatedWithProjectPayload';
|
|
27005
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27006
|
+
success: Scalars['Boolean']['output'];
|
|
27007
|
+
};
|
|
27008
|
+
export declare type GraphStoreCreateSpaceAssociatedWithProjectRelationshipInput = {
|
|
27009
|
+
from: Scalars['ID']['input'];
|
|
27010
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
27011
|
+
to: Scalars['ID']['input'];
|
|
27012
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27013
|
+
};
|
|
26680
27014
|
export declare type GraphStoreCreateSprintRetrospectivePageInput = {
|
|
26681
27015
|
relationships: Array<GraphStoreCreateSprintRetrospectivePageRelationshipInput>;
|
|
26682
27016
|
};
|
|
@@ -26983,6 +27317,18 @@ export declare type GraphStoreDeleteProjectHasVersionRelationshipInput = {
|
|
|
26983
27317
|
from: Scalars['ID']['input'];
|
|
26984
27318
|
to: Scalars['ID']['input'];
|
|
26985
27319
|
};
|
|
27320
|
+
export declare type GraphStoreDeleteSpaceAssociatedWithProjectInput = {
|
|
27321
|
+
relationships: Array<GraphStoreDeleteSpaceAssociatedWithProjectRelationshipInput>;
|
|
27322
|
+
};
|
|
27323
|
+
export declare type GraphStoreDeleteSpaceAssociatedWithProjectPayload = Payload & {
|
|
27324
|
+
__typename?: 'GraphStoreDeleteSpaceAssociatedWithProjectPayload';
|
|
27325
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27326
|
+
success: Scalars['Boolean']['output'];
|
|
27327
|
+
};
|
|
27328
|
+
export declare type GraphStoreDeleteSpaceAssociatedWithProjectRelationshipInput = {
|
|
27329
|
+
from: Scalars['ID']['input'];
|
|
27330
|
+
to: Scalars['ID']['input'];
|
|
27331
|
+
};
|
|
26986
27332
|
export declare type GraphStoreDeleteSprintRetrospectivePageInput = {
|
|
26987
27333
|
relationships: Array<GraphStoreDeleteSprintRetrospectivePageRelationshipInput>;
|
|
26988
27334
|
};
|
|
@@ -30677,6 +31023,7 @@ export declare type GraphStoreMutation = {
|
|
|
30677
31023
|
createProjectHasRelatedWorkWithProject?: Maybe<GraphStoreCreateProjectHasRelatedWorkWithProjectPayload>;
|
|
30678
31024
|
createProjectHasSharedVersionWith?: Maybe<GraphStoreCreateProjectHasSharedVersionWithPayload>;
|
|
30679
31025
|
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
31026
|
+
createSpaceAssociatedWithProject?: Maybe<GraphStoreCreateSpaceAssociatedWithProjectPayload>;
|
|
30680
31027
|
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
30681
31028
|
createSprintRetrospectiveWhiteboard?: Maybe<GraphStoreCreateSprintRetrospectiveWhiteboardPayload>;
|
|
30682
31029
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
@@ -30698,6 +31045,7 @@ export declare type GraphStoreMutation = {
|
|
|
30698
31045
|
deleteProjectHasRelatedWorkWithProject?: Maybe<GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload>;
|
|
30699
31046
|
deleteProjectHasSharedVersionWith?: Maybe<GraphStoreDeleteProjectHasSharedVersionWithPayload>;
|
|
30700
31047
|
deleteProjectHasVersion?: Maybe<GraphStoreDeleteProjectHasVersionPayload>;
|
|
31048
|
+
deleteSpaceAssociatedWithProject?: Maybe<GraphStoreDeleteSpaceAssociatedWithProjectPayload>;
|
|
30701
31049
|
deleteSprintRetrospectivePage?: Maybe<GraphStoreDeleteSprintRetrospectivePagePayload>;
|
|
30702
31050
|
deleteSprintRetrospectiveWhiteboard?: Maybe<GraphStoreDeleteSprintRetrospectiveWhiteboardPayload>;
|
|
30703
31051
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
@@ -30750,6 +31098,9 @@ export declare type GraphStoreMutationCreateProjectHasSharedVersionWithArgs = {
|
|
|
30750
31098
|
export declare type GraphStoreMutationCreateProjectHasVersionArgs = {
|
|
30751
31099
|
input?: InputMaybe<GraphStoreCreateProjectHasVersionInput>;
|
|
30752
31100
|
};
|
|
31101
|
+
export declare type GraphStoreMutationCreateSpaceAssociatedWithProjectArgs = {
|
|
31102
|
+
input?: InputMaybe<GraphStoreCreateSpaceAssociatedWithProjectInput>;
|
|
31103
|
+
};
|
|
30753
31104
|
export declare type GraphStoreMutationCreateSprintRetrospectivePageArgs = {
|
|
30754
31105
|
input?: InputMaybe<GraphStoreCreateSprintRetrospectivePageInput>;
|
|
30755
31106
|
};
|
|
@@ -30813,6 +31164,9 @@ export declare type GraphStoreMutationDeleteProjectHasSharedVersionWithArgs = {
|
|
|
30813
31164
|
export declare type GraphStoreMutationDeleteProjectHasVersionArgs = {
|
|
30814
31165
|
input?: InputMaybe<GraphStoreDeleteProjectHasVersionInput>;
|
|
30815
31166
|
};
|
|
31167
|
+
export declare type GraphStoreMutationDeleteSpaceAssociatedWithProjectArgs = {
|
|
31168
|
+
input?: InputMaybe<GraphStoreDeleteSpaceAssociatedWithProjectInput>;
|
|
31169
|
+
};
|
|
30816
31170
|
export declare type GraphStoreMutationDeleteSprintRetrospectivePageArgs = {
|
|
30817
31171
|
input?: InputMaybe<GraphStoreDeleteSprintRetrospectivePageInput>;
|
|
30818
31172
|
};
|
|
@@ -33274,6 +33628,38 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdg
|
|
|
33274
33628
|
};
|
|
33275
33629
|
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion = DevOpsPullRequestDetails;
|
|
33276
33630
|
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageUnion = ConfluencePage;
|
|
33631
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectConnection = HasPageInfo & HasTotal & {
|
|
33632
|
+
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectConnection';
|
|
33633
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectEdge>>>;
|
|
33634
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33635
|
+
pageInfo: PageInfo;
|
|
33636
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33637
|
+
};
|
|
33638
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectEdge = {
|
|
33639
|
+
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectEdge';
|
|
33640
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33641
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33642
|
+
id: Scalars['ID']['output'];
|
|
33643
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33644
|
+
node?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectUnion>;
|
|
33645
|
+
};
|
|
33646
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
33647
|
+
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection';
|
|
33648
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge>>>;
|
|
33649
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33650
|
+
pageInfo: PageInfo;
|
|
33651
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33652
|
+
};
|
|
33653
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge = {
|
|
33654
|
+
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge';
|
|
33655
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33656
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33657
|
+
id: Scalars['ID']['output'];
|
|
33658
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33659
|
+
node?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseUnion>;
|
|
33660
|
+
};
|
|
33661
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseUnion = ConfluenceSpace;
|
|
33662
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectUnion = JiraProject;
|
|
33277
33663
|
export declare type GraphStoreSimplifiedSprintAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
33278
33664
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedDeploymentConnection';
|
|
33279
33665
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentEdge>>>;
|
|
@@ -33734,6 +34120,12 @@ export declare type GraphStoreSortInput = {
|
|
|
33734
34120
|
direction: SortDirection;
|
|
33735
34121
|
priority: Scalars['Int']['input'];
|
|
33736
34122
|
};
|
|
34123
|
+
export declare type GraphStoreSpaceAssociatedWithProjectSortInput = {
|
|
34124
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
34125
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
34126
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34127
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34128
|
+
};
|
|
33737
34129
|
export declare enum GraphStoreSprintAssociatedBuildBuildState {
|
|
33738
34130
|
Cancelled = "CANCELLED",
|
|
33739
34131
|
Failed = "FAILED",
|
|
@@ -35064,11 +35456,13 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
35064
35456
|
export declare type HelpLayoutAnnouncementInput = {
|
|
35065
35457
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35066
35458
|
};
|
|
35067
|
-
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutEditorElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
35459
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
35068
35460
|
export declare type HelpLayoutAtomicElementInput = {
|
|
35069
35461
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
35462
|
+
connectInput?: InputMaybe<HelpLayoutConnectInput>;
|
|
35070
35463
|
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
35071
35464
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
35465
|
+
forgeInput?: InputMaybe<HelpLayoutForgeInput>;
|
|
35072
35466
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
35073
35467
|
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
35074
35468
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
@@ -35081,7 +35475,9 @@ export declare type HelpLayoutAtomicElementInput = {
|
|
|
35081
35475
|
};
|
|
35082
35476
|
export declare enum HelpLayoutAtomicElementKey {
|
|
35083
35477
|
Announcement = "ANNOUNCEMENT",
|
|
35478
|
+
Connect = "CONNECT",
|
|
35084
35479
|
Editor = "EDITOR",
|
|
35480
|
+
Forge = "FORGE",
|
|
35085
35481
|
Heading = "HEADING",
|
|
35086
35482
|
Hero = "HERO",
|
|
35087
35483
|
Image = "IMAGE",
|
|
@@ -35129,6 +35525,37 @@ export declare type HelpLayoutCompositeElementType = HelpLayoutElementType & {
|
|
|
35129
35525
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
35130
35526
|
key?: Maybe<HelpLayoutCompositeElementKey>;
|
|
35131
35527
|
};
|
|
35528
|
+
export declare type HelpLayoutConnectElement = HelpLayoutVisualEntity & Node & {
|
|
35529
|
+
__typename?: 'HelpLayoutConnectElement';
|
|
35530
|
+
connectElementPage: HelpLayoutConnectElementPages;
|
|
35531
|
+
connectElementType: HelpLayoutConnectElementType;
|
|
35532
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
35533
|
+
id: Scalars['ID']['output'];
|
|
35534
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
35535
|
+
};
|
|
35536
|
+
export declare enum HelpLayoutConnectElementPages {
|
|
35537
|
+
Approvals = "APPROVALS",
|
|
35538
|
+
CreateRequest = "CREATE_REQUEST",
|
|
35539
|
+
HelpCenter = "HELP_CENTER",
|
|
35540
|
+
MyRequest = "MY_REQUEST",
|
|
35541
|
+
Portal = "PORTAL",
|
|
35542
|
+
Profile = "PROFILE",
|
|
35543
|
+
ViewRequest = "VIEW_REQUEST"
|
|
35544
|
+
}
|
|
35545
|
+
export declare enum HelpLayoutConnectElementType {
|
|
35546
|
+
DetailsPanels = "detailsPanels",
|
|
35547
|
+
FooterPanels = "footerPanels",
|
|
35548
|
+
HeaderAndSubheaderPanels = "headerAndSubheaderPanels",
|
|
35549
|
+
HeaderPanels = "headerPanels",
|
|
35550
|
+
OptionPanels = "optionPanels",
|
|
35551
|
+
ProfilePagePanel = "profilePagePanel",
|
|
35552
|
+
PropertyPanels = "propertyPanels",
|
|
35553
|
+
RequestCreatePanel = "requestCreatePanel",
|
|
35554
|
+
SubheaderPanels = "subheaderPanels"
|
|
35555
|
+
}
|
|
35556
|
+
export declare type HelpLayoutConnectInput = {
|
|
35557
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35558
|
+
};
|
|
35132
35559
|
export declare type HelpLayoutCreatePayload = Payload & {
|
|
35133
35560
|
__typename?: 'HelpLayoutCreatePayload';
|
|
35134
35561
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -35150,15 +35577,17 @@ export declare type HelpLayoutEditorInput = {
|
|
|
35150
35577
|
adf: Scalars['String']['input'];
|
|
35151
35578
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35152
35579
|
};
|
|
35153
|
-
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutEditorElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
35580
|
+
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
35154
35581
|
export declare enum HelpLayoutElementCategory {
|
|
35155
35582
|
Basic = "BASIC",
|
|
35156
35583
|
Navigation = "NAVIGATION"
|
|
35157
35584
|
}
|
|
35158
35585
|
export declare type HelpLayoutElementInput = {
|
|
35159
35586
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
35587
|
+
connectInput?: InputMaybe<HelpLayoutConnectInput>;
|
|
35160
35588
|
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
35161
35589
|
elementTypeKey: HelpLayoutElementKey;
|
|
35590
|
+
forgeInput?: InputMaybe<HelpLayoutForgeInput>;
|
|
35162
35591
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
35163
35592
|
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
35164
35593
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
@@ -35172,7 +35601,9 @@ export declare type HelpLayoutElementInput = {
|
|
|
35172
35601
|
};
|
|
35173
35602
|
export declare enum HelpLayoutElementKey {
|
|
35174
35603
|
Announcement = "ANNOUNCEMENT",
|
|
35604
|
+
Connect = "CONNECT",
|
|
35175
35605
|
Editor = "EDITOR",
|
|
35606
|
+
Forge = "FORGE",
|
|
35176
35607
|
Heading = "HEADING",
|
|
35177
35608
|
Hero = "HERO",
|
|
35178
35609
|
Image = "IMAGE",
|
|
@@ -35192,6 +35623,30 @@ export declare type HelpLayoutElementType = {
|
|
|
35192
35623
|
export declare type HelpLayoutFilter = {
|
|
35193
35624
|
isEditMode?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35194
35625
|
};
|
|
35626
|
+
export declare type HelpLayoutForgeElement = HelpLayoutVisualEntity & Node & {
|
|
35627
|
+
__typename?: 'HelpLayoutForgeElement';
|
|
35628
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
35629
|
+
forgeElementPage: HelpLayoutForgeElementPages;
|
|
35630
|
+
forgeElementType: HelpLayoutForgeElementType;
|
|
35631
|
+
id: Scalars['ID']['output'];
|
|
35632
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
35633
|
+
};
|
|
35634
|
+
export declare enum HelpLayoutForgeElementPages {
|
|
35635
|
+
Approvals = "approvals",
|
|
35636
|
+
CreateRequest = "create_request",
|
|
35637
|
+
HelpCenter = "help_center",
|
|
35638
|
+
MyRequests = "my_requests",
|
|
35639
|
+
Portal = "portal",
|
|
35640
|
+
Profile = "profile",
|
|
35641
|
+
ViewRequest = "view_request"
|
|
35642
|
+
}
|
|
35643
|
+
export declare enum HelpLayoutForgeElementType {
|
|
35644
|
+
Footer = "FOOTER",
|
|
35645
|
+
HeaderAndSubheader = "HEADER_AND_SUBHEADER"
|
|
35646
|
+
}
|
|
35647
|
+
export declare type HelpLayoutForgeInput = {
|
|
35648
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35649
|
+
};
|
|
35195
35650
|
export declare type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
35196
35651
|
__typename?: 'HelpLayoutHeadingAtomicElement';
|
|
35197
35652
|
config?: Maybe<HelpLayoutHeadingAtomicElementConfig>;
|
|
@@ -35483,6 +35938,7 @@ export declare type HelpLayoutTopicItem = {
|
|
|
35483
35938
|
__typename?: 'HelpLayoutTopicItem';
|
|
35484
35939
|
displayLink?: Maybe<Scalars['String']['output']>;
|
|
35485
35940
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
35941
|
+
helpObjectType?: Maybe<Scalars['String']['output']>;
|
|
35486
35942
|
logo?: Maybe<Scalars['String']['output']>;
|
|
35487
35943
|
title?: Maybe<Scalars['String']['output']>;
|
|
35488
35944
|
};
|
|
@@ -38707,6 +39163,92 @@ export declare type JiraComponentsFieldPayload = Payload & {
|
|
|
38707
39163
|
field?: Maybe<JiraComponentsField>;
|
|
38708
39164
|
success: Scalars['Boolean']['output'];
|
|
38709
39165
|
};
|
|
39166
|
+
export declare enum JiraConfigFieldType {
|
|
39167
|
+
CustomCascadingSelect = "CUSTOM_CASCADING_SELECT",
|
|
39168
|
+
CustomDatetime = "CUSTOM_DATETIME",
|
|
39169
|
+
CustomDatePicker = "CUSTOM_DATE_PICKER",
|
|
39170
|
+
CustomFloat = "CUSTOM_FLOAT",
|
|
39171
|
+
CustomGroupPicker = "CUSTOM_GROUP_PICKER",
|
|
39172
|
+
CustomImportId = "CUSTOM_IMPORT_ID",
|
|
39173
|
+
CustomLabels = "CUSTOM_LABELS",
|
|
39174
|
+
CustomMultiCheckboxes = "CUSTOM_MULTI_CHECKBOXES",
|
|
39175
|
+
CustomMultiGroupPicker = "CUSTOM_MULTI_GROUP_PICKER",
|
|
39176
|
+
CustomMultiSelect = "CUSTOM_MULTI_SELECT",
|
|
39177
|
+
CustomMultiUserPicker = "CUSTOM_MULTI_USER_PICKER",
|
|
39178
|
+
CustomMultiVersion = "CUSTOM_MULTI_VERSION",
|
|
39179
|
+
CustomProject = "CUSTOM_PROJECT",
|
|
39180
|
+
CustomRadioButtons = "CUSTOM_RADIO_BUTTONS",
|
|
39181
|
+
CustomReadonlyField = "CUSTOM_READONLY_FIELD",
|
|
39182
|
+
CustomSelect = "CUSTOM_SELECT",
|
|
39183
|
+
CustomTextarea = "CUSTOM_TEXTAREA",
|
|
39184
|
+
CustomTextField = "CUSTOM_TEXT_FIELD",
|
|
39185
|
+
CustomUrl = "CUSTOM_URL",
|
|
39186
|
+
CustomUserPicker = "CUSTOM_USER_PICKER",
|
|
39187
|
+
CustomVersion = "CUSTOM_VERSION",
|
|
39188
|
+
ServicedeskApprovals = "SERVICEDESK_APPROVALS",
|
|
39189
|
+
ServicedeskCmdbField = "SERVICEDESK_CMDB_FIELD",
|
|
39190
|
+
ServicedeskCustomerOrganizations = "SERVICEDESK_CUSTOMER_ORGANIZATIONS",
|
|
39191
|
+
ServicedeskRequestFeedback = "SERVICEDESK_REQUEST_FEEDBACK",
|
|
39192
|
+
ServicedeskRequestFeedbackDate = "SERVICEDESK_REQUEST_FEEDBACK_DATE",
|
|
39193
|
+
ServicedeskRequestLanguage = "SERVICEDESK_REQUEST_LANGUAGE",
|
|
39194
|
+
ServicedeskRequestParticipants = "SERVICEDESK_REQUEST_PARTICIPANTS",
|
|
39195
|
+
ServicedeskSlaField = "SERVICEDESK_SLA_FIELD",
|
|
39196
|
+
ServicedeskVpOrigin = "SERVICEDESK_VP_ORIGIN",
|
|
39197
|
+
SoftwareEpicColor = "SOFTWARE_EPIC_COLOR",
|
|
39198
|
+
SoftwareEpicIssueColor = "SOFTWARE_EPIC_ISSUE_COLOR",
|
|
39199
|
+
SoftwareEpicLabel = "SOFTWARE_EPIC_LABEL",
|
|
39200
|
+
SoftwareEpicLexoRank = "SOFTWARE_EPIC_LEXO_RANK",
|
|
39201
|
+
SoftwareEpicLink = "SOFTWARE_EPIC_LINK",
|
|
39202
|
+
SoftwareEpicSprint = "SOFTWARE_EPIC_SPRINT",
|
|
39203
|
+
SoftwareEpicStatus = "SOFTWARE_EPIC_STATUS",
|
|
39204
|
+
StandardAffectedVersions = "STANDARD_AFFECTED_VERSIONS",
|
|
39205
|
+
StandardAggregateProgress = "STANDARD_AGGREGATE_PROGRESS",
|
|
39206
|
+
StandardAggregateTimeEstimate = "STANDARD_AGGREGATE_TIME_ESTIMATE",
|
|
39207
|
+
StandardAggregateTimeOriginalEstimate = "STANDARD_AGGREGATE_TIME_ORIGINAL_ESTIMATE",
|
|
39208
|
+
StandardAggregateTimeSpent = "STANDARD_AGGREGATE_TIME_SPENT",
|
|
39209
|
+
StandardAssignee = "STANDARD_ASSIGNEE",
|
|
39210
|
+
StandardAttachment = "STANDARD_ATTACHMENT",
|
|
39211
|
+
StandardComment = "STANDARD_COMMENT",
|
|
39212
|
+
StandardComponents = "STANDARD_COMPONENTS",
|
|
39213
|
+
StandardCreated = "STANDARD_CREATED",
|
|
39214
|
+
StandardCreator = "STANDARD_CREATOR",
|
|
39215
|
+
StandardDescription = "STANDARD_DESCRIPTION",
|
|
39216
|
+
StandardDueDate = "STANDARD_DUE_DATE",
|
|
39217
|
+
StandardEnvironment = "STANDARD_ENVIRONMENT",
|
|
39218
|
+
StandardFixForVersions = "STANDARD_FIX_FOR_VERSIONS",
|
|
39219
|
+
StandardFormToken = "STANDARD_FORM_TOKEN",
|
|
39220
|
+
StandardIssueKey = "STANDARD_ISSUE_KEY",
|
|
39221
|
+
StandardIssueLinks = "STANDARD_ISSUE_LINKS",
|
|
39222
|
+
StandardIssueNumber = "STANDARD_ISSUE_NUMBER",
|
|
39223
|
+
StandardIssueType = "STANDARD_ISSUE_TYPE",
|
|
39224
|
+
StandardLabels = "STANDARD_LABELS",
|
|
39225
|
+
StandardLastViewed = "STANDARD_LAST_VIEWED",
|
|
39226
|
+
StandardParent = "STANDARD_PARENT",
|
|
39227
|
+
StandardPriority = "STANDARD_PRIORITY",
|
|
39228
|
+
StandardProgress = "STANDARD_PROGRESS",
|
|
39229
|
+
StandardProject = "STANDARD_PROJECT",
|
|
39230
|
+
StandardProjectKey = "STANDARD_PROJECT_KEY",
|
|
39231
|
+
StandardReporter = "STANDARD_REPORTER",
|
|
39232
|
+
StandardResolution = "STANDARD_RESOLUTION",
|
|
39233
|
+
StandardResolutionDate = "STANDARD_RESOLUTION_DATE",
|
|
39234
|
+
StandardSecurity = "STANDARD_SECURITY",
|
|
39235
|
+
StandardStatus = "STANDARD_STATUS",
|
|
39236
|
+
StandardSubtasks = "STANDARD_SUBTASKS",
|
|
39237
|
+
StandardSummary = "STANDARD_SUMMARY",
|
|
39238
|
+
StandardThumbnail = "STANDARD_THUMBNAIL",
|
|
39239
|
+
StandardTimetracking = "STANDARD_TIMETRACKING",
|
|
39240
|
+
StandardTimeEstimate = "STANDARD_TIME_ESTIMATE",
|
|
39241
|
+
StandardTimeOriginalEstimate = "STANDARD_TIME_ORIGINAL_ESTIMATE",
|
|
39242
|
+
StandardTimeSpent = "STANDARD_TIME_SPENT",
|
|
39243
|
+
StandardUpdated = "STANDARD_UPDATED",
|
|
39244
|
+
StandardVoters = "STANDARD_VOTERS",
|
|
39245
|
+
StandardVotes = "STANDARD_VOTES",
|
|
39246
|
+
StandardWatchers = "STANDARD_WATCHERS",
|
|
39247
|
+
StandardWatches = "STANDARD_WATCHES",
|
|
39248
|
+
StandardWorklog = "STANDARD_WORKLOG",
|
|
39249
|
+
StandardWorkratio = "STANDARD_WORKRATIO",
|
|
39250
|
+
Unsupported = "UNSUPPORTED"
|
|
39251
|
+
}
|
|
38710
39252
|
export declare type JiraConfigState = {
|
|
38711
39253
|
__typename?: 'JiraConfigState';
|
|
38712
39254
|
appId: Scalars['ID']['output'];
|
|
@@ -38851,7 +39393,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
38851
39393
|
type: Scalars['String']['output'];
|
|
38852
39394
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38853
39395
|
};
|
|
38854
|
-
export declare type JiraConnectSingleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39396
|
+
export declare type JiraConnectSingleSelectField = JiraHasSelectableValueOptions & JiraHasSingleSelectedValue & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38855
39397
|
__typename?: 'JiraConnectSingleSelectField';
|
|
38856
39398
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
38857
39399
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -38863,6 +39405,8 @@ export declare type JiraConnectSingleSelectField = JiraIssueField & JiraIssueFie
|
|
|
38863
39405
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
38864
39406
|
name: Scalars['String']['output'];
|
|
38865
39407
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
39408
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
39409
|
+
selectedValue?: Maybe<JiraSelectableValue>;
|
|
38866
39410
|
type: Scalars['String']['output'];
|
|
38867
39411
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38868
39412
|
};
|
|
@@ -38873,6 +39417,14 @@ export declare type JiraConnectSingleSelectFieldFieldOptionsArgs = {
|
|
|
38873
39417
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38874
39418
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38875
39419
|
};
|
|
39420
|
+
export declare type JiraConnectSingleSelectFieldSelectableValueOptionsArgs = {
|
|
39421
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39422
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
39423
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
39424
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39425
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39426
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
39427
|
+
};
|
|
38876
39428
|
export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38877
39429
|
__typename?: 'JiraConnectTextField';
|
|
38878
39430
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -38948,8 +39500,8 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
38948
39500
|
};
|
|
38949
39501
|
export declare type JiraCreateBoardFieldInput = {
|
|
38950
39502
|
issueTypes?: InputMaybe<Array<JiraIssueTypeInput>>;
|
|
38951
|
-
labels?: InputMaybe<Array<
|
|
38952
|
-
teams?: InputMaybe<Array<
|
|
39503
|
+
labels?: InputMaybe<Array<JiraLabelsInput>>;
|
|
39504
|
+
teams?: InputMaybe<Array<JiraAtlassianTeamInput>>;
|
|
38953
39505
|
};
|
|
38954
39506
|
export declare type JiraCreateBoardInput = {
|
|
38955
39507
|
createBoardSource: JiraCreateBoardSource;
|
|
@@ -39847,6 +40399,10 @@ export declare type JiraEstimate = {
|
|
|
39847
40399
|
export declare type JiraEstimateInput = {
|
|
39848
40400
|
timeInSeconds: Scalars['Long']['input'];
|
|
39849
40401
|
};
|
|
40402
|
+
export declare type JiraExtensionRenderingContextInput = {
|
|
40403
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
40404
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
40405
|
+
};
|
|
39850
40406
|
export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
39851
40407
|
__typename?: 'JiraFallbackField';
|
|
39852
40408
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -39918,6 +40474,26 @@ export declare type JiraFieldConfig = {
|
|
|
39918
40474
|
isRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
39919
40475
|
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
39920
40476
|
};
|
|
40477
|
+
export declare type JiraFieldConfigConnection = {
|
|
40478
|
+
__typename?: 'JiraFieldConfigConnection';
|
|
40479
|
+
edges?: Maybe<Array<JiraFieldConfigEdge>>;
|
|
40480
|
+
nodes?: Maybe<Array<JiraIssueFieldConfig>>;
|
|
40481
|
+
pageInfo?: Maybe<PageInfo>;
|
|
40482
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
40483
|
+
};
|
|
40484
|
+
export declare type JiraFieldConfigEdge = {
|
|
40485
|
+
__typename?: 'JiraFieldConfigEdge';
|
|
40486
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40487
|
+
node?: Maybe<JiraIssueFieldConfig>;
|
|
40488
|
+
};
|
|
40489
|
+
export declare type JiraFieldConfigFilterInput = {
|
|
40490
|
+
aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40491
|
+
cloudId: Scalars['ID']['input'];
|
|
40492
|
+
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40493
|
+
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
40494
|
+
projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40495
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
40496
|
+
};
|
|
39921
40497
|
export declare type JiraFieldNonEditableReason = {
|
|
39922
40498
|
__typename?: 'JiraFieldNonEditableReason';
|
|
39923
40499
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -40073,6 +40649,20 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
40073
40649
|
type: Scalars['String']['output'];
|
|
40074
40650
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
40075
40651
|
};
|
|
40652
|
+
export declare enum JiraForgeEnvironmentType {
|
|
40653
|
+
Development = "DEVELOPMENT",
|
|
40654
|
+
Production = "PRODUCTION",
|
|
40655
|
+
Staging = "STAGING"
|
|
40656
|
+
}
|
|
40657
|
+
export declare type JiraForgeExtension = {
|
|
40658
|
+
__typename?: 'JiraForgeExtension';
|
|
40659
|
+
environmentKey: Scalars['String']['output'];
|
|
40660
|
+
environmentType: JiraForgeEnvironmentType;
|
|
40661
|
+
hiddenBy?: Maybe<JiraVisibilityControlMechanism>;
|
|
40662
|
+
id: Scalars['ID']['output'];
|
|
40663
|
+
properties: Scalars['JSON']['output'];
|
|
40664
|
+
type: Scalars['String']['output'];
|
|
40665
|
+
};
|
|
40076
40666
|
export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40077
40667
|
__typename?: 'JiraForgeGroupField';
|
|
40078
40668
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40164,6 +40754,16 @@ export declare type JiraForgeObjectFieldPayload = Payload & {
|
|
|
40164
40754
|
field?: Maybe<JiraForgeObjectField>;
|
|
40165
40755
|
success: Scalars['Boolean']['output'];
|
|
40166
40756
|
};
|
|
40757
|
+
export declare type JiraForgeQuery = {
|
|
40758
|
+
__typename?: 'JiraForgeQuery';
|
|
40759
|
+
extensions?: Maybe<Array<JiraForgeExtension>>;
|
|
40760
|
+
};
|
|
40761
|
+
export declare type JiraForgeQueryExtensionsArgs = {
|
|
40762
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
40763
|
+
context?: InputMaybe<JiraExtensionRenderingContextInput>;
|
|
40764
|
+
includeHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40765
|
+
types: Array<Scalars['String']['input']>;
|
|
40766
|
+
};
|
|
40167
40767
|
export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40168
40768
|
__typename?: 'JiraForgeStringField';
|
|
40169
40769
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40975,6 +41575,22 @@ export declare type JiraIssueConnectionPageCursorsArgs = {
|
|
|
40975
41575
|
maxCursors: Scalars['Int']['input'];
|
|
40976
41576
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
40977
41577
|
};
|
|
41578
|
+
export declare type JiraIssueCreateInput = {
|
|
41579
|
+
fields: JiraIssueFieldsInput;
|
|
41580
|
+
issueTypeId: Scalars['ID']['input'];
|
|
41581
|
+
projectId: Scalars['ID']['input'];
|
|
41582
|
+
rank?: InputMaybe<JiraIssueCreateRankInput>;
|
|
41583
|
+
};
|
|
41584
|
+
export declare type JiraIssueCreatePayload = Payload & {
|
|
41585
|
+
__typename?: 'JiraIssueCreatePayload';
|
|
41586
|
+
errors?: Maybe<Array<MutationError>>;
|
|
41587
|
+
issue?: Maybe<JiraIssue>;
|
|
41588
|
+
success: Scalars['Boolean']['output'];
|
|
41589
|
+
};
|
|
41590
|
+
export declare type JiraIssueCreateRankInput = {
|
|
41591
|
+
afterIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
41592
|
+
beforeIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
41593
|
+
};
|
|
40978
41594
|
export declare type JiraIssueCreatedStreamHubPayload = {
|
|
40979
41595
|
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
40980
41596
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41046,6 +41662,56 @@ export declare type JiraIssueEdge = {
|
|
|
41046
41662
|
cursor: Scalars['String']['output'];
|
|
41047
41663
|
node?: Maybe<JiraIssue>;
|
|
41048
41664
|
};
|
|
41665
|
+
export declare type JiraIssueExportError = {
|
|
41666
|
+
__typename?: 'JiraIssueExportError';
|
|
41667
|
+
displayMessage?: Maybe<Scalars['String']['output']>;
|
|
41668
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
41669
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
41670
|
+
};
|
|
41671
|
+
export declare type JiraIssueExportEvent = JiraIssueExportTaskCompleted | JiraIssueExportTaskProgress | JiraIssueExportTaskSubmissionFailed | JiraIssueExportTaskSubmitted | JiraIssueExportTaskTerminated;
|
|
41672
|
+
export declare type JiraIssueExportInput = {
|
|
41673
|
+
cloudId: Scalars['ID']['input'];
|
|
41674
|
+
exportType?: InputMaybe<JiraIssueExportType>;
|
|
41675
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
41676
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
41677
|
+
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
41678
|
+
modified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41679
|
+
};
|
|
41680
|
+
export declare type JiraIssueExportTask = {
|
|
41681
|
+
__typename?: 'JiraIssueExportTask';
|
|
41682
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
41683
|
+
};
|
|
41684
|
+
export declare type JiraIssueExportTaskCompleted = {
|
|
41685
|
+
__typename?: 'JiraIssueExportTaskCompleted';
|
|
41686
|
+
task?: Maybe<JiraIssueExportTask>;
|
|
41687
|
+
};
|
|
41688
|
+
export declare type JiraIssueExportTaskProgress = {
|
|
41689
|
+
__typename?: 'JiraIssueExportTaskProgress';
|
|
41690
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
41691
|
+
progress?: Maybe<Scalars['Int']['output']>;
|
|
41692
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
41693
|
+
status?: Maybe<JiraLongRunningTaskStatus>;
|
|
41694
|
+
task?: Maybe<JiraIssueExportTask>;
|
|
41695
|
+
};
|
|
41696
|
+
export declare type JiraIssueExportTaskSubmissionFailed = {
|
|
41697
|
+
__typename?: 'JiraIssueExportTaskSubmissionFailed';
|
|
41698
|
+
error?: Maybe<JiraIssueExportError>;
|
|
41699
|
+
};
|
|
41700
|
+
export declare type JiraIssueExportTaskSubmitted = {
|
|
41701
|
+
__typename?: 'JiraIssueExportTaskSubmitted';
|
|
41702
|
+
task?: Maybe<JiraIssueExportTask>;
|
|
41703
|
+
};
|
|
41704
|
+
export declare type JiraIssueExportTaskTerminated = {
|
|
41705
|
+
__typename?: 'JiraIssueExportTaskTerminated';
|
|
41706
|
+
error?: Maybe<JiraIssueExportError>;
|
|
41707
|
+
taskProgress?: Maybe<JiraIssueExportTaskProgress>;
|
|
41708
|
+
};
|
|
41709
|
+
export declare enum JiraIssueExportType {
|
|
41710
|
+
CsvAllFields = "CSV_ALL_FIELDS",
|
|
41711
|
+
CsvCurrentFields = "CSV_CURRENT_FIELDS",
|
|
41712
|
+
CsvWithBomAllFields = "CSV_WITH_BOM_ALL_FIELDS",
|
|
41713
|
+
CsvWithBomCurrentFields = "CSV_WITH_BOM_CURRENT_FIELDS"
|
|
41714
|
+
}
|
|
41049
41715
|
export declare type JiraIssueField = {
|
|
41050
41716
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
41051
41717
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -41055,6 +41721,17 @@ export declare type JiraIssueField = {
|
|
|
41055
41721
|
name: Scalars['String']['output'];
|
|
41056
41722
|
type: Scalars['String']['output'];
|
|
41057
41723
|
};
|
|
41724
|
+
export declare type JiraIssueFieldConfig = Node & {
|
|
41725
|
+
__typename?: 'JiraIssueFieldConfig';
|
|
41726
|
+
customId?: Maybe<Scalars['Int']['output']>;
|
|
41727
|
+
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
41728
|
+
fieldId: Scalars['String']['output'];
|
|
41729
|
+
id: Scalars['ID']['output'];
|
|
41730
|
+
isCustom: Scalars['Boolean']['output'];
|
|
41731
|
+
jqlClauseNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
41732
|
+
name: Scalars['String']['output'];
|
|
41733
|
+
type: JiraConfigFieldType;
|
|
41734
|
+
};
|
|
41058
41735
|
export declare type JiraIssueFieldConfiguration = {
|
|
41059
41736
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41060
41737
|
};
|
|
@@ -41689,6 +42366,8 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
41689
42366
|
JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
|
|
41690
42367
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
41691
42368
|
JiraConnectNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
42369
|
+
JiraConnectSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
42370
|
+
JiraConnectTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
41692
42371
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
41693
42372
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
41694
42373
|
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
@@ -42892,6 +43571,7 @@ export declare type JiraMutation = {
|
|
|
42892
43571
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
42893
43572
|
createCustomBackground?: Maybe<JiraCreateCustomBackgroundPayload>;
|
|
42894
43573
|
createFormattingRule?: Maybe<JiraCreateFormattingRulePayload>;
|
|
43574
|
+
createIssue?: Maybe<JiraIssueCreatePayload>;
|
|
42895
43575
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
42896
43576
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
42897
43577
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
@@ -43085,6 +43765,9 @@ export declare type JiraMutationCreateCustomBackgroundArgs = {
|
|
|
43085
43765
|
export declare type JiraMutationCreateFormattingRuleArgs = {
|
|
43086
43766
|
input: JiraCreateFormattingRuleInput;
|
|
43087
43767
|
};
|
|
43768
|
+
export declare type JiraMutationCreateIssueArgs = {
|
|
43769
|
+
input: JiraIssueCreateInput;
|
|
43770
|
+
};
|
|
43088
43771
|
export declare type JiraMutationCreateIssueLinksArgs = {
|
|
43089
43772
|
cloudId: Scalars['ID']['input'];
|
|
43090
43773
|
input: JiraBulkCreateIssueLinksInput;
|
|
@@ -45023,6 +45706,7 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
45023
45706
|
export declare enum JiraProjectPermissionType {
|
|
45024
45707
|
AddComments = "ADD_COMMENTS",
|
|
45025
45708
|
AdministerProjects = "ADMINISTER_PROJECTS",
|
|
45709
|
+
ArchiveIssues = "ARCHIVE_ISSUES",
|
|
45026
45710
|
AssignableUser = "ASSIGNABLE_USER",
|
|
45027
45711
|
AssignIssues = "ASSIGN_ISSUES",
|
|
45028
45712
|
BrowseProjects = "BROWSE_PROJECTS",
|
|
@@ -45051,6 +45735,7 @@ export declare enum JiraProjectPermissionType {
|
|
|
45051
45735
|
ScheduleIssues = "SCHEDULE_ISSUES",
|
|
45052
45736
|
SetIssueSecurity = "SET_ISSUE_SECURITY",
|
|
45053
45737
|
TransitionIssues = "TRANSITION_ISSUES",
|
|
45738
|
+
UnarchiveIssues = "UNARCHIVE_ISSUES",
|
|
45054
45739
|
ViewDevTools = "VIEW_DEV_TOOLS",
|
|
45055
45740
|
ViewReadonlyWorkflow = "VIEW_READONLY_WORKFLOW",
|
|
45056
45741
|
ViewVotersAndWatchers = "VIEW_VOTERS_AND_WATCHERS",
|
|
@@ -45232,6 +45917,7 @@ export declare type JiraQuery = {
|
|
|
45232
45917
|
filter?: Maybe<JiraFilter>;
|
|
45233
45918
|
filters?: Maybe<Array<Maybe<JiraFilter>>>;
|
|
45234
45919
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
45920
|
+
forge: JiraForgeQuery;
|
|
45235
45921
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
45236
45922
|
getArchivedIssues?: Maybe<JiraArchivedIssueConnection>;
|
|
45237
45923
|
getArchivedIssuesFilterOptions?: Maybe<JiraArchivedIssuesFilterOptions>;
|
|
@@ -45248,6 +45934,7 @@ export declare type JiraQuery = {
|
|
|
45248
45934
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
45249
45935
|
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
45250
45936
|
hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
45937
|
+
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
45251
45938
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
45252
45939
|
integerUserProperty?: Maybe<JiraEntityPropertyInt>;
|
|
45253
45940
|
isAiEnabledForIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -45281,6 +45968,7 @@ export declare type JiraQuery = {
|
|
|
45281
45968
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
45282
45969
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
45283
45970
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
45971
|
+
jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
|
|
45284
45972
|
jiraProject?: Maybe<JiraProject>;
|
|
45285
45973
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
45286
45974
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
@@ -45568,6 +46256,7 @@ export declare type JiraQueryGetArchivedIssuesFilterOptionsArgs = {
|
|
|
45568
46256
|
};
|
|
45569
46257
|
export declare type JiraQueryGetArchivedIssuesForProjectArgs = {
|
|
45570
46258
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46259
|
+
cloudId: Scalars['ID']['input'];
|
|
45571
46260
|
filterBy?: InputMaybe<JiraArchivedIssuesFilterInput>;
|
|
45572
46261
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45573
46262
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -45635,6 +46324,10 @@ export declare type JiraQueryHasGlobalPermissionArgs = {
|
|
|
45635
46324
|
cloudId: Scalars['ID']['input'];
|
|
45636
46325
|
key: JiraGlobalPermissionType;
|
|
45637
46326
|
};
|
|
46327
|
+
export declare type JiraQueryHasProjectPermissionArgs = {
|
|
46328
|
+
permission: JiraProjectPermissionType;
|
|
46329
|
+
projectId: Scalars['ID']['input'];
|
|
46330
|
+
};
|
|
45638
46331
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
45639
46332
|
projectId: Scalars['ID']['input'];
|
|
45640
46333
|
};
|
|
@@ -45776,6 +46469,13 @@ export declare type JiraQueryJiraCalendarArgs = {
|
|
|
45776
46469
|
export declare type JiraQueryJiraFetchBulkOperationDetailsArgs = {
|
|
45777
46470
|
issueIds: Array<Scalars['ID']['input']>;
|
|
45778
46471
|
};
|
|
46472
|
+
export declare type JiraQueryJiraFieldConfigsArgs = {
|
|
46473
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46474
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
46475
|
+
filter?: InputMaybe<JiraFieldConfigFilterInput>;
|
|
46476
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46477
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
46478
|
+
};
|
|
45779
46479
|
export declare type JiraQueryJiraProjectArgs = {
|
|
45780
46480
|
id: Scalars['ID']['input'];
|
|
45781
46481
|
};
|
|
@@ -48534,11 +49234,13 @@ export declare type JiraSubmitBulkOperationProgress = Node & {
|
|
|
48534
49234
|
};
|
|
48535
49235
|
export declare type JiraSubscription = {
|
|
48536
49236
|
__typename?: 'JiraSubscription';
|
|
49237
|
+
bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
|
|
48537
49238
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
48538
49239
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
48539
49240
|
onAutodevJobUpdated?: Maybe<JiraAutodevJobConnection>;
|
|
48540
49241
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
48541
49242
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
49243
|
+
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
48542
49244
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
48543
49245
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
48544
49246
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
@@ -48547,6 +49249,10 @@ export declare type JiraSubscription = {
|
|
|
48547
49249
|
onProjectCleanupTaskStatusChange?: Maybe<JiraProjectCleanupTaskStatus>;
|
|
48548
49250
|
onSuggestedChildIssue?: Maybe<JiraOnSuggestedChildIssueResult>;
|
|
48549
49251
|
};
|
|
49252
|
+
export declare type JiraSubscriptionBulkOperationProgressSubscriptionArgs = {
|
|
49253
|
+
cloudId: Scalars['ID']['input'];
|
|
49254
|
+
taskId: Scalars['ID']['input'];
|
|
49255
|
+
};
|
|
48550
49256
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
48551
49257
|
cloudId: Scalars['ID']['input'];
|
|
48552
49258
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -48567,6 +49273,9 @@ export declare type JiraSubscriptionOnIssueDeletedByProjectArgs = {
|
|
|
48567
49273
|
cloudId: Scalars['ID']['input'];
|
|
48568
49274
|
projectId: Scalars['String']['input'];
|
|
48569
49275
|
};
|
|
49276
|
+
export declare type JiraSubscriptionOnIssueExportedArgs = {
|
|
49277
|
+
input: JiraIssueExportInput;
|
|
49278
|
+
};
|
|
48570
49279
|
export declare type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
|
|
48571
49280
|
cloudId: Scalars['ID']['input'];
|
|
48572
49281
|
projectId: Scalars['String']['input'];
|
|
@@ -49430,8 +50139,10 @@ export declare type JiraUserPreferences = {
|
|
|
49430
50139
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
49431
50140
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
49432
50141
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
50142
|
+
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
49433
50143
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
49434
50144
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
50145
|
+
issueViewPinnedFieldsWithDefault?: Maybe<Scalars['String']['output']>;
|
|
49435
50146
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
49436
50147
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
49437
50148
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
@@ -49440,6 +50151,9 @@ export declare type JiraUserPreferences = {
|
|
|
49440
50151
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
49441
50152
|
projectKey: Scalars['String']['input'];
|
|
49442
50153
|
};
|
|
50154
|
+
export declare type JiraUserPreferencesIssueViewPinnedFieldsWithDefaultArgs = {
|
|
50155
|
+
projectKey: Scalars['String']['input'];
|
|
50156
|
+
};
|
|
49443
50157
|
export declare type JiraUserPreferencesMutation = {
|
|
49444
50158
|
__typename?: 'JiraUserPreferencesMutation';
|
|
49445
50159
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
@@ -50005,6 +50719,10 @@ export declare type JiraViewScopeInput = {
|
|
|
50005
50719
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
50006
50720
|
projectKeys?: InputMaybe<JiraProjectKeysInput>;
|
|
50007
50721
|
};
|
|
50722
|
+
export declare enum JiraVisibilityControlMechanism {
|
|
50723
|
+
AppAccessRules = "AppAccessRules",
|
|
50724
|
+
DisplayConditions = "DisplayConditions"
|
|
50725
|
+
}
|
|
50008
50726
|
export declare type JiraVote = {
|
|
50009
50727
|
__typename?: 'JiraVote';
|
|
50010
50728
|
count?: Maybe<Scalars['Long']['output']>;
|
|
@@ -51404,12 +52122,13 @@ export declare type KnowledgeDiscoveryConfluenceSpace = KnowledgeDiscoveryEntity
|
|
|
51404
52122
|
id: Scalars['ID']['output'];
|
|
51405
52123
|
};
|
|
51406
52124
|
export declare type KnowledgeDiscoveryCreateAdminhubBookmarkInput = {
|
|
52125
|
+
cloudId: Scalars['ID']['input'];
|
|
51407
52126
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
51408
52127
|
keyPhrases?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
51409
52128
|
orgId: Scalars['String']['input'];
|
|
51410
52129
|
title: Scalars['String']['input'];
|
|
51411
52130
|
url: Scalars['String']['input'];
|
|
51412
|
-
workspaceId
|
|
52131
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
51413
52132
|
};
|
|
51414
52133
|
export declare type KnowledgeDiscoveryCreateAdminhubBookmarkPayload = Payload & {
|
|
51415
52134
|
__typename?: 'KnowledgeDiscoveryCreateAdminhubBookmarkPayload';
|
|
@@ -51470,9 +52189,10 @@ export declare type KnowledgeDiscoveryDeleteBookmarkInput = {
|
|
|
51470
52189
|
url: Scalars['String']['input'];
|
|
51471
52190
|
};
|
|
51472
52191
|
export declare type KnowledgeDiscoveryDeleteBookmarksInput = {
|
|
52192
|
+
cloudId: Scalars['ID']['input'];
|
|
51473
52193
|
deleteRequests?: InputMaybe<Array<KnowledgeDiscoveryDeleteBookmarkInput>>;
|
|
51474
52194
|
orgId: Scalars['ID']['input'];
|
|
51475
|
-
workspaceId
|
|
52195
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
51476
52196
|
};
|
|
51477
52197
|
export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
51478
52198
|
__typename?: 'KnowledgeDiscoveryDeleteBookmarksPayload';
|
|
@@ -51563,9 +52283,10 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
51563
52283
|
};
|
|
51564
52284
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
51565
52285
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52286
|
+
cloudId: Scalars['ID']['input'];
|
|
51566
52287
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51567
52288
|
orgId: Scalars['String']['input'];
|
|
51568
|
-
workspaceId
|
|
52289
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
51569
52290
|
};
|
|
51570
52291
|
export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
|
|
51571
52292
|
cloudId: Scalars['String']['input'];
|
|
@@ -51717,20 +52438,26 @@ export declare type LogQueryInput = {
|
|
|
51717
52438
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
51718
52439
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
51719
52440
|
};
|
|
52441
|
+
export declare enum LpCertStatus {
|
|
52442
|
+
Active = "ACTIVE",
|
|
52443
|
+
Expired = "EXPIRED"
|
|
52444
|
+
}
|
|
51720
52445
|
export declare type LpCertmetricsCertificate = {
|
|
51721
52446
|
__typename?: 'LpCertmetricsCertificate';
|
|
51722
52447
|
activeDate?: Maybe<Scalars['String']['output']>;
|
|
51723
52448
|
expireDate?: Maybe<Scalars['String']['output']>;
|
|
52449
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
51724
52450
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
51725
52451
|
name?: Maybe<Scalars['String']['output']>;
|
|
51726
52452
|
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
51727
52453
|
publicUrl?: Maybe<Scalars['String']['output']>;
|
|
51728
|
-
status?: Maybe<
|
|
52454
|
+
status?: Maybe<LpCertStatus>;
|
|
51729
52455
|
};
|
|
51730
52456
|
export declare type LpCertmetricsCertificateConnection = {
|
|
51731
52457
|
__typename?: 'LpCertmetricsCertificateConnection';
|
|
51732
52458
|
edges?: Maybe<Array<LpCertmetricsCertificateEdge>>;
|
|
51733
52459
|
pageInfo?: Maybe<LpPageInfo>;
|
|
52460
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51734
52461
|
};
|
|
51735
52462
|
export declare type LpCertmetricsCertificateEdge = {
|
|
51736
52463
|
__typename?: 'LpCertmetricsCertificateEdge';
|
|
@@ -51739,20 +52466,28 @@ export declare type LpCertmetricsCertificateEdge = {
|
|
|
51739
52466
|
};
|
|
51740
52467
|
export declare type LpCourseProgress = {
|
|
51741
52468
|
__typename?: 'LpCourseProgress';
|
|
52469
|
+
completedDate?: Maybe<Scalars['String']['output']>;
|
|
51742
52470
|
courseId?: Maybe<Scalars['String']['output']>;
|
|
52471
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
51743
52472
|
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
51744
|
-
status?: Maybe<
|
|
52473
|
+
status?: Maybe<LpCourseStatus>;
|
|
52474
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
51745
52475
|
};
|
|
51746
52476
|
export declare type LpCourseProgressConnection = {
|
|
51747
52477
|
__typename?: 'LpCourseProgressConnection';
|
|
51748
52478
|
edges?: Maybe<Array<LpCourseProgressEdge>>;
|
|
51749
52479
|
pageInfo?: Maybe<LpPageInfo>;
|
|
52480
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51750
52481
|
};
|
|
51751
52482
|
export declare type LpCourseProgressEdge = {
|
|
51752
52483
|
__typename?: 'LpCourseProgressEdge';
|
|
51753
52484
|
cursor: Scalars['String']['output'];
|
|
51754
52485
|
node?: Maybe<LpCourseProgress>;
|
|
51755
52486
|
};
|
|
52487
|
+
export declare enum LpCourseStatus {
|
|
52488
|
+
Completed = "COMPLETED",
|
|
52489
|
+
InProgress = "IN_PROGRESS"
|
|
52490
|
+
}
|
|
51756
52491
|
export declare type LpLearner = Node & {
|
|
51757
52492
|
__typename?: 'LpLearner';
|
|
51758
52493
|
atlassianId: Scalars['String']['output'];
|
|
@@ -51765,13 +52500,15 @@ export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
|
51765
52500
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
51766
52501
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51767
52502
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52503
|
+
status?: InputMaybe<LpCertStatus>;
|
|
51768
52504
|
};
|
|
51769
52505
|
export declare type LpLearnerCoursesArgs = {
|
|
51770
52506
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
51771
52507
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52508
|
+
dateCompletedSortOrder?: InputMaybe<LpSortOrder>;
|
|
51772
52509
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51773
52510
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51774
|
-
status?: InputMaybe<
|
|
52511
|
+
status?: InputMaybe<LpCourseStatus>;
|
|
51775
52512
|
};
|
|
51776
52513
|
export declare type LpLearnerData = {
|
|
51777
52514
|
__typename?: 'LpLearnerData';
|
|
@@ -51796,6 +52533,10 @@ export declare type LpPageInfo = {
|
|
|
51796
52533
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
51797
52534
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
51798
52535
|
};
|
|
52536
|
+
export declare enum LpSortOrder {
|
|
52537
|
+
Asc = "ASC",
|
|
52538
|
+
Desc = "DESC"
|
|
52539
|
+
}
|
|
51799
52540
|
export declare type MarketplaceApp = {
|
|
51800
52541
|
__typename?: 'MarketplaceApp';
|
|
51801
52542
|
appId: Scalars['ID']['output'];
|
|
@@ -53792,6 +54533,7 @@ export declare type Mutation = {
|
|
|
53792
54533
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacyAddDefaultExCoSpacePermissionsPayload>;
|
|
53793
54534
|
confluenceLegacy_addLabels?: Maybe<ConfluenceLegacyAddLabelsPayload>;
|
|
53794
54535
|
confluenceLegacy_addPublicLinkPermissions?: Maybe<ConfluenceLegacyAddPublicLinkPermissionsPayload>;
|
|
54536
|
+
confluenceLegacy_addReaction?: Maybe<ConfluenceLegacySaveReactionResponse>;
|
|
53795
54537
|
confluenceLegacy_archivePages?: Maybe<ConfluenceLegacyBulkArchivePagePayload>;
|
|
53796
54538
|
confluenceLegacy_attachDanglingComment?: Maybe<ConfluenceLegacyComment>;
|
|
53797
54539
|
confluenceLegacy_bulkArchivePages?: Maybe<ConfluenceLegacyBulkArchivePagePayload>;
|
|
@@ -53837,6 +54579,7 @@ export declare type Mutation = {
|
|
|
53837
54579
|
confluenceLegacy_deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
53838
54580
|
confluenceLegacy_deleteLabel?: Maybe<ConfluenceLegacyDeleteLabelPayload>;
|
|
53839
54581
|
confluenceLegacy_deletePages?: Maybe<ConfluenceLegacyDeletePagesPayload>;
|
|
54582
|
+
confluenceLegacy_deleteReaction?: Maybe<ConfluenceLegacySaveReactionResponse>;
|
|
53840
54583
|
confluenceLegacy_deleteRelation?: Maybe<ConfluenceLegacyDeleteRelationPayload>;
|
|
53841
54584
|
confluenceLegacy_deleteSpaceDefaultClassificationLevel?: Maybe<ConfluenceLegacyDeleteSpaceDefaultClassificationLevelPayload>;
|
|
53842
54585
|
confluenceLegacy_deleteSpaceRoles?: Maybe<ConfluenceLegacyDeleteSpaceRolesPayload>;
|
|
@@ -54137,6 +54880,13 @@ export declare type MutationConfluenceLegacy_AddLabelsArgs = {
|
|
|
54137
54880
|
export declare type MutationConfluenceLegacy_AddPublicLinkPermissionsArgs = {
|
|
54138
54881
|
input: ConfluenceLegacyAddPublicLinkPermissionsInput;
|
|
54139
54882
|
};
|
|
54883
|
+
export declare type MutationConfluenceLegacy_AddReactionArgs = {
|
|
54884
|
+
containerId: Scalars['String']['input'];
|
|
54885
|
+
containerType: ConfluenceLegacyContainerType;
|
|
54886
|
+
contentId: Scalars['String']['input'];
|
|
54887
|
+
contentType: ConfluenceLegacyReactionContentType;
|
|
54888
|
+
emojiId: Scalars['String']['input'];
|
|
54889
|
+
};
|
|
54140
54890
|
export declare type MutationConfluenceLegacy_ArchivePagesArgs = {
|
|
54141
54891
|
input: Array<InputMaybe<ConfluenceLegacyBulkArchivePagesInput>>;
|
|
54142
54892
|
};
|
|
@@ -54279,6 +55029,13 @@ export declare type MutationConfluenceLegacy_DeleteLabelArgs = {
|
|
|
54279
55029
|
export declare type MutationConfluenceLegacy_DeletePagesArgs = {
|
|
54280
55030
|
input: Array<InputMaybe<ConfluenceLegacyDeletePagesInput>>;
|
|
54281
55031
|
};
|
|
55032
|
+
export declare type MutationConfluenceLegacy_DeleteReactionArgs = {
|
|
55033
|
+
containerId: Scalars['String']['input'];
|
|
55034
|
+
containerType: ConfluenceLegacyContainerType;
|
|
55035
|
+
contentId: Scalars['String']['input'];
|
|
55036
|
+
contentType: ConfluenceLegacyReactionContentType;
|
|
55037
|
+
emojiId: Scalars['String']['input'];
|
|
55038
|
+
};
|
|
54282
55039
|
export declare type MutationConfluenceLegacy_DeleteRelationArgs = {
|
|
54283
55040
|
input: ConfluenceLegacyDeleteRelationInput;
|
|
54284
55041
|
};
|
|
@@ -57362,7 +58119,6 @@ export declare type Query = {
|
|
|
57362
58119
|
confluenceLegacy_pageAnalyticsCount?: Maybe<ConfluenceLegacyPageAnalyticsCount>;
|
|
57363
58120
|
confluenceLegacy_pageAnalyticsTimeseriesCount?: Maybe<ConfluenceLegacyPageAnalyticsTimeseriesCount>;
|
|
57364
58121
|
confluenceLegacy_pageContextContentCreationMetadata?: Maybe<ConfluenceLegacyContentCreationMetadata>;
|
|
57365
|
-
confluenceLegacy_pageTreeCloudId?: Maybe<ConfluenceLegacyPageTreeCloudId>;
|
|
57366
58122
|
confluenceLegacy_pages?: Maybe<ConfluenceLegacyPaginatedPageList>;
|
|
57367
58123
|
confluenceLegacy_paywallContentToDisable?: Maybe<ConfluenceLegacyPaywallContentSingle>;
|
|
57368
58124
|
confluenceLegacy_paywallStatus?: Maybe<ConfluenceLegacyPaywallStatus>;
|
|
@@ -57379,6 +58135,9 @@ export declare type Query = {
|
|
|
57379
58135
|
confluenceLegacy_publishConditions?: Maybe<Array<Maybe<ConfluenceLegacyPublishConditions>>>;
|
|
57380
58136
|
confluenceLegacy_pushNotificationSettings?: Maybe<ConfluenceLegacyPushNotificationSettings>;
|
|
57381
58137
|
confluenceLegacy_quickReload?: Maybe<ConfluenceLegacyQuickReload>;
|
|
58138
|
+
confluenceLegacy_reactedUsers?: Maybe<ConfluenceLegacyReactedUsersResponse>;
|
|
58139
|
+
confluenceLegacy_reactionsSummary?: Maybe<ConfluenceLegacyReactionsSummaryResponse>;
|
|
58140
|
+
confluenceLegacy_reactionsSummaryList?: Maybe<Array<Maybe<ConfluenceLegacyReactionsSummaryResponse>>>;
|
|
57382
58141
|
confluenceLegacy_recentlyViewedSpaces?: Maybe<Array<Maybe<ConfluenceLegacySpace>>>;
|
|
57383
58142
|
confluenceLegacy_renderedContentDump?: Maybe<ConfluenceLegacyHtmlDocument>;
|
|
57384
58143
|
confluenceLegacy_search?: Maybe<ConfluenceLegacyPaginatedSearchResultList>;
|
|
@@ -58173,9 +58932,6 @@ export declare type QueryConfluenceLegacy_PageAnalyticsTimeseriesCountArgs = {
|
|
|
58173
58932
|
export declare type QueryConfluenceLegacy_PageContextContentCreationMetadataArgs = {
|
|
58174
58933
|
contentId: Scalars['ID']['input'];
|
|
58175
58934
|
};
|
|
58176
|
-
export declare type QueryConfluenceLegacy_PageTreeCloudIdArgs = {
|
|
58177
|
-
cloudId: Scalars['ID']['input'];
|
|
58178
|
-
};
|
|
58179
58935
|
export declare type QueryConfluenceLegacy_PagesArgs = {
|
|
58180
58936
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
58181
58937
|
pageId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -58246,6 +59002,22 @@ export declare type QueryConfluenceLegacy_QuickReloadArgs = {
|
|
|
58246
59002
|
pageId: Scalars['Long']['input'];
|
|
58247
59003
|
since: Scalars['Long']['input'];
|
|
58248
59004
|
};
|
|
59005
|
+
export declare type QueryConfluenceLegacy_ReactedUsersArgs = {
|
|
59006
|
+
containerId: Scalars['String']['input'];
|
|
59007
|
+
containerType: ConfluenceLegacyContainerType;
|
|
59008
|
+
contentId: Scalars['String']['input'];
|
|
59009
|
+
contentType: ConfluenceLegacyReactionContentType;
|
|
59010
|
+
emojiId: Scalars['String']['input'];
|
|
59011
|
+
};
|
|
59012
|
+
export declare type QueryConfluenceLegacy_ReactionsSummaryArgs = {
|
|
59013
|
+
containerId: Scalars['ID']['input'];
|
|
59014
|
+
containerType?: InputMaybe<Scalars['String']['input']>;
|
|
59015
|
+
contentId: Scalars['ID']['input'];
|
|
59016
|
+
contentType: Scalars['String']['input'];
|
|
59017
|
+
};
|
|
59018
|
+
export declare type QueryConfluenceLegacy_ReactionsSummaryListArgs = {
|
|
59019
|
+
ids: Array<InputMaybe<ConfluenceLegacyReactionsId>>;
|
|
59020
|
+
};
|
|
58249
59021
|
export declare type QueryConfluenceLegacy_RecentlyViewedSpacesArgs = {
|
|
58250
59022
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
58251
59023
|
};
|
|
@@ -60401,7 +61173,7 @@ export declare type SearchConfluenceFilter = {
|
|
|
60401
61173
|
spacesFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
60402
61174
|
titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60403
61175
|
};
|
|
60404
|
-
export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
61176
|
+
export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider & SearchResult & {
|
|
60405
61177
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
60406
61178
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
60407
61179
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -60437,14 +61209,16 @@ export declare type SearchConfluenceRangeFilter = {
|
|
|
60437
61209
|
};
|
|
60438
61210
|
export declare type SearchConfluenceResultSpace = {
|
|
60439
61211
|
__typename?: 'SearchConfluenceResultSpace';
|
|
61212
|
+
alias?: Maybe<Scalars['String']['output']>;
|
|
60440
61213
|
id: Scalars['ID']['output'];
|
|
60441
61214
|
key?: Maybe<Scalars['String']['output']>;
|
|
60442
61215
|
name?: Maybe<Scalars['String']['output']>;
|
|
60443
61216
|
spaceId?: Maybe<Scalars['String']['output']>;
|
|
60444
61217
|
webUiLink?: Maybe<Scalars['String']['output']>;
|
|
60445
61218
|
};
|
|
60446
|
-
export declare type SearchConfluenceSpace = SearchResult & {
|
|
61219
|
+
export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResult & {
|
|
60447
61220
|
__typename?: 'SearchConfluenceSpace';
|
|
61221
|
+
alias?: Maybe<Scalars['String']['output']>;
|
|
60448
61222
|
description: Scalars['String']['output'];
|
|
60449
61223
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
60450
61224
|
iconPath?: Maybe<Scalars['String']['output']>;
|
|
@@ -60551,6 +61325,9 @@ export declare type SearchL2Feature = {
|
|
|
60551
61325
|
key: Scalars['String']['output'];
|
|
60552
61326
|
value?: Maybe<Scalars['Float']['output']>;
|
|
60553
61327
|
};
|
|
61328
|
+
export declare type SearchL2FeatureProvider = {
|
|
61329
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
61330
|
+
};
|
|
60554
61331
|
export declare type SearchProductCount = {
|
|
60555
61332
|
__typename?: 'SearchProductCount';
|
|
60556
61333
|
count: Scalars['Int']['output'];
|
|
@@ -60651,13 +61428,15 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
60651
61428
|
type: SearchResultType;
|
|
60652
61429
|
url: Scalars['URL']['output'];
|
|
60653
61430
|
};
|
|
60654
|
-
export declare type
|
|
61431
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
61432
|
+
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
60655
61433
|
__typename?: 'SearchResultGoogleDocument';
|
|
60656
61434
|
bodyText: Scalars['String']['output'];
|
|
60657
61435
|
description: Scalars['String']['output'];
|
|
60658
61436
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
60659
61437
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
60660
61438
|
id: Scalars['ID']['output'];
|
|
61439
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60661
61440
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60662
61441
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
60663
61442
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -60665,13 +61444,14 @@ export declare type SearchResultGoogleDocument = SearchResult & {
|
|
|
60665
61444
|
type: SearchResultType;
|
|
60666
61445
|
url: Scalars['URL']['output'];
|
|
60667
61446
|
};
|
|
60668
|
-
export declare type SearchResultGooglePresentation = SearchResult & {
|
|
61447
|
+
export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & SearchResult & {
|
|
60669
61448
|
__typename?: 'SearchResultGooglePresentation';
|
|
60670
61449
|
bodyText: Scalars['String']['output'];
|
|
60671
61450
|
description: Scalars['String']['output'];
|
|
60672
61451
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
60673
61452
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
60674
61453
|
id: Scalars['ID']['output'];
|
|
61454
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60675
61455
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60676
61456
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
60677
61457
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -60679,13 +61459,14 @@ export declare type SearchResultGooglePresentation = SearchResult & {
|
|
|
60679
61459
|
type: SearchResultType;
|
|
60680
61460
|
url: Scalars['URL']['output'];
|
|
60681
61461
|
};
|
|
60682
|
-
export declare type SearchResultGoogleSpreadsheet = SearchResult & {
|
|
61462
|
+
export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & SearchResult & {
|
|
60683
61463
|
__typename?: 'SearchResultGoogleSpreadsheet';
|
|
60684
61464
|
bodyText: Scalars['String']['output'];
|
|
60685
61465
|
description: Scalars['String']['output'];
|
|
60686
61466
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
60687
61467
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
60688
61468
|
id: Scalars['ID']['output'];
|
|
61469
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60689
61470
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60690
61471
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
60691
61472
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -60693,15 +61474,17 @@ export declare type SearchResultGoogleSpreadsheet = SearchResult & {
|
|
|
60693
61474
|
type: SearchResultType;
|
|
60694
61475
|
url: Scalars['URL']['output'];
|
|
60695
61476
|
};
|
|
60696
|
-
export declare type SearchResultGraphDocument = SearchResult & {
|
|
61477
|
+
export declare type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult & {
|
|
60697
61478
|
__typename?: 'SearchResultGraphDocument';
|
|
60698
61479
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
60699
61480
|
description: Scalars['String']['output'];
|
|
61481
|
+
entity?: Maybe<SearchResultEntity>;
|
|
60700
61482
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
60701
61483
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
60702
61484
|
id: Scalars['ID']['output'];
|
|
60703
61485
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
60704
61486
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
61487
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60705
61488
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60706
61489
|
owner?: Maybe<ThirdPartyUser>;
|
|
60707
61490
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
@@ -60835,13 +61618,14 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
60835
61618
|
export declare type SearchResultJiraProjectSocialSignalArgs = {
|
|
60836
61619
|
tenantId: Scalars['ID']['input'];
|
|
60837
61620
|
};
|
|
60838
|
-
export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
61621
|
+
export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & SearchResult & {
|
|
60839
61622
|
__typename?: 'SearchResultMicrosoftDocument';
|
|
60840
61623
|
bodyText: Scalars['String']['output'];
|
|
60841
61624
|
description: Scalars['String']['output'];
|
|
60842
61625
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
60843
61626
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
60844
61627
|
id: Scalars['ID']['output'];
|
|
61628
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60845
61629
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60846
61630
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
60847
61631
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -60849,13 +61633,14 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
60849
61633
|
type: SearchResultType;
|
|
60850
61634
|
url: Scalars['URL']['output'];
|
|
60851
61635
|
};
|
|
60852
|
-
export declare type SearchResultSlackMessage = SearchResult & {
|
|
61636
|
+
export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchResult & {
|
|
60853
61637
|
__typename?: 'SearchResultSlackMessage';
|
|
60854
61638
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
60855
61639
|
description: Scalars['String']['output'];
|
|
60856
61640
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
60857
61641
|
id: Scalars['ID']['output'];
|
|
60858
61642
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
61643
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60859
61644
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60860
61645
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
60861
61646
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -61947,6 +62732,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
61947
62732
|
DeleteFilesRemediation = "DELETE_FILES_REMEDIATION",
|
|
61948
62733
|
EditCustomDetectionRemediation = "EDIT_CUSTOM_DETECTION_REMEDIATION",
|
|
61949
62734
|
ExcludePageRemediation = "EXCLUDE_PAGE_REMEDIATION",
|
|
62735
|
+
ExcludeUserRemediation = "EXCLUDE_USER_REMEDIATION",
|
|
61950
62736
|
ExportsDspRemediation = "EXPORTS_DSP_REMEDIATION",
|
|
61951
62737
|
ExportDspRemediation = "EXPORT_DSP_REMEDIATION",
|
|
61952
62738
|
ExportSpacePermissionsRemediation = "EXPORT_SPACE_PERMISSIONS_REMEDIATION",
|
|
@@ -62008,10 +62794,16 @@ export declare type ShepherdSearchDetectionHighlight = {
|
|
|
62008
62794
|
__typename?: 'ShepherdSearchDetectionHighlight';
|
|
62009
62795
|
searchQueries: Array<ShepherdSearchQuery>;
|
|
62010
62796
|
};
|
|
62797
|
+
export declare enum ShepherdSearchOrigin {
|
|
62798
|
+
AdvancedSearch = "ADVANCED_SEARCH",
|
|
62799
|
+
Ai = "AI",
|
|
62800
|
+
QuickSearch = "QUICK_SEARCH"
|
|
62801
|
+
}
|
|
62011
62802
|
export declare type ShepherdSearchQuery = {
|
|
62012
62803
|
__typename?: 'ShepherdSearchQuery';
|
|
62013
62804
|
datetime: Scalars['DateTime']['output'];
|
|
62014
62805
|
query: Scalars['String']['output'];
|
|
62806
|
+
searchOrigin?: Maybe<ShepherdSearchOrigin>;
|
|
62015
62807
|
suspiciousSearchTerms?: Maybe<Array<ShepherdSuspiciousSearchTerm>>;
|
|
62016
62808
|
};
|
|
62017
62809
|
export declare type ShepherdSite = {
|
|
@@ -63267,6 +64059,7 @@ export declare type TeamQueryTeamSearchV2Args = {
|
|
|
63267
64059
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63268
64060
|
organizationId: Scalars['ID']['input'];
|
|
63269
64061
|
searchFields?: InputMaybe<Array<InputMaybe<TeamSearchField>>>;
|
|
64062
|
+
showEmptyTeams?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63270
64063
|
siteId: Scalars['String']['input'];
|
|
63271
64064
|
sortBy?: InputMaybe<Array<InputMaybe<TeamSort>>>;
|
|
63272
64065
|
};
|
|
@@ -64029,7 +64822,7 @@ export declare type TownsquareQueryApi = {
|
|
|
64029
64822
|
};
|
|
64030
64823
|
export declare type TownsquareQueryApiAllWorkspacesForOrgArgs = {
|
|
64031
64824
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64032
|
-
cloudId
|
|
64825
|
+
cloudId: Scalars['String']['input'];
|
|
64033
64826
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64034
64827
|
organisationId?: InputMaybe<Scalars['String']['input']>;
|
|
64035
64828
|
};
|
|
@@ -64285,16 +65078,6 @@ export declare type TrelloBoardBackground = {
|
|
|
64285
65078
|
tile?: Maybe<Scalars['Boolean']['output']>;
|
|
64286
65079
|
topColor?: Maybe<Scalars['String']['output']>;
|
|
64287
65080
|
};
|
|
64288
|
-
export declare type TrelloBoardBackgroundUpdatedDeltas = {
|
|
64289
|
-
__typename?: 'TrelloBoardBackgroundUpdatedDeltas';
|
|
64290
|
-
bottomColor?: Maybe<Scalars['Boolean']['output']>;
|
|
64291
|
-
brightness?: Maybe<Scalars['Boolean']['output']>;
|
|
64292
|
-
color?: Maybe<Scalars['Boolean']['output']>;
|
|
64293
|
-
image?: Maybe<Scalars['Boolean']['output']>;
|
|
64294
|
-
imageScaled?: Maybe<Scalars['Boolean']['output']>;
|
|
64295
|
-
title?: Maybe<Scalars['Boolean']['output']>;
|
|
64296
|
-
topColor?: Maybe<Scalars['Boolean']['output']>;
|
|
64297
|
-
};
|
|
64298
65081
|
export declare type TrelloBoardBoardsLimits = {
|
|
64299
65082
|
__typename?: 'TrelloBoardBoardsLimits';
|
|
64300
65083
|
totalAccessRequestsPerBoard?: Maybe<TrelloLimitProps>;
|
|
@@ -64417,13 +65200,6 @@ export declare type TrelloBoardPrefs = {
|
|
|
64417
65200
|
switcherViews?: Maybe<Array<Maybe<TrelloSwitcherViewsInfo>>>;
|
|
64418
65201
|
voting?: Maybe<Scalars['String']['output']>;
|
|
64419
65202
|
};
|
|
64420
|
-
export declare type TrelloBoardPrefsUpdatedDeltas = {
|
|
64421
|
-
__typename?: 'TrelloBoardPrefsUpdatedDeltas';
|
|
64422
|
-
background?: Maybe<TrelloBoardBackgroundUpdatedDeltas>;
|
|
64423
|
-
canInvite?: Maybe<Scalars['Boolean']['output']>;
|
|
64424
|
-
hideVotes?: Maybe<Scalars['Boolean']['output']>;
|
|
64425
|
-
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
64426
|
-
};
|
|
64427
65203
|
export declare type TrelloBoardReactionsLimits = {
|
|
64428
65204
|
__typename?: 'TrelloBoardReactionsLimits';
|
|
64429
65205
|
perAction?: Maybe<TrelloLimitProps>;
|
|
@@ -64442,7 +65218,7 @@ export declare type TrelloBoardStickersLimits = {
|
|
|
64442
65218
|
};
|
|
64443
65219
|
export declare type TrelloBoardUpdated = {
|
|
64444
65220
|
__typename?: 'TrelloBoardUpdated';
|
|
64445
|
-
_deltas?: Maybe<
|
|
65221
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
64446
65222
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
64447
65223
|
id?: Maybe<Scalars['ID']['output']>;
|
|
64448
65224
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
@@ -64450,13 +65226,6 @@ export declare type TrelloBoardUpdated = {
|
|
|
64450
65226
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
64451
65227
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
64452
65228
|
};
|
|
64453
|
-
export declare type TrelloBoardUpdatedDeltas = {
|
|
64454
|
-
__typename?: 'TrelloBoardUpdatedDeltas';
|
|
64455
|
-
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
64456
|
-
lists?: Maybe<TrelloListUpdatedConnectionDeltas>;
|
|
64457
|
-
name?: Maybe<Scalars['Boolean']['output']>;
|
|
64458
|
-
prefs?: Maybe<TrelloBoardPrefsUpdatedDeltas>;
|
|
64459
|
-
};
|
|
64460
65229
|
export declare type TrelloBoardViewer = {
|
|
64461
65230
|
__typename?: 'TrelloBoardViewer';
|
|
64462
65231
|
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -64677,17 +65446,6 @@ export declare type TrelloCardUpdatedConnection = {
|
|
|
64677
65446
|
__typename?: 'TrelloCardUpdatedConnection';
|
|
64678
65447
|
nodes?: Maybe<Array<TrelloCardUpdated>>;
|
|
64679
65448
|
};
|
|
64680
|
-
export declare type TrelloCardUpdatedConnectionDeltas = {
|
|
64681
|
-
__typename?: 'TrelloCardUpdatedConnectionDeltas';
|
|
64682
|
-
nodes: Array<TrelloCardUpdatedDeltas>;
|
|
64683
|
-
};
|
|
64684
|
-
export declare type TrelloCardUpdatedDeltas = {
|
|
64685
|
-
__typename?: 'TrelloCardUpdatedDeltas';
|
|
64686
|
-
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
64687
|
-
description?: Maybe<Scalars['Boolean']['output']>;
|
|
64688
|
-
id?: Maybe<Scalars['Boolean']['output']>;
|
|
64689
|
-
name?: Maybe<Scalars['Boolean']['output']>;
|
|
64690
|
-
};
|
|
64691
65449
|
export declare type TrelloCardViewer = {
|
|
64692
65450
|
__typename?: 'TrelloCardViewer';
|
|
64693
65451
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -64937,19 +65695,6 @@ export declare type TrelloListUpdatedConnection = {
|
|
|
64937
65695
|
__typename?: 'TrelloListUpdatedConnection';
|
|
64938
65696
|
nodes?: Maybe<Array<TrelloListUpdated>>;
|
|
64939
65697
|
};
|
|
64940
|
-
export declare type TrelloListUpdatedConnectionDeltas = {
|
|
64941
|
-
__typename?: 'TrelloListUpdatedConnectionDeltas';
|
|
64942
|
-
nodes?: Maybe<Array<TrelloListUpdatedDeltas>>;
|
|
64943
|
-
};
|
|
64944
|
-
export declare type TrelloListUpdatedDeltas = {
|
|
64945
|
-
__typename?: 'TrelloListUpdatedDeltas';
|
|
64946
|
-
cards?: Maybe<TrelloCardUpdatedConnectionDeltas>;
|
|
64947
|
-
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
64948
|
-
id?: Maybe<Scalars['Boolean']['output']>;
|
|
64949
|
-
name?: Maybe<Scalars['Boolean']['output']>;
|
|
64950
|
-
position?: Maybe<Scalars['Boolean']['output']>;
|
|
64951
|
-
softLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
64952
|
-
};
|
|
64953
65698
|
export declare type TrelloListViewer = {
|
|
64954
65699
|
__typename?: 'TrelloListViewer';
|
|
64955
65700
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -65329,6 +66074,7 @@ export declare type TrelloWatchCardPayload = Payload & {
|
|
|
65329
66074
|
};
|
|
65330
66075
|
export declare type TrelloWorkspace = Node & {
|
|
65331
66076
|
__typename?: 'TrelloWorkspace';
|
|
66077
|
+
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
65332
66078
|
description: Scalars['String']['output'];
|
|
65333
66079
|
displayName: Scalars['String']['output'];
|
|
65334
66080
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
@@ -66087,6 +66833,7 @@ export declare type UpdateComponentApiPayload = {
|
|
|
66087
66833
|
export declare type UpdateComponentApiUploadInput = {
|
|
66088
66834
|
componentId: Scalars['ID']['input'];
|
|
66089
66835
|
effectiveAt: Scalars['String']['input'];
|
|
66836
|
+
shouldDereference?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66090
66837
|
tags: Array<Scalars['String']['input']>;
|
|
66091
66838
|
uploadId: Scalars['ID']['input'];
|
|
66092
66839
|
};
|