@forge/cli-shared 5.3.2-next.0 → 5.3.2-next.2
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 +571 -50
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +174 -16
- 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
|
};
|
|
@@ -4823,6 +4825,7 @@ export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedPara
|
|
|
4823
4825
|
export declare type CompassGlobalPermissions = {
|
|
4824
4826
|
__typename?: 'CompassGlobalPermissions';
|
|
4825
4827
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
4828
|
+
viewCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
4826
4829
|
};
|
|
4827
4830
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
4828
4831
|
export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
@@ -6791,6 +6794,7 @@ export declare type ConfluenceLegacyAdminReport = {
|
|
|
6791
6794
|
link?: Maybe<Scalars['String']['output']>;
|
|
6792
6795
|
reportId?: Maybe<Scalars['ID']['output']>;
|
|
6793
6796
|
requesterId?: Maybe<Scalars['ID']['output']>;
|
|
6797
|
+
user?: Maybe<ConfluenceLegacyAtlassianUser>;
|
|
6794
6798
|
};
|
|
6795
6799
|
export declare type ConfluenceLegacyAdminReportPayload = {
|
|
6796
6800
|
__typename?: 'ConfluenceLegacyAdminReportPayload';
|
|
@@ -6915,7 +6919,7 @@ export declare type ConfluenceLegacyArchivedContentMetadata = {
|
|
|
6915
6919
|
export declare type ConfluenceLegacyAtlassianUser = {
|
|
6916
6920
|
__typename?: 'ConfluenceLegacyAtlassianUser';
|
|
6917
6921
|
companyName?: Maybe<Scalars['String']['output']>;
|
|
6918
|
-
confluence?: Maybe<
|
|
6922
|
+
confluence?: Maybe<ConfluenceLegacyConfluenceUser>;
|
|
6919
6923
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
6920
6924
|
emails?: Maybe<Array<Maybe<ConfluenceLegacyAtlassianUserEmail>>>;
|
|
6921
6925
|
groups?: Maybe<Array<Maybe<ConfluenceLegacyAtlassianUserGroup>>>;
|
|
@@ -7158,6 +7162,7 @@ export declare type ConfluenceLegacyComment = {
|
|
|
7158
7162
|
location: ConfluenceLegacyCommentLocation;
|
|
7159
7163
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
7160
7164
|
permissions: ConfluenceLegacyCommentPermissions;
|
|
7165
|
+
reactionsSummary?: Maybe<ConfluenceLegacyReactionsSummaryResponse>;
|
|
7161
7166
|
replies: Array<Maybe<ConfluenceLegacyComment>>;
|
|
7162
7167
|
spaceId: Scalars['Long']['output'];
|
|
7163
7168
|
version: ConfluenceLegacyVersion;
|
|
@@ -7165,6 +7170,11 @@ export declare type ConfluenceLegacyComment = {
|
|
|
7165
7170
|
export declare type ConfluenceLegacyCommentBodyArgs = {
|
|
7166
7171
|
representation?: InputMaybe<ConfluenceLegacyDocumentRepresentation>;
|
|
7167
7172
|
};
|
|
7173
|
+
export declare type ConfluenceLegacyCommentReactionsSummaryArgs = {
|
|
7174
|
+
childType: Scalars['String']['input'];
|
|
7175
|
+
contentType?: InputMaybe<Scalars['String']['input']>;
|
|
7176
|
+
pageId: Scalars['ID']['input'];
|
|
7177
|
+
};
|
|
7168
7178
|
export declare type ConfluenceLegacyCommentRepliesArgs = {
|
|
7169
7179
|
depth?: InputMaybe<Scalars['Int']['input']>;
|
|
7170
7180
|
};
|
|
@@ -7240,6 +7250,22 @@ export declare type ConfluenceLegacyCompanyHubFeature = {
|
|
|
7240
7250
|
__typename?: 'ConfluenceLegacyCompanyHubFeature';
|
|
7241
7251
|
isEntitled: Scalars['Boolean']['output'];
|
|
7242
7252
|
};
|
|
7253
|
+
export declare type ConfluenceLegacyConfluenceUser = {
|
|
7254
|
+
__typename?: 'ConfluenceLegacyConfluenceUser';
|
|
7255
|
+
accessStatus: ConfluenceLegacyAccessStatus;
|
|
7256
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
7257
|
+
currentUser?: Maybe<ConfluenceLegacyCurrentUserOperations>;
|
|
7258
|
+
groups: Array<Maybe<Scalars['String']['output']>>;
|
|
7259
|
+
groupsWithId: Array<Maybe<ConfluenceLegacyGroup>>;
|
|
7260
|
+
hasBlog?: Maybe<Scalars['Boolean']['output']>;
|
|
7261
|
+
hasPersonalSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
7262
|
+
locale: Scalars['String']['output'];
|
|
7263
|
+
operations: Array<Maybe<ConfluenceLegacyOperationCheckResult>>;
|
|
7264
|
+
permissionType?: Maybe<ConfluenceLegacySitePermissionType>;
|
|
7265
|
+
roles?: Maybe<ConfluenceLegacyUserRoles>;
|
|
7266
|
+
space?: Maybe<ConfluenceLegacySpace>;
|
|
7267
|
+
userKey?: Maybe<Scalars['String']['output']>;
|
|
7268
|
+
};
|
|
7243
7269
|
export declare type ConfluenceLegacyContactAdminMutationInput = {
|
|
7244
7270
|
content: ConfluenceLegacyContactAdminMutationInputContent;
|
|
7245
7271
|
recaptchaResponseToken?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7298,14 +7324,18 @@ export declare type ConfluenceLegacyContent = {
|
|
|
7298
7324
|
childTypes?: Maybe<ConfluenceLegacyChildContentTypesAvailable>;
|
|
7299
7325
|
children?: Maybe<ConfluenceLegacyPaginatedContentList>;
|
|
7300
7326
|
classificationLevelId?: Maybe<Scalars['String']['output']>;
|
|
7327
|
+
classificationLevelMetadata?: Maybe<ConfluenceLegacyContentDataClassificationLevel>;
|
|
7301
7328
|
classificationLevelOverrideId?: Maybe<Scalars['String']['output']>;
|
|
7302
7329
|
comments?: Maybe<ConfluenceLegacyPaginatedContentList>;
|
|
7303
7330
|
container?: Maybe<ConfluenceLegacySpaceOrContent>;
|
|
7331
|
+
contentAnalyticsViewers?: Maybe<ConfluenceLegacyContentAnalyticsViewers>;
|
|
7332
|
+
contentAnalyticsViews?: Maybe<ConfluenceLegacyContentAnalyticsViews>;
|
|
7333
|
+
contentAnalyticsViewsByUser?: Maybe<ConfluenceLegacyContentAnalyticsViewsByUser>;
|
|
7334
|
+
contentReactionsSummary?: Maybe<ConfluenceLegacyReactionsSummaryResponse>;
|
|
7304
7335
|
contentState?: Maybe<ConfluenceLegacyContentState>;
|
|
7305
7336
|
contentStateLastUpdated?: Maybe<ConfluenceLegacyDate>;
|
|
7306
7337
|
creatorId?: Maybe<Scalars['String']['output']>;
|
|
7307
7338
|
currentUserIsWatching: Scalars['Boolean']['output'];
|
|
7308
|
-
dataClassificationLevel?: Maybe<Scalars['String']['output']>;
|
|
7309
7339
|
deletableDescendantsCount: Scalars['Long']['output'];
|
|
7310
7340
|
dynamicMobileBody?: Maybe<ConfluenceLegacyContentBody>;
|
|
7311
7341
|
embeddedProduct?: Maybe<Scalars['String']['output']>;
|
|
@@ -7336,6 +7366,7 @@ export declare type ConfluenceLegacyContent = {
|
|
|
7336
7366
|
restrictions?: Maybe<ConfluenceLegacyContentRestrictions>;
|
|
7337
7367
|
schedulePublishDate?: Maybe<Scalars['String']['output']>;
|
|
7338
7368
|
schedulePublishInfo?: Maybe<ConfluenceLegacySchedulePublishInfo>;
|
|
7369
|
+
smartFeatures?: Maybe<ConfluenceLegacySmartPageFeatures>;
|
|
7339
7370
|
space?: Maybe<ConfluenceLegacySpace>;
|
|
7340
7371
|
status?: Maybe<Scalars['String']['output']>;
|
|
7341
7372
|
subType?: Maybe<Scalars['String']['output']>;
|
|
@@ -7366,6 +7397,10 @@ export declare type ConfluenceLegacyContentCommentsArgs = {
|
|
|
7366
7397
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7367
7398
|
recentFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7368
7399
|
};
|
|
7400
|
+
export declare type ConfluenceLegacyContentContentAnalyticsViewsByUserArgs = {
|
|
7401
|
+
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
7402
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7403
|
+
};
|
|
7369
7404
|
export declare type ConfluenceLegacyContentContentStateArgs = {
|
|
7370
7405
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7371
7406
|
};
|
|
@@ -7438,6 +7473,16 @@ export declare type ConfluenceLegacyContentAnalyticsLastViewedAtByPageItem = {
|
|
|
7438
7473
|
contentId: Scalars['ID']['output'];
|
|
7439
7474
|
lastViewedAt: Scalars['String']['output'];
|
|
7440
7475
|
};
|
|
7476
|
+
export declare type ConfluenceLegacyContentAnalyticsPageViewInfo = {
|
|
7477
|
+
__typename?: 'ConfluenceLegacyContentAnalyticsPageViewInfo';
|
|
7478
|
+
lastVersionViewed: Scalars['Int']['output'];
|
|
7479
|
+
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
7480
|
+
lastViewedAt: Scalars['String']['output'];
|
|
7481
|
+
user?: Maybe<ConfluenceLegacyAtlassianUser>;
|
|
7482
|
+
userId: Scalars['ID']['output'];
|
|
7483
|
+
userProfile?: Maybe<ConfluenceLegacyAtlassianUser>;
|
|
7484
|
+
views: Scalars['Int']['output'];
|
|
7485
|
+
};
|
|
7441
7486
|
export declare type ConfluenceLegacyContentAnalyticsTotalViewsByPage = {
|
|
7442
7487
|
__typename?: 'ConfluenceLegacyContentAnalyticsTotalViewsByPage';
|
|
7443
7488
|
nodes?: Maybe<Array<Maybe<ConfluenceLegacyContentAnalyticsTotalViewsByPageItem>>>;
|
|
@@ -7455,6 +7500,11 @@ export declare type ConfluenceLegacyContentAnalyticsViews = {
|
|
|
7455
7500
|
__typename?: 'ConfluenceLegacyContentAnalyticsViews';
|
|
7456
7501
|
count: Scalars['Int']['output'];
|
|
7457
7502
|
};
|
|
7503
|
+
export declare type ConfluenceLegacyContentAnalyticsViewsByUser = {
|
|
7504
|
+
__typename?: 'ConfluenceLegacyContentAnalyticsViewsByUser';
|
|
7505
|
+
id: Scalars['ID']['output'];
|
|
7506
|
+
pageViews: Array<ConfluenceLegacyContentAnalyticsPageViewInfo>;
|
|
7507
|
+
};
|
|
7458
7508
|
export declare type ConfluenceLegacyContentBody = {
|
|
7459
7509
|
__typename?: 'ConfluenceLegacyContentBody';
|
|
7460
7510
|
content?: Maybe<ConfluenceLegacyContent>;
|
|
@@ -7734,6 +7784,7 @@ export declare type ConfluenceLegacyContentTemplate = {
|
|
|
7734
7784
|
referencingBlueprint?: Maybe<Scalars['String']['output']>;
|
|
7735
7785
|
space?: Maybe<ConfluenceLegacySpace>;
|
|
7736
7786
|
templateId?: Maybe<Scalars['String']['output']>;
|
|
7787
|
+
templatePropertySet?: Maybe<ConfluenceLegacyTemplatePropertySet>;
|
|
7737
7788
|
templateType?: Maybe<Scalars['String']['output']>;
|
|
7738
7789
|
};
|
|
7739
7790
|
export declare type ConfluenceLegacyContentTemplateBodyInput = {
|
|
@@ -8060,6 +8111,7 @@ export declare type ConfluenceLegacyDeactivatedUserPageCountEntity = {
|
|
|
8060
8111
|
__typename?: 'ConfluenceLegacyDeactivatedUserPageCountEntity';
|
|
8061
8112
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
8062
8113
|
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
8114
|
+
user?: Maybe<ConfluenceLegacyAtlassianUser>;
|
|
8063
8115
|
};
|
|
8064
8116
|
export declare type ConfluenceLegacyDeactivatedUserPageCountEntityEdge = {
|
|
8065
8117
|
__typename?: 'ConfluenceLegacyDeactivatedUserPageCountEntityEdge';
|
|
@@ -8246,6 +8298,15 @@ export declare type ConfluenceLegacyEditUpdate = ConfluenceLegacyAllUpdatesFeedE
|
|
|
8246
8298
|
user?: Maybe<ConfluenceLegacyPerson>;
|
|
8247
8299
|
version: Scalars['Int']['output'];
|
|
8248
8300
|
};
|
|
8301
|
+
export declare enum ConfluenceLegacyEdition {
|
|
8302
|
+
Free = "FREE",
|
|
8303
|
+
Premium = "PREMIUM",
|
|
8304
|
+
Standard = "STANDARD"
|
|
8305
|
+
}
|
|
8306
|
+
export declare type ConfluenceLegacyEditions = {
|
|
8307
|
+
__typename?: 'ConfluenceLegacyEditions';
|
|
8308
|
+
edition: ConfluenceLegacyEdition;
|
|
8309
|
+
};
|
|
8249
8310
|
export declare enum ConfluenceLegacyEditorConversionSetting {
|
|
8250
8311
|
None = "NONE",
|
|
8251
8312
|
Supported = "SUPPORTED"
|
|
@@ -8376,6 +8437,7 @@ export declare type ConfluenceLegacyError = {
|
|
|
8376
8437
|
export declare type ConfluenceLegacyExternalCollaboratorDefaultSpace = {
|
|
8377
8438
|
__typename?: 'ConfluenceLegacyExternalCollaboratorDefaultSpace';
|
|
8378
8439
|
enabled: Scalars['Boolean']['output'];
|
|
8440
|
+
space?: Maybe<ConfluenceLegacySpace>;
|
|
8379
8441
|
spaceId: Scalars['Long']['output'];
|
|
8380
8442
|
};
|
|
8381
8443
|
export declare type ConfluenceLegacyExternalCollaboratorFeature = {
|
|
@@ -8561,21 +8623,6 @@ export declare type ConfluenceLegacyGlobalDescription = {
|
|
|
8561
8623
|
__typename?: 'ConfluenceLegacyGlobalDescription';
|
|
8562
8624
|
id: Scalars['ID']['output'];
|
|
8563
8625
|
};
|
|
8564
|
-
export declare type ConfluenceLegacyGlobalPageTemplateUser = {
|
|
8565
|
-
__typename?: 'ConfluenceLegacyGlobalPageTemplateUser';
|
|
8566
|
-
accessStatus: ConfluenceLegacyAccessStatus;
|
|
8567
|
-
accountId?: Maybe<Scalars['String']['output']>;
|
|
8568
|
-
currentUser?: Maybe<ConfluenceLegacyCurrentUserOperations>;
|
|
8569
|
-
groups: Array<Maybe<Scalars['String']['output']>>;
|
|
8570
|
-
groupsWithId: Array<Maybe<ConfluenceLegacyGroup>>;
|
|
8571
|
-
hasBlog?: Maybe<Scalars['Boolean']['output']>;
|
|
8572
|
-
hasPersonalSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
8573
|
-
locale: Scalars['String']['output'];
|
|
8574
|
-
operations: Array<Maybe<ConfluenceLegacyOperationCheckResult>>;
|
|
8575
|
-
permissionType?: Maybe<ConfluenceLegacySitePermissionType>;
|
|
8576
|
-
roles?: Maybe<ConfluenceLegacyUserRoles>;
|
|
8577
|
-
userKey?: Maybe<Scalars['String']['output']>;
|
|
8578
|
-
};
|
|
8579
8626
|
export declare type ConfluenceLegacyGlobalSpaceConfiguration = {
|
|
8580
8627
|
__typename?: 'ConfluenceLegacyGlobalSpaceConfiguration';
|
|
8581
8628
|
publicLinkDefaultSpaceStatus?: Maybe<ConfluenceLegacyPublicLinkDefaultSpaceStatus>;
|
|
@@ -9996,6 +10043,7 @@ export declare type ConfluenceLegacyPublicLink = {
|
|
|
9996
10043
|
__typename?: 'ConfluenceLegacyPublicLink';
|
|
9997
10044
|
id: Scalars['ID']['output'];
|
|
9998
10045
|
lastEnabledBy?: Maybe<Scalars['String']['output']>;
|
|
10046
|
+
lastEnabledByUser?: Maybe<ConfluenceLegacyPerson>;
|
|
9999
10047
|
lastEnabledDate?: Maybe<Scalars['String']['output']>;
|
|
10000
10048
|
publicLinkUrlPath?: Maybe<Scalars['String']['output']>;
|
|
10001
10049
|
status: ConfluenceLegacyPublicLinkStatus;
|
|
@@ -10024,6 +10072,7 @@ export declare type ConfluenceLegacyPublicLinkOnboardingReference = {
|
|
|
10024
10072
|
export declare type ConfluenceLegacyPublicLinkPage = {
|
|
10025
10073
|
__typename?: 'ConfluenceLegacyPublicLinkPage';
|
|
10026
10074
|
lastEnabledBy?: Maybe<Scalars['String']['output']>;
|
|
10075
|
+
lastEnabledByUser?: Maybe<ConfluenceLegacyPerson>;
|
|
10027
10076
|
lastEnabledDate?: Maybe<Scalars['String']['output']>;
|
|
10028
10077
|
pageId: Scalars['ID']['output'];
|
|
10029
10078
|
pageStatus: ConfluenceLegacyPublicLinkPageStatus;
|
|
@@ -10256,7 +10305,7 @@ export declare enum ConfluenceLegacyReactionContentType {
|
|
|
10256
10305
|
}
|
|
10257
10306
|
export declare type ConfluenceLegacyReactionsId = {
|
|
10258
10307
|
containerId: Scalars['ID']['input'];
|
|
10259
|
-
containerType
|
|
10308
|
+
containerType: Scalars['String']['input'];
|
|
10260
10309
|
contentId: Scalars['ID']['input'];
|
|
10261
10310
|
contentType: Scalars['String']['input'];
|
|
10262
10311
|
};
|
|
@@ -10979,7 +11028,10 @@ export declare type ConfluenceLegacySpace = {
|
|
|
10979
11028
|
hasRestriction: Scalars['Boolean']['output'];
|
|
10980
11029
|
history?: Maybe<ConfluenceLegacySpaceHistory>;
|
|
10981
11030
|
homepage?: Maybe<ConfluenceLegacyContent>;
|
|
11031
|
+
homepageComments?: Maybe<ConfluenceLegacyPaginatedCommentList>;
|
|
10982
11032
|
homepageId?: Maybe<Scalars['ID']['output']>;
|
|
11033
|
+
homepageV2?: Maybe<ConfluenceLegacyContent>;
|
|
11034
|
+
homepageWebSections?: Maybe<Array<Maybe<ConfluenceLegacyWebSection>>>;
|
|
10983
11035
|
icon?: Maybe<ConfluenceLegacyIcon>;
|
|
10984
11036
|
id?: Maybe<Scalars['ID']['output']>;
|
|
10985
11037
|
identifiers?: Maybe<ConfluenceLegacyGlobalSpaceIdentifier>;
|
|
@@ -10990,6 +11042,7 @@ export declare type ConfluenceLegacySpace = {
|
|
|
10990
11042
|
metadata: ConfluenceLegacySpaceMetadata;
|
|
10991
11043
|
name?: Maybe<Scalars['String']['output']>;
|
|
10992
11044
|
operations?: Maybe<Array<Maybe<ConfluenceLegacyOperationCheckResult>>>;
|
|
11045
|
+
pageTree?: Maybe<ConfluenceLegacyPtPage>;
|
|
10993
11046
|
permissions?: Maybe<Array<Maybe<ConfluenceLegacySpacePermission>>>;
|
|
10994
11047
|
settings?: Maybe<ConfluenceLegacySpaceSettings>;
|
|
10995
11048
|
spaceAdmins: ConfluenceLegacyPaginatedPersonList;
|
|
@@ -11031,6 +11084,20 @@ export declare type ConfluenceLegacySpaceHasRestrictionArgs = {
|
|
|
11031
11084
|
accountID: Scalars['String']['input'];
|
|
11032
11085
|
permission: ConfluenceLegacyInspectPermissions;
|
|
11033
11086
|
};
|
|
11087
|
+
export declare type ConfluenceLegacySpaceHomepageCommentsArgs = {
|
|
11088
|
+
depth?: InputMaybe<ConfluenceLegacyDepth>;
|
|
11089
|
+
type?: InputMaybe<Array<InputMaybe<ConfluenceLegacyCommentType>>>;
|
|
11090
|
+
};
|
|
11091
|
+
export declare type ConfluenceLegacySpaceHomepageWebSectionsArgs = {
|
|
11092
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
11093
|
+
locations?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
11094
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
11095
|
+
};
|
|
11096
|
+
export declare type ConfluenceLegacySpacePageTreeArgs = {
|
|
11097
|
+
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11098
|
+
pageTree?: InputMaybe<Scalars['Int']['input']>;
|
|
11099
|
+
status?: InputMaybe<Array<InputMaybe<ConfluenceLegacyPtGraphQlPageStatus>>>;
|
|
11100
|
+
};
|
|
11034
11101
|
export declare type ConfluenceLegacySpaceSpaceAdminsArgs = {
|
|
11035
11102
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
11036
11103
|
excludeAddOns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -11376,6 +11443,7 @@ export declare type ConfluenceLegacyStalePagePayload = {
|
|
|
11376
11443
|
__typename?: 'ConfluenceLegacyStalePagePayload';
|
|
11377
11444
|
lastActivityDate: Scalars['String']['output'];
|
|
11378
11445
|
lastViewedDate?: Maybe<Scalars['String']['output']>;
|
|
11446
|
+
page?: Maybe<ConfluenceLegacyContent>;
|
|
11379
11447
|
pageId: Scalars['String']['output'];
|
|
11380
11448
|
pageStatus: ConfluenceLegacyStalePageStatus;
|
|
11381
11449
|
spaceId: Scalars['String']['output'];
|
|
@@ -11588,6 +11656,10 @@ export declare type ConfluenceLegacyTemplateMigration = {
|
|
|
11588
11656
|
__typename?: 'ConfluenceLegacyTemplateMigration';
|
|
11589
11657
|
unsupportedTemplatesNames: Array<Maybe<Scalars['String']['output']>>;
|
|
11590
11658
|
};
|
|
11659
|
+
export declare type ConfluenceLegacyTemplatePropertySet = {
|
|
11660
|
+
__typename?: 'ConfluenceLegacyTemplatePropertySet';
|
|
11661
|
+
contentAppearance?: Maybe<ConfluenceLegacyTemplateContentAppearance>;
|
|
11662
|
+
};
|
|
11591
11663
|
export declare type ConfluenceLegacyTemplatePropertySetInput = {
|
|
11592
11664
|
contentAppearance?: InputMaybe<ConfluenceLegacyTemplateContentAppearance>;
|
|
11593
11665
|
};
|
|
@@ -11605,6 +11677,7 @@ export declare type ConfluenceLegacyTenant = {
|
|
|
11605
11677
|
__typename?: 'ConfluenceLegacyTenant';
|
|
11606
11678
|
activationId?: Maybe<Scalars['String']['output']>;
|
|
11607
11679
|
cloudId: Scalars['ID']['output'];
|
|
11680
|
+
editions?: Maybe<ConfluenceLegacyEditions>;
|
|
11608
11681
|
environment: ConfluenceLegacyEnvironment;
|
|
11609
11682
|
shard: Scalars['String']['output'];
|
|
11610
11683
|
};
|
|
@@ -11946,6 +12019,7 @@ export declare type ConfluenceLegacyUser = ConfluenceLegacyPerson & {
|
|
|
11946
12019
|
permissionType?: Maybe<ConfluenceLegacySitePermissionType>;
|
|
11947
12020
|
profilePicture?: Maybe<ConfluenceLegacyIcon>;
|
|
11948
12021
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
12022
|
+
spacesAssigned?: Maybe<ConfluenceLegacyPaginatedSpaceList>;
|
|
11949
12023
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
11950
12024
|
type?: Maybe<Scalars['String']['output']>;
|
|
11951
12025
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -12439,6 +12513,7 @@ export declare type ConfluencePage = {
|
|
|
12439
12513
|
properties?: Maybe<Array<Maybe<ConfluencePageProperty>>>;
|
|
12440
12514
|
space?: Maybe<ConfluenceSpace>;
|
|
12441
12515
|
status?: Maybe<ConfluencePageStatus>;
|
|
12516
|
+
subtype?: Maybe<ConfluencePageSubType>;
|
|
12442
12517
|
title?: Maybe<Scalars['String']['output']>;
|
|
12443
12518
|
type?: Maybe<ConfluenceContentType>;
|
|
12444
12519
|
viewer?: Maybe<ConfluencePageViewerSummary>;
|
|
@@ -12472,6 +12547,9 @@ export declare enum ConfluencePageStatus {
|
|
|
12472
12547
|
Historical = "HISTORICAL",
|
|
12473
12548
|
Trashed = "TRASHED"
|
|
12474
12549
|
}
|
|
12550
|
+
export declare enum ConfluencePageSubType {
|
|
12551
|
+
Live = "LIVE"
|
|
12552
|
+
}
|
|
12475
12553
|
export declare type ConfluencePageVersion = {
|
|
12476
12554
|
__typename?: 'ConfluencePageVersion';
|
|
12477
12555
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -16752,11 +16830,16 @@ export declare type DevOpsDeploymentProviderConfigStateArgs = {
|
|
|
16752
16830
|
export declare type DevOpsDesign = Node & {
|
|
16753
16831
|
__typename?: 'DevOpsDesign';
|
|
16754
16832
|
associatedIssues?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseConnection>;
|
|
16833
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
16834
|
+
createdByUser?: Maybe<DevOpsUser>;
|
|
16835
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
16755
16836
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
16756
16837
|
id: Scalars['ID']['output'];
|
|
16757
16838
|
inspectUrl?: Maybe<Scalars['URL']['output']>;
|
|
16758
16839
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
16840
|
+
lastUpdatedByUser?: Maybe<DevOpsUser>;
|
|
16759
16841
|
liveEmbedUrl?: Maybe<Scalars['URL']['output']>;
|
|
16842
|
+
owners?: Maybe<Array<Maybe<DevOpsUser>>>;
|
|
16760
16843
|
provider?: Maybe<DevOpsDataProvider>;
|
|
16761
16844
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
16762
16845
|
status?: Maybe<DevOpsDesignStatus>;
|
|
@@ -18429,7 +18512,6 @@ export declare type EcosystemQueryDataClassificationsArgs = {
|
|
|
18429
18512
|
};
|
|
18430
18513
|
export declare type EcosystemQueryForgeAlertsArgs = {
|
|
18431
18514
|
appId: Scalars['ID']['input'];
|
|
18432
|
-
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
18433
18515
|
};
|
|
18434
18516
|
export declare type EcosystemQueryForgeAuditLogsArgs = {
|
|
18435
18517
|
appId: Scalars['ID']['input'];
|
|
@@ -18674,6 +18756,31 @@ export declare type ForgeAlertsActivityEdge = {
|
|
|
18674
18756
|
cursor: Scalars['String']['output'];
|
|
18675
18757
|
node?: Maybe<ForgeAlertsActivity>;
|
|
18676
18758
|
};
|
|
18759
|
+
export declare type ForgeAlertsActivityLog = {
|
|
18760
|
+
__typename?: 'ForgeAlertsActivityLog';
|
|
18761
|
+
context?: Maybe<ForgeAlertsActivityLogContext>;
|
|
18762
|
+
type: ForgeAlertsAlertActivityType;
|
|
18763
|
+
};
|
|
18764
|
+
export declare type ForgeAlertsActivityLogContext = {
|
|
18765
|
+
__typename?: 'ForgeAlertsActivityLogContext';
|
|
18766
|
+
actor?: Maybe<ForgeAlertsUserInfo>;
|
|
18767
|
+
at?: Maybe<Scalars['String']['output']>;
|
|
18768
|
+
severity?: Maybe<ForgeAlertsActivityLogSeverity>;
|
|
18769
|
+
to?: Maybe<Array<Maybe<ForgeAlertsEmailMeta>>>;
|
|
18770
|
+
};
|
|
18771
|
+
export declare type ForgeAlertsActivityLogSeverity = {
|
|
18772
|
+
__typename?: 'ForgeAlertsActivityLogSeverity';
|
|
18773
|
+
current?: Maybe<Scalars['String']['output']>;
|
|
18774
|
+
previous?: Maybe<Scalars['String']['output']>;
|
|
18775
|
+
};
|
|
18776
|
+
export declare type ForgeAlertsActivityLogsInput = {
|
|
18777
|
+
alertId: Scalars['Int']['input'];
|
|
18778
|
+
};
|
|
18779
|
+
export declare type ForgeAlertsActivityLogsResult = ForgeAlertsActivityLogsSuccess | QueryError;
|
|
18780
|
+
export declare type ForgeAlertsActivityLogsSuccess = {
|
|
18781
|
+
__typename?: 'ForgeAlertsActivityLogsSuccess';
|
|
18782
|
+
activities?: Maybe<Array<Maybe<ForgeAlertsActivityLog>>>;
|
|
18783
|
+
};
|
|
18677
18784
|
export declare enum ForgeAlertsActivityType {
|
|
18678
18785
|
AlertCreated = "ALERT_CREATED",
|
|
18679
18786
|
AlertMuted = "ALERT_MUTED",
|
|
@@ -18684,6 +18791,33 @@ export declare enum ForgeAlertsActivityType {
|
|
|
18684
18791
|
AlertUnmuted = "ALERT_UNMUTED",
|
|
18685
18792
|
AlertUpdated = "ALERT_UPDATED"
|
|
18686
18793
|
}
|
|
18794
|
+
export declare enum ForgeAlertsAlertActivityType {
|
|
18795
|
+
AlertClosed = "ALERT_CLOSED",
|
|
18796
|
+
AlertOpen = "ALERT_OPEN",
|
|
18797
|
+
EmailSent = "EMAIL_SENT",
|
|
18798
|
+
SeverityUpdated = "SEVERITY_UPDATED"
|
|
18799
|
+
}
|
|
18800
|
+
export declare type ForgeAlertsChartDetailsData = {
|
|
18801
|
+
__typename?: 'ForgeAlertsChartDetailsData';
|
|
18802
|
+
interval: ForgeAlertsMetricsIntervalRange;
|
|
18803
|
+
name: Scalars['String']['output'];
|
|
18804
|
+
resolution: ForgeAlertsMetricsResolution;
|
|
18805
|
+
series: Array<ForgeAlertsMetricsSeries>;
|
|
18806
|
+
type: ForgeAlertsMetricsDataType;
|
|
18807
|
+
};
|
|
18808
|
+
export declare type ForgeAlertsChartDetailsInput = {
|
|
18809
|
+
environment: Scalars['String']['input'];
|
|
18810
|
+
filters?: InputMaybe<Array<ForgeAlertsRuleFilters>>;
|
|
18811
|
+
interval?: InputMaybe<ForgeAlertsQueryIntervalInput>;
|
|
18812
|
+
metric: ForgeAlertsRuleMetricType;
|
|
18813
|
+
period?: InputMaybe<Scalars['Int']['input']>;
|
|
18814
|
+
};
|
|
18815
|
+
export declare type ForgeAlertsChartDetailsResult = ForgeAlertsChartDetailsData | QueryError;
|
|
18816
|
+
export declare type ForgeAlertsClosed = {
|
|
18817
|
+
__typename?: 'ForgeAlertsClosed';
|
|
18818
|
+
success: Scalars['Boolean']['output'];
|
|
18819
|
+
};
|
|
18820
|
+
export declare type ForgeAlertsClosedResponse = ForgeAlertsClosed | QueryError;
|
|
18687
18821
|
export declare type ForgeAlertsConfigData = {
|
|
18688
18822
|
__typename?: 'ForgeAlertsConfigData';
|
|
18689
18823
|
alertId: Scalars['String']['output'];
|
|
@@ -18765,6 +18899,14 @@ export declare type ForgeAlertsDeleteRulePayload = Payload & {
|
|
|
18765
18899
|
errors?: Maybe<Array<MutationError>>;
|
|
18766
18900
|
success: Scalars['Boolean']['output'];
|
|
18767
18901
|
};
|
|
18902
|
+
export declare type ForgeAlertsEmailMeta = {
|
|
18903
|
+
__typename?: 'ForgeAlertsEmailMeta';
|
|
18904
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
18905
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
18906
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
18907
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
18908
|
+
};
|
|
18909
|
+
export declare type ForgeAlertsIsAlertOpenForRuleResponse = ForgeAlertsOpen | QueryError;
|
|
18768
18910
|
export declare enum ForgeAlertsListOrderByColumns {
|
|
18769
18911
|
AlertId = "alertId",
|
|
18770
18912
|
ClosedAt = "closedAt",
|
|
@@ -18795,6 +18937,39 @@ export declare type ForgeAlertsListSuccess = {
|
|
|
18795
18937
|
alerts: Array<ForgeAlertsData>;
|
|
18796
18938
|
count: Scalars['Int']['output'];
|
|
18797
18939
|
};
|
|
18940
|
+
export declare type ForgeAlertsMetricsDataPoint = {
|
|
18941
|
+
__typename?: 'ForgeAlertsMetricsDataPoint';
|
|
18942
|
+
timestamp: Scalars['String']['output'];
|
|
18943
|
+
value: Scalars['Float']['output'];
|
|
18944
|
+
};
|
|
18945
|
+
export declare enum ForgeAlertsMetricsDataType {
|
|
18946
|
+
DateTime = "DATE_TIME"
|
|
18947
|
+
}
|
|
18948
|
+
export declare type ForgeAlertsMetricsIntervalRange = {
|
|
18949
|
+
__typename?: 'ForgeAlertsMetricsIntervalRange';
|
|
18950
|
+
end: Scalars['String']['output'];
|
|
18951
|
+
start: Scalars['String']['output'];
|
|
18952
|
+
};
|
|
18953
|
+
export declare type ForgeAlertsMetricsLabelGroup = {
|
|
18954
|
+
__typename?: 'ForgeAlertsMetricsLabelGroup';
|
|
18955
|
+
key: Scalars['String']['output'];
|
|
18956
|
+
value: Scalars['String']['output'];
|
|
18957
|
+
};
|
|
18958
|
+
export declare type ForgeAlertsMetricsResolution = {
|
|
18959
|
+
__typename?: 'ForgeAlertsMetricsResolution';
|
|
18960
|
+
size: Scalars['Int']['output'];
|
|
18961
|
+
units: ForgeAlertsMetricsResolutionUnit;
|
|
18962
|
+
};
|
|
18963
|
+
export declare enum ForgeAlertsMetricsResolutionUnit {
|
|
18964
|
+
Day = "DAY",
|
|
18965
|
+
Hours = "HOURS",
|
|
18966
|
+
Minutes = "MINUTES"
|
|
18967
|
+
}
|
|
18968
|
+
export declare type ForgeAlertsMetricsSeries = {
|
|
18969
|
+
__typename?: 'ForgeAlertsMetricsSeries';
|
|
18970
|
+
data: Array<ForgeAlertsMetricsDataPoint>;
|
|
18971
|
+
groups: Array<ForgeAlertsMetricsLabelGroup>;
|
|
18972
|
+
};
|
|
18798
18973
|
export declare type ForgeAlertsMutation = {
|
|
18799
18974
|
__typename?: 'ForgeAlertsMutation';
|
|
18800
18975
|
appId: Scalars['ID']['output'];
|
|
@@ -18823,29 +18998,100 @@ export declare type ForgeAlertsMutationModifyAlertConfigArgs = {
|
|
|
18823
18998
|
export declare type ForgeAlertsMutationUpdateRuleArgs = {
|
|
18824
18999
|
input: ForgeAlertsUpdateRuleInput;
|
|
18825
19000
|
};
|
|
19001
|
+
export declare type ForgeAlertsOpen = {
|
|
19002
|
+
__typename?: 'ForgeAlertsOpen';
|
|
19003
|
+
success: Scalars['Boolean']['output'];
|
|
19004
|
+
};
|
|
18826
19005
|
export declare type ForgeAlertsQuery = {
|
|
18827
19006
|
__typename?: 'ForgeAlertsQuery';
|
|
18828
19007
|
alert?: Maybe<ForgeAlertsSingleResult>;
|
|
18829
19008
|
alertActivities?: Maybe<ForgeAlertsActivitiesResult>;
|
|
19009
|
+
alertActivityLogs?: Maybe<ForgeAlertsActivityLogsResult>;
|
|
18830
19010
|
alertConfig?: Maybe<ForgeAlertsConfigResult>;
|
|
18831
19011
|
alerts?: Maybe<ForgeAlertsListResult>;
|
|
18832
19012
|
appId: Scalars['ID']['output'];
|
|
19013
|
+
chartDetails?: Maybe<ForgeAlertsChartDetailsResult>;
|
|
19014
|
+
closeAlert?: Maybe<ForgeAlertsClosedResponse>;
|
|
19015
|
+
isAlertOpenForRule?: Maybe<ForgeAlertsIsAlertOpenForRuleResponse>;
|
|
18833
19016
|
rule?: Maybe<ForgeAlertsRuleResult>;
|
|
18834
|
-
|
|
19017
|
+
ruleActivityLogs?: Maybe<ForgeAlertsRuleActivityLogsResult>;
|
|
18835
19018
|
rules?: Maybe<ForgeAlertsRulesResult>;
|
|
18836
19019
|
};
|
|
18837
19020
|
export declare type ForgeAlertsQueryAlertArgs = {
|
|
18838
|
-
|
|
19021
|
+
alertId: Scalars['ID']['input'];
|
|
18839
19022
|
};
|
|
18840
19023
|
export declare type ForgeAlertsQueryAlertActivitiesArgs = {
|
|
18841
19024
|
input: ForgeAlertsActivitiesQueryInput;
|
|
18842
19025
|
};
|
|
19026
|
+
export declare type ForgeAlertsQueryAlertActivityLogsArgs = {
|
|
19027
|
+
query: ForgeAlertsActivityLogsInput;
|
|
19028
|
+
};
|
|
18843
19029
|
export declare type ForgeAlertsQueryAlertConfigArgs = {
|
|
18844
19030
|
input: ForgeAlertsConfigQueryInput;
|
|
18845
19031
|
};
|
|
18846
19032
|
export declare type ForgeAlertsQueryAlertsArgs = {
|
|
18847
19033
|
query: ForgeAlertsListQueryInput;
|
|
18848
19034
|
};
|
|
19035
|
+
export declare type ForgeAlertsQueryChartDetailsArgs = {
|
|
19036
|
+
input: ForgeAlertsChartDetailsInput;
|
|
19037
|
+
};
|
|
19038
|
+
export declare type ForgeAlertsQueryCloseAlertArgs = {
|
|
19039
|
+
ruleId: Scalars['ID']['input'];
|
|
19040
|
+
};
|
|
19041
|
+
export declare type ForgeAlertsQueryIsAlertOpenForRuleArgs = {
|
|
19042
|
+
ruleId: Scalars['ID']['input'];
|
|
19043
|
+
};
|
|
19044
|
+
export declare type ForgeAlertsQueryRuleArgs = {
|
|
19045
|
+
ruleId: Scalars['ID']['input'];
|
|
19046
|
+
};
|
|
19047
|
+
export declare type ForgeAlertsQueryRuleActivityLogsArgs = {
|
|
19048
|
+
query: ForgeAlertsRuleActivityLogsInput;
|
|
19049
|
+
};
|
|
19050
|
+
export declare type ForgeAlertsQueryIntervalInput = {
|
|
19051
|
+
end: Scalars['String']['input'];
|
|
19052
|
+
start: Scalars['String']['input'];
|
|
19053
|
+
};
|
|
19054
|
+
export declare enum ForgeAlertsRuleActivityAction {
|
|
19055
|
+
Created = "CREATED",
|
|
19056
|
+
Deleted = "DELETED",
|
|
19057
|
+
Disabled = "DISABLED",
|
|
19058
|
+
Enabled = "ENABLED",
|
|
19059
|
+
Updated = "UPDATED"
|
|
19060
|
+
}
|
|
19061
|
+
export declare type ForgeAlertsRuleActivityLogContext = {
|
|
19062
|
+
__typename?: 'ForgeAlertsRuleActivityLogContext';
|
|
19063
|
+
ruleName?: Maybe<Scalars['String']['output']>;
|
|
19064
|
+
updates?: Maybe<Array<Maybe<ForgeAlertsRuleActivityLogContextUpdates>>>;
|
|
19065
|
+
};
|
|
19066
|
+
export declare type ForgeAlertsRuleActivityLogContextUpdates = {
|
|
19067
|
+
__typename?: 'ForgeAlertsRuleActivityLogContextUpdates';
|
|
19068
|
+
current?: Maybe<Scalars['String']['output']>;
|
|
19069
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
19070
|
+
previous?: Maybe<Scalars['String']['output']>;
|
|
19071
|
+
};
|
|
19072
|
+
export declare type ForgeAlertsRuleActivityLogs = {
|
|
19073
|
+
__typename?: 'ForgeAlertsRuleActivityLogs';
|
|
19074
|
+
action?: Maybe<ForgeAlertsRuleActivityAction>;
|
|
19075
|
+
actor?: Maybe<ForgeAlertsUserInfo>;
|
|
19076
|
+
context?: Maybe<ForgeAlertsRuleActivityLogContext>;
|
|
19077
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19078
|
+
ruleId?: Maybe<Scalars['String']['output']>;
|
|
19079
|
+
};
|
|
19080
|
+
export declare type ForgeAlertsRuleActivityLogsInput = {
|
|
19081
|
+
action?: InputMaybe<ForgeAlertsRuleActivityAction>;
|
|
19082
|
+
actor?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19083
|
+
endTime: Scalars['String']['input'];
|
|
19084
|
+
limit: Scalars['Int']['input'];
|
|
19085
|
+
page: Scalars['Int']['input'];
|
|
19086
|
+
ruleIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19087
|
+
startTime: Scalars['String']['input'];
|
|
19088
|
+
};
|
|
19089
|
+
export declare type ForgeAlertsRuleActivityLogsResult = ForgeAlertsRuleActivityLogsSuccess | QueryError;
|
|
19090
|
+
export declare type ForgeAlertsRuleActivityLogsSuccess = {
|
|
19091
|
+
__typename?: 'ForgeAlertsRuleActivityLogsSuccess';
|
|
19092
|
+
activities?: Maybe<Array<Maybe<ForgeAlertsRuleActivityLogs>>>;
|
|
19093
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
19094
|
+
};
|
|
18849
19095
|
export declare type ForgeAlertsRuleConditions = {
|
|
18850
19096
|
severity: ForgeAlertsRuleSeverity;
|
|
18851
19097
|
threshold: Scalars['String']['input'];
|
|
@@ -18932,9 +19178,6 @@ export declare type ForgeAlertsRulesSuccess = {
|
|
|
18932
19178
|
__typename?: 'ForgeAlertsRulesSuccess';
|
|
18933
19179
|
rules: Array<ForgeAlertsRulesData>;
|
|
18934
19180
|
};
|
|
18935
|
-
export declare type ForgeAlertsSingleQueryInput = {
|
|
18936
|
-
alertId: Scalars['ID']['input'];
|
|
18937
|
-
};
|
|
18938
19181
|
export declare type ForgeAlertsSingleResult = ForgeAlertsSingleSuccess | QueryError;
|
|
18939
19182
|
export declare type ForgeAlertsSingleSuccess = {
|
|
18940
19183
|
__typename?: 'ForgeAlertsSingleSuccess';
|
|
@@ -20678,13 +20921,18 @@ export declare enum GraphDataDepotDeploymentState {
|
|
|
20678
20921
|
}
|
|
20679
20922
|
export declare type GraphDataDepotDesign = {
|
|
20680
20923
|
__typename?: 'GraphDataDepotDesign';
|
|
20924
|
+
createdBy?: Maybe<GraphDataDepotUser>;
|
|
20925
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20681
20926
|
displayName: Scalars['String']['output'];
|
|
20682
20927
|
externalId: Scalars['String']['output'];
|
|
20683
20928
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
20684
20929
|
id: Scalars['ID']['output'];
|
|
20685
20930
|
inspectUrl?: Maybe<Scalars['String']['output']>;
|
|
20931
|
+
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
20686
20932
|
liveEmbedUrl: Scalars['String']['output'];
|
|
20933
|
+
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
20687
20934
|
status: GraphDataDepotDesignStatus;
|
|
20935
|
+
thumbnail?: Maybe<GraphDataDepotThumbnail>;
|
|
20688
20936
|
type: GraphDataDepotDesignType;
|
|
20689
20937
|
url: Scalars['String']['output'];
|
|
20690
20938
|
};
|
|
@@ -20857,6 +21105,10 @@ export declare type GraphDataDepotTestInfo = {
|
|
|
20857
21105
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
20858
21106
|
totalNumber: Scalars['Int']['output'];
|
|
20859
21107
|
};
|
|
21108
|
+
export declare type GraphDataDepotThumbnail = {
|
|
21109
|
+
__typename?: 'GraphDataDepotThumbnail';
|
|
21110
|
+
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
21111
|
+
};
|
|
20860
21112
|
export declare type GraphDataDepotTrack = {
|
|
20861
21113
|
__typename?: 'GraphDataDepotTrack';
|
|
20862
21114
|
cues: Array<GraphDataDepotCue>;
|
|
@@ -27283,8 +27535,14 @@ export declare type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicNode = Node & {
|
|
|
27283
27535
|
from: GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode;
|
|
27284
27536
|
id: Scalars['ID']['output'];
|
|
27285
27537
|
lastUpdated: Scalars['DateTime']['output'];
|
|
27538
|
+
metadata?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicRelationshipMetadataOutput>;
|
|
27286
27539
|
to: GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode;
|
|
27287
27540
|
};
|
|
27541
|
+
export declare type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicRelationshipMetadataOutput = {
|
|
27542
|
+
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicRelationshipMetadataOutput';
|
|
27543
|
+
syncLabels?: Maybe<Scalars['Boolean']['output']>;
|
|
27544
|
+
synced?: Maybe<Scalars['Boolean']['output']>;
|
|
27545
|
+
};
|
|
27288
27546
|
export declare type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode = {
|
|
27289
27547
|
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode';
|
|
27290
27548
|
data?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartUnion>;
|
|
@@ -35398,7 +35656,7 @@ export declare enum HelpLayoutForgeElementPages {
|
|
|
35398
35656
|
Approvals = "approvals",
|
|
35399
35657
|
CreateRequest = "create_request",
|
|
35400
35658
|
HelpCenter = "help_center",
|
|
35401
|
-
|
|
35659
|
+
MyRequests = "my_requests",
|
|
35402
35660
|
Portal = "portal",
|
|
35403
35661
|
Profile = "profile",
|
|
35404
35662
|
ViewRequest = "view_request"
|
|
@@ -35701,6 +35959,7 @@ export declare type HelpLayoutTopicItem = {
|
|
|
35701
35959
|
__typename?: 'HelpLayoutTopicItem';
|
|
35702
35960
|
displayLink?: Maybe<Scalars['String']['output']>;
|
|
35703
35961
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
35962
|
+
helpObjectType?: Maybe<Scalars['String']['output']>;
|
|
35704
35963
|
logo?: Maybe<Scalars['String']['output']>;
|
|
35705
35964
|
title?: Maybe<Scalars['String']['output']>;
|
|
35706
35965
|
};
|
|
@@ -37992,6 +38251,7 @@ export declare type JiraBoard = Node & {
|
|
|
37992
38251
|
boardId?: Maybe<Scalars['Long']['output']>;
|
|
37993
38252
|
boardType?: Maybe<JiraBoardType>;
|
|
37994
38253
|
boardUrl?: Maybe<Scalars['URL']['output']>;
|
|
38254
|
+
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
37995
38255
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
37996
38256
|
id: Scalars['ID']['output'];
|
|
37997
38257
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -38925,6 +39185,92 @@ export declare type JiraComponentsFieldPayload = Payload & {
|
|
|
38925
39185
|
field?: Maybe<JiraComponentsField>;
|
|
38926
39186
|
success: Scalars['Boolean']['output'];
|
|
38927
39187
|
};
|
|
39188
|
+
export declare enum JiraConfigFieldType {
|
|
39189
|
+
CustomCascadingSelect = "CUSTOM_CASCADING_SELECT",
|
|
39190
|
+
CustomDatetime = "CUSTOM_DATETIME",
|
|
39191
|
+
CustomDatePicker = "CUSTOM_DATE_PICKER",
|
|
39192
|
+
CustomFloat = "CUSTOM_FLOAT",
|
|
39193
|
+
CustomGroupPicker = "CUSTOM_GROUP_PICKER",
|
|
39194
|
+
CustomImportId = "CUSTOM_IMPORT_ID",
|
|
39195
|
+
CustomLabels = "CUSTOM_LABELS",
|
|
39196
|
+
CustomMultiCheckboxes = "CUSTOM_MULTI_CHECKBOXES",
|
|
39197
|
+
CustomMultiGroupPicker = "CUSTOM_MULTI_GROUP_PICKER",
|
|
39198
|
+
CustomMultiSelect = "CUSTOM_MULTI_SELECT",
|
|
39199
|
+
CustomMultiUserPicker = "CUSTOM_MULTI_USER_PICKER",
|
|
39200
|
+
CustomMultiVersion = "CUSTOM_MULTI_VERSION",
|
|
39201
|
+
CustomProject = "CUSTOM_PROJECT",
|
|
39202
|
+
CustomRadioButtons = "CUSTOM_RADIO_BUTTONS",
|
|
39203
|
+
CustomReadonlyField = "CUSTOM_READONLY_FIELD",
|
|
39204
|
+
CustomSelect = "CUSTOM_SELECT",
|
|
39205
|
+
CustomTextarea = "CUSTOM_TEXTAREA",
|
|
39206
|
+
CustomTextField = "CUSTOM_TEXT_FIELD",
|
|
39207
|
+
CustomUrl = "CUSTOM_URL",
|
|
39208
|
+
CustomUserPicker = "CUSTOM_USER_PICKER",
|
|
39209
|
+
CustomVersion = "CUSTOM_VERSION",
|
|
39210
|
+
ServicedeskApprovals = "SERVICEDESK_APPROVALS",
|
|
39211
|
+
ServicedeskCmdbField = "SERVICEDESK_CMDB_FIELD",
|
|
39212
|
+
ServicedeskCustomerOrganizations = "SERVICEDESK_CUSTOMER_ORGANIZATIONS",
|
|
39213
|
+
ServicedeskRequestFeedback = "SERVICEDESK_REQUEST_FEEDBACK",
|
|
39214
|
+
ServicedeskRequestFeedbackDate = "SERVICEDESK_REQUEST_FEEDBACK_DATE",
|
|
39215
|
+
ServicedeskRequestLanguage = "SERVICEDESK_REQUEST_LANGUAGE",
|
|
39216
|
+
ServicedeskRequestParticipants = "SERVICEDESK_REQUEST_PARTICIPANTS",
|
|
39217
|
+
ServicedeskSlaField = "SERVICEDESK_SLA_FIELD",
|
|
39218
|
+
ServicedeskVpOrigin = "SERVICEDESK_VP_ORIGIN",
|
|
39219
|
+
SoftwareEpicColor = "SOFTWARE_EPIC_COLOR",
|
|
39220
|
+
SoftwareEpicIssueColor = "SOFTWARE_EPIC_ISSUE_COLOR",
|
|
39221
|
+
SoftwareEpicLabel = "SOFTWARE_EPIC_LABEL",
|
|
39222
|
+
SoftwareEpicLexoRank = "SOFTWARE_EPIC_LEXO_RANK",
|
|
39223
|
+
SoftwareEpicLink = "SOFTWARE_EPIC_LINK",
|
|
39224
|
+
SoftwareEpicSprint = "SOFTWARE_EPIC_SPRINT",
|
|
39225
|
+
SoftwareEpicStatus = "SOFTWARE_EPIC_STATUS",
|
|
39226
|
+
StandardAffectedVersions = "STANDARD_AFFECTED_VERSIONS",
|
|
39227
|
+
StandardAggregateProgress = "STANDARD_AGGREGATE_PROGRESS",
|
|
39228
|
+
StandardAggregateTimeEstimate = "STANDARD_AGGREGATE_TIME_ESTIMATE",
|
|
39229
|
+
StandardAggregateTimeOriginalEstimate = "STANDARD_AGGREGATE_TIME_ORIGINAL_ESTIMATE",
|
|
39230
|
+
StandardAggregateTimeSpent = "STANDARD_AGGREGATE_TIME_SPENT",
|
|
39231
|
+
StandardAssignee = "STANDARD_ASSIGNEE",
|
|
39232
|
+
StandardAttachment = "STANDARD_ATTACHMENT",
|
|
39233
|
+
StandardComment = "STANDARD_COMMENT",
|
|
39234
|
+
StandardComponents = "STANDARD_COMPONENTS",
|
|
39235
|
+
StandardCreated = "STANDARD_CREATED",
|
|
39236
|
+
StandardCreator = "STANDARD_CREATOR",
|
|
39237
|
+
StandardDescription = "STANDARD_DESCRIPTION",
|
|
39238
|
+
StandardDueDate = "STANDARD_DUE_DATE",
|
|
39239
|
+
StandardEnvironment = "STANDARD_ENVIRONMENT",
|
|
39240
|
+
StandardFixForVersions = "STANDARD_FIX_FOR_VERSIONS",
|
|
39241
|
+
StandardFormToken = "STANDARD_FORM_TOKEN",
|
|
39242
|
+
StandardIssueKey = "STANDARD_ISSUE_KEY",
|
|
39243
|
+
StandardIssueLinks = "STANDARD_ISSUE_LINKS",
|
|
39244
|
+
StandardIssueNumber = "STANDARD_ISSUE_NUMBER",
|
|
39245
|
+
StandardIssueType = "STANDARD_ISSUE_TYPE",
|
|
39246
|
+
StandardLabels = "STANDARD_LABELS",
|
|
39247
|
+
StandardLastViewed = "STANDARD_LAST_VIEWED",
|
|
39248
|
+
StandardParent = "STANDARD_PARENT",
|
|
39249
|
+
StandardPriority = "STANDARD_PRIORITY",
|
|
39250
|
+
StandardProgress = "STANDARD_PROGRESS",
|
|
39251
|
+
StandardProject = "STANDARD_PROJECT",
|
|
39252
|
+
StandardProjectKey = "STANDARD_PROJECT_KEY",
|
|
39253
|
+
StandardReporter = "STANDARD_REPORTER",
|
|
39254
|
+
StandardResolution = "STANDARD_RESOLUTION",
|
|
39255
|
+
StandardResolutionDate = "STANDARD_RESOLUTION_DATE",
|
|
39256
|
+
StandardSecurity = "STANDARD_SECURITY",
|
|
39257
|
+
StandardStatus = "STANDARD_STATUS",
|
|
39258
|
+
StandardSubtasks = "STANDARD_SUBTASKS",
|
|
39259
|
+
StandardSummary = "STANDARD_SUMMARY",
|
|
39260
|
+
StandardThumbnail = "STANDARD_THUMBNAIL",
|
|
39261
|
+
StandardTimetracking = "STANDARD_TIMETRACKING",
|
|
39262
|
+
StandardTimeEstimate = "STANDARD_TIME_ESTIMATE",
|
|
39263
|
+
StandardTimeOriginalEstimate = "STANDARD_TIME_ORIGINAL_ESTIMATE",
|
|
39264
|
+
StandardTimeSpent = "STANDARD_TIME_SPENT",
|
|
39265
|
+
StandardUpdated = "STANDARD_UPDATED",
|
|
39266
|
+
StandardVoters = "STANDARD_VOTERS",
|
|
39267
|
+
StandardVotes = "STANDARD_VOTES",
|
|
39268
|
+
StandardWatchers = "STANDARD_WATCHERS",
|
|
39269
|
+
StandardWatches = "STANDARD_WATCHES",
|
|
39270
|
+
StandardWorklog = "STANDARD_WORKLOG",
|
|
39271
|
+
StandardWorkratio = "STANDARD_WORKRATIO",
|
|
39272
|
+
Unsupported = "UNSUPPORTED"
|
|
39273
|
+
}
|
|
38928
39274
|
export declare type JiraConfigState = {
|
|
38929
39275
|
__typename?: 'JiraConfigState';
|
|
38930
39276
|
appId: Scalars['ID']['output'];
|
|
@@ -39069,7 +39415,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
39069
39415
|
type: Scalars['String']['output'];
|
|
39070
39416
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
39071
39417
|
};
|
|
39072
|
-
export declare type JiraConnectSingleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39418
|
+
export declare type JiraConnectSingleSelectField = JiraHasSelectableValueOptions & JiraHasSingleSelectedValue & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39073
39419
|
__typename?: 'JiraConnectSingleSelectField';
|
|
39074
39420
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
39075
39421
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -39081,6 +39427,8 @@ export declare type JiraConnectSingleSelectField = JiraIssueField & JiraIssueFie
|
|
|
39081
39427
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39082
39428
|
name: Scalars['String']['output'];
|
|
39083
39429
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
39430
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
39431
|
+
selectedValue?: Maybe<JiraSelectableValue>;
|
|
39084
39432
|
type: Scalars['String']['output'];
|
|
39085
39433
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
39086
39434
|
};
|
|
@@ -39091,6 +39439,14 @@ export declare type JiraConnectSingleSelectFieldFieldOptionsArgs = {
|
|
|
39091
39439
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39092
39440
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
39093
39441
|
};
|
|
39442
|
+
export declare type JiraConnectSingleSelectFieldSelectableValueOptionsArgs = {
|
|
39443
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39444
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
39445
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
39446
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39447
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39448
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
39449
|
+
};
|
|
39094
39450
|
export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39095
39451
|
__typename?: 'JiraConnectTextField';
|
|
39096
39452
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -39167,6 +39523,7 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
39167
39523
|
export declare type JiraCreateBoardFieldInput = {
|
|
39168
39524
|
issueTypes?: InputMaybe<Array<JiraIssueTypeInput>>;
|
|
39169
39525
|
labels?: InputMaybe<Array<JiraLabelsInput>>;
|
|
39526
|
+
projects: Array<JiraProjectInput>;
|
|
39170
39527
|
teams?: InputMaybe<Array<JiraAtlassianTeamInput>>;
|
|
39171
39528
|
};
|
|
39172
39529
|
export declare type JiraCreateBoardInput = {
|
|
@@ -39182,7 +39539,7 @@ export declare type JiraCreateBoardPayload = Payload & {
|
|
|
39182
39539
|
success: Scalars['Boolean']['output'];
|
|
39183
39540
|
};
|
|
39184
39541
|
export declare type JiraCreateBoardSource = {
|
|
39185
|
-
fieldInput
|
|
39542
|
+
fieldInput: JiraCreateBoardFieldInput;
|
|
39186
39543
|
};
|
|
39187
39544
|
export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
39188
39545
|
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
@@ -40065,6 +40422,10 @@ export declare type JiraEstimate = {
|
|
|
40065
40422
|
export declare type JiraEstimateInput = {
|
|
40066
40423
|
timeInSeconds: Scalars['Long']['input'];
|
|
40067
40424
|
};
|
|
40425
|
+
export declare type JiraExtensionRenderingContextInput = {
|
|
40426
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
40427
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
40428
|
+
};
|
|
40068
40429
|
export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
40069
40430
|
__typename?: 'JiraFallbackField';
|
|
40070
40431
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40136,6 +40497,26 @@ export declare type JiraFieldConfig = {
|
|
|
40136
40497
|
isRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
40137
40498
|
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
40138
40499
|
};
|
|
40500
|
+
export declare type JiraFieldConfigConnection = {
|
|
40501
|
+
__typename?: 'JiraFieldConfigConnection';
|
|
40502
|
+
edges?: Maybe<Array<JiraFieldConfigEdge>>;
|
|
40503
|
+
nodes?: Maybe<Array<JiraIssueFieldConfig>>;
|
|
40504
|
+
pageInfo?: Maybe<PageInfo>;
|
|
40505
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
40506
|
+
};
|
|
40507
|
+
export declare type JiraFieldConfigEdge = {
|
|
40508
|
+
__typename?: 'JiraFieldConfigEdge';
|
|
40509
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40510
|
+
node?: Maybe<JiraIssueFieldConfig>;
|
|
40511
|
+
};
|
|
40512
|
+
export declare type JiraFieldConfigFilterInput = {
|
|
40513
|
+
aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40514
|
+
cloudId: Scalars['ID']['input'];
|
|
40515
|
+
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40516
|
+
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
40517
|
+
projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40518
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
40519
|
+
};
|
|
40139
40520
|
export declare type JiraFieldNonEditableReason = {
|
|
40140
40521
|
__typename?: 'JiraFieldNonEditableReason';
|
|
40141
40522
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -40291,6 +40672,20 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
40291
40672
|
type: Scalars['String']['output'];
|
|
40292
40673
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
40293
40674
|
};
|
|
40675
|
+
export declare enum JiraForgeEnvironmentType {
|
|
40676
|
+
Development = "DEVELOPMENT",
|
|
40677
|
+
Production = "PRODUCTION",
|
|
40678
|
+
Staging = "STAGING"
|
|
40679
|
+
}
|
|
40680
|
+
export declare type JiraForgeExtension = {
|
|
40681
|
+
__typename?: 'JiraForgeExtension';
|
|
40682
|
+
environmentKey: Scalars['String']['output'];
|
|
40683
|
+
environmentType: JiraForgeEnvironmentType;
|
|
40684
|
+
hiddenBy?: Maybe<JiraVisibilityControlMechanism>;
|
|
40685
|
+
id: Scalars['ID']['output'];
|
|
40686
|
+
properties: Scalars['JSON']['output'];
|
|
40687
|
+
type: Scalars['String']['output'];
|
|
40688
|
+
};
|
|
40294
40689
|
export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40295
40690
|
__typename?: 'JiraForgeGroupField';
|
|
40296
40691
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40382,6 +40777,16 @@ export declare type JiraForgeObjectFieldPayload = Payload & {
|
|
|
40382
40777
|
field?: Maybe<JiraForgeObjectField>;
|
|
40383
40778
|
success: Scalars['Boolean']['output'];
|
|
40384
40779
|
};
|
|
40780
|
+
export declare type JiraForgeQuery = {
|
|
40781
|
+
__typename?: 'JiraForgeQuery';
|
|
40782
|
+
extensions?: Maybe<Array<JiraForgeExtension>>;
|
|
40783
|
+
};
|
|
40784
|
+
export declare type JiraForgeQueryExtensionsArgs = {
|
|
40785
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
40786
|
+
context?: InputMaybe<JiraExtensionRenderingContextInput>;
|
|
40787
|
+
includeHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40788
|
+
types: Array<Scalars['String']['input']>;
|
|
40789
|
+
};
|
|
40385
40790
|
export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40386
40791
|
__typename?: 'JiraForgeStringField';
|
|
40387
40792
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41294,6 +41699,7 @@ export declare type JiraIssueExportInput = {
|
|
|
41294
41699
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
41295
41700
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
41296
41701
|
modified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41702
|
+
pagerStart?: InputMaybe<Scalars['Int']['input']>;
|
|
41297
41703
|
};
|
|
41298
41704
|
export declare type JiraIssueExportTask = {
|
|
41299
41705
|
__typename?: 'JiraIssueExportTask';
|
|
@@ -41301,6 +41707,7 @@ export declare type JiraIssueExportTask = {
|
|
|
41301
41707
|
};
|
|
41302
41708
|
export declare type JiraIssueExportTaskCompleted = {
|
|
41303
41709
|
__typename?: 'JiraIssueExportTaskCompleted';
|
|
41710
|
+
downloadResultUrl?: Maybe<Scalars['String']['output']>;
|
|
41304
41711
|
task?: Maybe<JiraIssueExportTask>;
|
|
41305
41712
|
};
|
|
41306
41713
|
export declare type JiraIssueExportTaskProgress = {
|
|
@@ -41339,6 +41746,17 @@ export declare type JiraIssueField = {
|
|
|
41339
41746
|
name: Scalars['String']['output'];
|
|
41340
41747
|
type: Scalars['String']['output'];
|
|
41341
41748
|
};
|
|
41749
|
+
export declare type JiraIssueFieldConfig = Node & {
|
|
41750
|
+
__typename?: 'JiraIssueFieldConfig';
|
|
41751
|
+
customId?: Maybe<Scalars['Int']['output']>;
|
|
41752
|
+
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
41753
|
+
fieldId: Scalars['String']['output'];
|
|
41754
|
+
id: Scalars['ID']['output'];
|
|
41755
|
+
isCustom: Scalars['Boolean']['output'];
|
|
41756
|
+
jqlClauseNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
41757
|
+
name: Scalars['String']['output'];
|
|
41758
|
+
type: JiraConfigFieldType;
|
|
41759
|
+
};
|
|
41342
41760
|
export declare type JiraIssueFieldConfiguration = {
|
|
41343
41761
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41344
41762
|
};
|
|
@@ -41973,6 +42391,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
41973
42391
|
JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
|
|
41974
42392
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
41975
42393
|
JiraConnectNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
42394
|
+
JiraConnectSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
41976
42395
|
JiraConnectTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
41977
42396
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
41978
42397
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
@@ -42681,6 +43100,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
42681
43100
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
42682
43101
|
};
|
|
42683
43102
|
export declare enum JiraJqlViewContext {
|
|
43103
|
+
JswPlans = "JSW_PLANS",
|
|
42684
43104
|
Jwm = "JWM",
|
|
42685
43105
|
ShadowRequest = "SHADOW_REQUEST"
|
|
42686
43106
|
}
|
|
@@ -43281,6 +43701,7 @@ export declare type JiraMutation = {
|
|
|
43281
43701
|
updatePeopleField?: Maybe<JiraPeopleFieldPayload>;
|
|
43282
43702
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
43283
43703
|
updateProjectField?: Maybe<JiraProjectFieldPayload>;
|
|
43704
|
+
updateProjectName?: Maybe<JiraProjectUpdateNameMutationPayload>;
|
|
43284
43705
|
updateProjectNotificationPreferences?: Maybe<JiraUpdateProjectNotificationPreferencesPayload>;
|
|
43285
43706
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
43286
43707
|
updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
|
|
@@ -43700,6 +44121,9 @@ export declare type JiraMutationUpdatePriorityFieldArgs = {
|
|
|
43700
44121
|
export declare type JiraMutationUpdateProjectFieldArgs = {
|
|
43701
44122
|
input: JiraUpdateProjectFieldInput;
|
|
43702
44123
|
};
|
|
44124
|
+
export declare type JiraMutationUpdateProjectNameArgs = {
|
|
44125
|
+
input: JiraProjectUpdateNameInput;
|
|
44126
|
+
};
|
|
43703
44127
|
export declare type JiraMutationUpdateProjectNotificationPreferencesArgs = {
|
|
43704
44128
|
cloudId: Scalars['ID']['input'];
|
|
43705
44129
|
input: JiraUpdateProjectNotificationPreferencesInput;
|
|
@@ -45312,6 +45736,7 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
45312
45736
|
export declare enum JiraProjectPermissionType {
|
|
45313
45737
|
AddComments = "ADD_COMMENTS",
|
|
45314
45738
|
AdministerProjects = "ADMINISTER_PROJECTS",
|
|
45739
|
+
ArchiveIssues = "ARCHIVE_ISSUES",
|
|
45315
45740
|
AssignableUser = "ASSIGNABLE_USER",
|
|
45316
45741
|
AssignIssues = "ASSIGN_ISSUES",
|
|
45317
45742
|
BrowseProjects = "BROWSE_PROJECTS",
|
|
@@ -45340,6 +45765,7 @@ export declare enum JiraProjectPermissionType {
|
|
|
45340
45765
|
ScheduleIssues = "SCHEDULE_ISSUES",
|
|
45341
45766
|
SetIssueSecurity = "SET_ISSUE_SECURITY",
|
|
45342
45767
|
TransitionIssues = "TRANSITION_ISSUES",
|
|
45768
|
+
UnarchiveIssues = "UNARCHIVE_ISSUES",
|
|
45343
45769
|
ViewDevTools = "VIEW_DEV_TOOLS",
|
|
45344
45770
|
ViewReadonlyWorkflow = "VIEW_READONLY_WORKFLOW",
|
|
45345
45771
|
ViewVotersAndWatchers = "VIEW_VOTERS_AND_WATCHERS",
|
|
@@ -45469,6 +45895,17 @@ export declare type JiraProjectTypeDetailsEdge = {
|
|
|
45469
45895
|
cursor: Scalars['String']['output'];
|
|
45470
45896
|
node?: Maybe<JiraProjectTypeDetails>;
|
|
45471
45897
|
};
|
|
45898
|
+
export declare type JiraProjectUpdateNameInput = {
|
|
45899
|
+
cloudId: Scalars['ID']['input'];
|
|
45900
|
+
name: Scalars['String']['input'];
|
|
45901
|
+
projectIdOrKey: Scalars['String']['input'];
|
|
45902
|
+
};
|
|
45903
|
+
export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
45904
|
+
__typename?: 'JiraProjectUpdateNameMutationPayload';
|
|
45905
|
+
errors?: Maybe<Array<MutationError>>;
|
|
45906
|
+
project?: Maybe<JiraProject>;
|
|
45907
|
+
success: Scalars['Boolean']['output'];
|
|
45908
|
+
};
|
|
45472
45909
|
export declare type JiraPullRequestReviewer = {
|
|
45473
45910
|
__typename?: 'JiraPullRequestReviewer';
|
|
45474
45911
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -45521,6 +45958,7 @@ export declare type JiraQuery = {
|
|
|
45521
45958
|
filter?: Maybe<JiraFilter>;
|
|
45522
45959
|
filters?: Maybe<Array<Maybe<JiraFilter>>>;
|
|
45523
45960
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
45961
|
+
forge: JiraForgeQuery;
|
|
45524
45962
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
45525
45963
|
getArchivedIssues?: Maybe<JiraArchivedIssueConnection>;
|
|
45526
45964
|
getArchivedIssuesFilterOptions?: Maybe<JiraArchivedIssuesFilterOptions>;
|
|
@@ -45537,6 +45975,7 @@ export declare type JiraQuery = {
|
|
|
45537
45975
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
45538
45976
|
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
45539
45977
|
hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
45978
|
+
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
45540
45979
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
45541
45980
|
integerUserProperty?: Maybe<JiraEntityPropertyInt>;
|
|
45542
45981
|
isAiEnabledForIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -45570,11 +46009,13 @@ export declare type JiraQuery = {
|
|
|
45570
46009
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
45571
46010
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
45572
46011
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
46012
|
+
jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
|
|
45573
46013
|
jiraProject?: Maybe<JiraProject>;
|
|
45574
46014
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
45575
46015
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
45576
46016
|
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
45577
46017
|
jiraSoftwareNavigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
46018
|
+
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
45578
46019
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
45579
46020
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
45580
46021
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
@@ -45857,6 +46298,7 @@ export declare type JiraQueryGetArchivedIssuesFilterOptionsArgs = {
|
|
|
45857
46298
|
};
|
|
45858
46299
|
export declare type JiraQueryGetArchivedIssuesForProjectArgs = {
|
|
45859
46300
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46301
|
+
cloudId: Scalars['ID']['input'];
|
|
45860
46302
|
filterBy?: InputMaybe<JiraArchivedIssuesFilterInput>;
|
|
45861
46303
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45862
46304
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -45924,6 +46366,10 @@ export declare type JiraQueryHasGlobalPermissionArgs = {
|
|
|
45924
46366
|
cloudId: Scalars['ID']['input'];
|
|
45925
46367
|
key: JiraGlobalPermissionType;
|
|
45926
46368
|
};
|
|
46369
|
+
export declare type JiraQueryHasProjectPermissionArgs = {
|
|
46370
|
+
permission: JiraProjectPermissionType;
|
|
46371
|
+
projectId: Scalars['ID']['input'];
|
|
46372
|
+
};
|
|
45927
46373
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
45928
46374
|
projectId: Scalars['ID']['input'];
|
|
45929
46375
|
};
|
|
@@ -46065,6 +46511,13 @@ export declare type JiraQueryJiraCalendarArgs = {
|
|
|
46065
46511
|
export declare type JiraQueryJiraFetchBulkOperationDetailsArgs = {
|
|
46066
46512
|
issueIds: Array<Scalars['ID']['input']>;
|
|
46067
46513
|
};
|
|
46514
|
+
export declare type JiraQueryJiraFieldConfigsArgs = {
|
|
46515
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46516
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
46517
|
+
filter?: InputMaybe<JiraFieldConfigFilterInput>;
|
|
46518
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46519
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
46520
|
+
};
|
|
46068
46521
|
export declare type JiraQueryJiraProjectArgs = {
|
|
46069
46522
|
id: Scalars['ID']['input'];
|
|
46070
46523
|
};
|
|
@@ -46087,6 +46540,9 @@ export declare type JiraQueryJiraSoftwareNavigationItemsArgs = {
|
|
|
46087
46540
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46088
46541
|
projectIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
46089
46542
|
};
|
|
46543
|
+
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
46544
|
+
cloudId: Scalars['ID']['input'];
|
|
46545
|
+
};
|
|
46090
46546
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
46091
46547
|
cloudId: Scalars['ID']['input'];
|
|
46092
46548
|
};
|
|
@@ -47122,6 +47578,7 @@ export declare type JiraScenarioIssueValues = {
|
|
|
47122
47578
|
goalsField?: Maybe<JiraGoalsField>;
|
|
47123
47579
|
issueTypeField?: Maybe<JiraIssueTypeField>;
|
|
47124
47580
|
projectField?: Maybe<JiraProjectField>;
|
|
47581
|
+
scenarioKey?: Maybe<Scalars['ID']['output']>;
|
|
47125
47582
|
scenarioType?: Maybe<JiraScenarioType>;
|
|
47126
47583
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
47127
47584
|
statusField?: Maybe<JiraStatusField>;
|
|
@@ -49728,8 +50185,10 @@ export declare type JiraUserPreferences = {
|
|
|
49728
50185
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
49729
50186
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
49730
50187
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
50188
|
+
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
49731
50189
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
49732
50190
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
50191
|
+
issueViewPinnedFieldsWithDefault?: Maybe<Scalars['String']['output']>;
|
|
49733
50192
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
49734
50193
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
49735
50194
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
@@ -49738,6 +50197,9 @@ export declare type JiraUserPreferences = {
|
|
|
49738
50197
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
49739
50198
|
projectKey: Scalars['String']['input'];
|
|
49740
50199
|
};
|
|
50200
|
+
export declare type JiraUserPreferencesIssueViewPinnedFieldsWithDefaultArgs = {
|
|
50201
|
+
projectKey: Scalars['String']['input'];
|
|
50202
|
+
};
|
|
49741
50203
|
export declare type JiraUserPreferencesMutation = {
|
|
49742
50204
|
__typename?: 'JiraUserPreferencesMutation';
|
|
49743
50205
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
@@ -50303,6 +50765,10 @@ export declare type JiraViewScopeInput = {
|
|
|
50303
50765
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
50304
50766
|
projectKeys?: InputMaybe<JiraProjectKeysInput>;
|
|
50305
50767
|
};
|
|
50768
|
+
export declare enum JiraVisibilityControlMechanism {
|
|
50769
|
+
AppAccessRules = "AppAccessRules",
|
|
50770
|
+
DisplayConditions = "DisplayConditions"
|
|
50771
|
+
}
|
|
50306
50772
|
export declare type JiraVote = {
|
|
50307
50773
|
__typename?: 'JiraVote';
|
|
50308
50774
|
count?: Maybe<Scalars['Long']['output']>;
|
|
@@ -51702,12 +52168,13 @@ export declare type KnowledgeDiscoveryConfluenceSpace = KnowledgeDiscoveryEntity
|
|
|
51702
52168
|
id: Scalars['ID']['output'];
|
|
51703
52169
|
};
|
|
51704
52170
|
export declare type KnowledgeDiscoveryCreateAdminhubBookmarkInput = {
|
|
52171
|
+
cloudId: Scalars['ID']['input'];
|
|
51705
52172
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
51706
52173
|
keyPhrases?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
51707
52174
|
orgId: Scalars['String']['input'];
|
|
51708
52175
|
title: Scalars['String']['input'];
|
|
51709
52176
|
url: Scalars['String']['input'];
|
|
51710
|
-
workspaceId
|
|
52177
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
51711
52178
|
};
|
|
51712
52179
|
export declare type KnowledgeDiscoveryCreateAdminhubBookmarkPayload = Payload & {
|
|
51713
52180
|
__typename?: 'KnowledgeDiscoveryCreateAdminhubBookmarkPayload';
|
|
@@ -51768,9 +52235,10 @@ export declare type KnowledgeDiscoveryDeleteBookmarkInput = {
|
|
|
51768
52235
|
url: Scalars['String']['input'];
|
|
51769
52236
|
};
|
|
51770
52237
|
export declare type KnowledgeDiscoveryDeleteBookmarksInput = {
|
|
52238
|
+
cloudId: Scalars['ID']['input'];
|
|
51771
52239
|
deleteRequests?: InputMaybe<Array<KnowledgeDiscoveryDeleteBookmarkInput>>;
|
|
51772
52240
|
orgId: Scalars['ID']['input'];
|
|
51773
|
-
workspaceId
|
|
52241
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
51774
52242
|
};
|
|
51775
52243
|
export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
51776
52244
|
__typename?: 'KnowledgeDiscoveryDeleteBookmarksPayload';
|
|
@@ -51809,8 +52277,16 @@ export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
|
|
|
51809
52277
|
};
|
|
51810
52278
|
export declare type KnowledgeDiscoveryKeyPhrase = {
|
|
51811
52279
|
__typename?: 'KnowledgeDiscoveryKeyPhrase';
|
|
52280
|
+
category: KnowledgeDiscoveryKeyPhraseCategory;
|
|
51812
52281
|
keyPhrase: Scalars['String']['output'];
|
|
51813
52282
|
};
|
|
52283
|
+
export declare enum KnowledgeDiscoveryKeyPhraseCategory {
|
|
52284
|
+
Acronym = "ACRONYM",
|
|
52285
|
+
IndustryJargon = "INDUSTRY_JARGON",
|
|
52286
|
+
Other = "OTHER",
|
|
52287
|
+
Project = "PROJECT",
|
|
52288
|
+
Team = "TEAM"
|
|
52289
|
+
}
|
|
51814
52290
|
export declare type KnowledgeDiscoveryKeyPhraseConnection = {
|
|
51815
52291
|
__typename?: 'KnowledgeDiscoveryKeyPhraseConnection';
|
|
51816
52292
|
nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryKeyPhrase>>>;
|
|
@@ -51861,9 +52337,10 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
51861
52337
|
};
|
|
51862
52338
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
51863
52339
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52340
|
+
cloudId: Scalars['ID']['input'];
|
|
51864
52341
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51865
52342
|
orgId: Scalars['String']['input'];
|
|
51866
|
-
workspaceId
|
|
52343
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
51867
52344
|
};
|
|
51868
52345
|
export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
|
|
51869
52346
|
cloudId: Scalars['String']['input'];
|
|
@@ -52015,10 +52492,34 @@ export declare type LogQueryInput = {
|
|
|
52015
52492
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
52016
52493
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
52017
52494
|
};
|
|
52495
|
+
export declare type LpBunchballBadge = {
|
|
52496
|
+
__typename?: 'LpBunchballBadge';
|
|
52497
|
+
contentfulCourseId?: Maybe<Scalars['String']['output']>;
|
|
52498
|
+
dateEarned?: Maybe<Scalars['String']['output']>;
|
|
52499
|
+
fullUrl?: Maybe<Scalars['String']['output']>;
|
|
52500
|
+
missionId?: Maybe<Scalars['Int']['output']>;
|
|
52501
|
+
thumbUrl?: Maybe<Scalars['String']['output']>;
|
|
52502
|
+
};
|
|
52503
|
+
export declare type LpBunchballBadgeConnection = {
|
|
52504
|
+
__typename?: 'LpBunchballBadgeConnection';
|
|
52505
|
+
edges?: Maybe<Array<LpBunchballBadgeEdge>>;
|
|
52506
|
+
pageInfo?: Maybe<LpPageInfo>;
|
|
52507
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
52508
|
+
};
|
|
52509
|
+
export declare type LpBunchballBadgeEdge = {
|
|
52510
|
+
__typename?: 'LpBunchballBadgeEdge';
|
|
52511
|
+
cursor: Scalars['String']['output'];
|
|
52512
|
+
node?: Maybe<LpBunchballBadge>;
|
|
52513
|
+
};
|
|
52018
52514
|
export declare enum LpCertStatus {
|
|
52019
52515
|
Active = "ACTIVE",
|
|
52020
52516
|
Expired = "EXPIRED"
|
|
52021
52517
|
}
|
|
52518
|
+
export declare enum LpCertType {
|
|
52519
|
+
Badge = "BADGE",
|
|
52520
|
+
Certification = "CERTIFICATION",
|
|
52521
|
+
Standing = "STANDING"
|
|
52522
|
+
}
|
|
52022
52523
|
export declare type LpCertmetricsCertificate = {
|
|
52023
52524
|
__typename?: 'LpCertmetricsCertificate';
|
|
52024
52525
|
activeDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -52029,6 +52530,7 @@ export declare type LpCertmetricsCertificate = {
|
|
|
52029
52530
|
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
52030
52531
|
publicUrl?: Maybe<Scalars['String']['output']>;
|
|
52031
52532
|
status?: Maybe<LpCertStatus>;
|
|
52533
|
+
type?: Maybe<LpCertType>;
|
|
52032
52534
|
};
|
|
52033
52535
|
export declare type LpCertmetricsCertificateConnection = {
|
|
52034
52536
|
__typename?: 'LpCertmetricsCertificateConnection';
|
|
@@ -52049,6 +52551,7 @@ export declare type LpCourseProgress = {
|
|
|
52049
52551
|
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
52050
52552
|
status?: Maybe<LpCourseStatus>;
|
|
52051
52553
|
title?: Maybe<Scalars['String']['output']>;
|
|
52554
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
52052
52555
|
};
|
|
52053
52556
|
export declare type LpCourseProgressConnection = {
|
|
52054
52557
|
__typename?: 'LpCourseProgressConnection';
|
|
@@ -52068,20 +52571,29 @@ export declare enum LpCourseStatus {
|
|
|
52068
52571
|
export declare type LpLearner = Node & {
|
|
52069
52572
|
__typename?: 'LpLearner';
|
|
52070
52573
|
atlassianId: Scalars['String']['output'];
|
|
52574
|
+
bunchballBadges?: Maybe<LpBunchballBadgeConnection>;
|
|
52071
52575
|
certmetricsCertificates?: Maybe<LpCertmetricsCertificateConnection>;
|
|
52072
52576
|
courses?: Maybe<LpCourseProgressConnection>;
|
|
52073
52577
|
id: Scalars['ID']['output'];
|
|
52074
52578
|
};
|
|
52579
|
+
export declare type LpLearnerBunchballBadgesArgs = {
|
|
52580
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52581
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
52582
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52583
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52584
|
+
};
|
|
52075
52585
|
export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
52076
52586
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52077
52587
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52078
52588
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52079
52589
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52080
52590
|
status?: InputMaybe<LpCertStatus>;
|
|
52591
|
+
type?: InputMaybe<Array<InputMaybe<LpCertType>>>;
|
|
52081
52592
|
};
|
|
52082
52593
|
export declare type LpLearnerCoursesArgs = {
|
|
52083
52594
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52084
52595
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52596
|
+
dateCompletedSortOrder?: InputMaybe<LpSortOrder>;
|
|
52085
52597
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52086
52598
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52087
52599
|
status?: InputMaybe<LpCourseStatus>;
|
|
@@ -52101,6 +52613,7 @@ export declare type LpLessonProgress = {
|
|
|
52101
52613
|
__typename?: 'LpLessonProgress';
|
|
52102
52614
|
lessonId?: Maybe<Scalars['String']['output']>;
|
|
52103
52615
|
status?: Maybe<Scalars['String']['output']>;
|
|
52616
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
52104
52617
|
};
|
|
52105
52618
|
export declare type LpPageInfo = {
|
|
52106
52619
|
__typename?: 'LpPageInfo';
|
|
@@ -52109,6 +52622,10 @@ export declare type LpPageInfo = {
|
|
|
52109
52622
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
52110
52623
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
52111
52624
|
};
|
|
52625
|
+
export declare enum LpSortOrder {
|
|
52626
|
+
Asc = "ASC",
|
|
52627
|
+
Desc = "DESC"
|
|
52628
|
+
}
|
|
52112
52629
|
export declare type MarketplaceApp = {
|
|
52113
52630
|
__typename?: 'MarketplaceApp';
|
|
52114
52631
|
appId: Scalars['ID']['output'];
|
|
@@ -57667,6 +58184,7 @@ export declare type Query = {
|
|
|
57667
58184
|
confluenceLegacy_homeUserSettings?: Maybe<ConfluenceLegacyHomeUserSettings>;
|
|
57668
58185
|
confluenceLegacy_incomingLinksCount?: Maybe<ConfluenceLegacyIncomingLinksCount>;
|
|
57669
58186
|
confluenceLegacy_inlineTasks?: Maybe<ConfluenceLegacyInlineTasksQueryResult>;
|
|
58187
|
+
confluenceLegacy_instanceAnalyticsCount?: Maybe<ConfluenceLegacyInstanceAnalyticsCount>;
|
|
57670
58188
|
confluenceLegacy_internalFrontendResource?: Maybe<ConfluenceLegacyFrontendResourceRenderResponse>;
|
|
57671
58189
|
confluenceLegacy_isDataClassificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
57672
58190
|
confluenceLegacy_isMoveContentStatesSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -57785,9 +58303,12 @@ export declare type Query = {
|
|
|
57785
58303
|
confluenceV2_inlineCommentsForBlogPost?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
57786
58304
|
confluenceV2_inlineCommentsForPage?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
57787
58305
|
confluenceV2_inlineCommentsForParentInlineComment?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
58306
|
+
confluenceV2_macros?: Maybe<ConfluenceV2MacroConnection>;
|
|
58307
|
+
confluenceV2_organization?: Maybe<ConfluenceV2Organization>;
|
|
57788
58308
|
confluenceV2_page?: Maybe<ConfluenceV2Page>;
|
|
57789
58309
|
confluenceV2_pages?: Maybe<Array<Maybe<ConfluenceV2Page>>>;
|
|
57790
58310
|
confluenceV2_pagesForSpace?: Maybe<ConfluenceV2PageConnection>;
|
|
58311
|
+
confluenceV2_renderedMacro?: Maybe<ConfluenceV2RenderedMacro>;
|
|
57791
58312
|
confluenceV2_space?: Maybe<ConfluenceV2Space>;
|
|
57792
58313
|
confluenceV2_spaceForPage?: Maybe<ConfluenceV2SpacePage>;
|
|
57793
58314
|
confluenceV2_spaceLookAndFeel?: Maybe<ConfluenceV2LookAndFeel>;
|
|
@@ -57844,7 +58365,6 @@ export declare type Query = {
|
|
|
57844
58365
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
57845
58366
|
insights?: Maybe<Insights>;
|
|
57846
58367
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
57847
|
-
instanceAnalyticsCount?: Maybe<ConfluenceLegacyInstanceAnalyticsCount>;
|
|
57848
58368
|
ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
|
|
57849
58369
|
ipmImageModals: ContentPlatformIpmImageModalSearchConnection;
|
|
57850
58370
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -57864,7 +58384,6 @@ export declare type Query = {
|
|
|
57864
58384
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
57865
58385
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
57866
58386
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
57867
|
-
macros?: Maybe<ConfluenceV2MacroConnection>;
|
|
57868
58387
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
57869
58388
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
57870
58389
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
@@ -57885,7 +58404,6 @@ export declare type Query = {
|
|
|
57885
58404
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
57886
58405
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
57887
58406
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
57888
|
-
organization?: Maybe<ConfluenceV2Organization>;
|
|
57889
58407
|
partner?: Maybe<Partner>;
|
|
57890
58408
|
partnerEarlyAccess?: Maybe<PeapQueryApi>;
|
|
57891
58409
|
pokemon?: Maybe<PokemonQuery>;
|
|
@@ -57910,7 +58428,6 @@ export declare type Query = {
|
|
|
57910
58428
|
productListings: Array<ProductListingResult>;
|
|
57911
58429
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
57912
58430
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
57913
|
-
renderedMacro?: Maybe<ConfluenceV2RenderedMacro>;
|
|
57914
58431
|
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
57915
58432
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
57916
58433
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
@@ -58440,6 +58957,11 @@ export declare type QueryConfluenceLegacy_IncomingLinksCountArgs = {
|
|
|
58440
58957
|
export declare type QueryConfluenceLegacy_InlineTasksArgs = {
|
|
58441
58958
|
tasksQuery: ConfluenceLegacyInlineTasksByMetadata;
|
|
58442
58959
|
};
|
|
58960
|
+
export declare type QueryConfluenceLegacy_InstanceAnalyticsCountArgs = {
|
|
58961
|
+
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
58962
|
+
eventName: Array<ConfluenceLegacyAnalyticsEventName>;
|
|
58963
|
+
startTime: Scalars['String']['input'];
|
|
58964
|
+
};
|
|
58443
58965
|
export declare type QueryConfluenceLegacy_IsMoveContentStatesSupportedArgs = {
|
|
58444
58966
|
contentId: Scalars['ID']['input'];
|
|
58445
58967
|
spaceKey: Scalars['String']['input'];
|
|
@@ -58953,6 +59475,12 @@ export declare type QueryConfluenceV2_InlineCommentsForParentInlineCommentArgs =
|
|
|
58953
59475
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58954
59476
|
id: Scalars['ID']['input'];
|
|
58955
59477
|
};
|
|
59478
|
+
export declare type QueryConfluenceV2_MacrosArgs = {
|
|
59479
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59480
|
+
blocklist?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
59481
|
+
contentId: Scalars['ID']['input'];
|
|
59482
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59483
|
+
};
|
|
58956
59484
|
export declare type QueryConfluenceV2_PageArgs = {
|
|
58957
59485
|
id: Scalars['ID']['input'];
|
|
58958
59486
|
status?: InputMaybe<Array<ConfluenceV2PageStatus>>;
|
|
@@ -58966,6 +59494,10 @@ export declare type QueryConfluenceV2_PagesForSpaceArgs = {
|
|
|
58966
59494
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58967
59495
|
id: Scalars['ID']['input'];
|
|
58968
59496
|
};
|
|
59497
|
+
export declare type QueryConfluenceV2_RenderedMacroArgs = {
|
|
59498
|
+
adf: Scalars['String']['input'];
|
|
59499
|
+
contentId: Scalars['ID']['input'];
|
|
59500
|
+
};
|
|
58969
59501
|
export declare type QueryConfluenceV2_SpaceArgs = {
|
|
58970
59502
|
id: Scalars['ID']['input'];
|
|
58971
59503
|
};
|
|
@@ -59113,11 +59645,6 @@ export declare type QueryHelpObjectStoreArgs = {
|
|
|
59113
59645
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
59114
59646
|
appId: Scalars['ID']['input'];
|
|
59115
59647
|
};
|
|
59116
|
-
export declare type QueryInstanceAnalyticsCountArgs = {
|
|
59117
|
-
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
59118
|
-
eventName: Array<ConfluenceLegacyAnalyticsEventName>;
|
|
59119
|
-
startTime: Scalars['String']['input'];
|
|
59120
|
-
};
|
|
59121
59648
|
export declare type QueryIpmImageModalArgs = {
|
|
59122
59649
|
id: Scalars['String']['input'];
|
|
59123
59650
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -59166,12 +59693,6 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
59166
59693
|
export declare type QueryKnowledgeBaseArgs = {
|
|
59167
59694
|
cloudId: Scalars['ID']['input'];
|
|
59168
59695
|
};
|
|
59169
|
-
export declare type QueryMacrosArgs = {
|
|
59170
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
59171
|
-
blocklist?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
59172
|
-
contentId: Scalars['ID']['input'];
|
|
59173
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59174
|
-
};
|
|
59175
59696
|
export declare type QueryMarketplaceAppArgs = {
|
|
59176
59697
|
appId: Scalars['ID']['input'];
|
|
59177
59698
|
};
|
|
@@ -59291,10 +59812,6 @@ export declare type QueryReleaseNotesArgs = {
|
|
|
59291
59812
|
search?: InputMaybe<ContentPlatformSearchOptions>;
|
|
59292
59813
|
visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59293
59814
|
};
|
|
59294
|
-
export declare type QueryRenderedMacroArgs = {
|
|
59295
|
-
adf: Scalars['String']['input'];
|
|
59296
|
-
contentId: Scalars['ID']['input'];
|
|
59297
|
-
};
|
|
59298
59815
|
export declare type QueryRepositoryRelationshipsForDevOpsServiceArgs = {
|
|
59299
59816
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59300
59817
|
filter?: InputMaybe<DevOpsServiceAndRepositoryRelationshipFilter>;
|
|
@@ -61000,6 +61517,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
61000
61517
|
type: SearchResultType;
|
|
61001
61518
|
url: Scalars['URL']['output'];
|
|
61002
61519
|
};
|
|
61520
|
+
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;
|
|
61003
61521
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
61004
61522
|
__typename?: 'SearchResultGoogleDocument';
|
|
61005
61523
|
bodyText: Scalars['String']['output'];
|
|
@@ -61049,6 +61567,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
61049
61567
|
__typename?: 'SearchResultGraphDocument';
|
|
61050
61568
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
61051
61569
|
description: Scalars['String']['output'];
|
|
61570
|
+
entity?: Maybe<SearchResultEntity>;
|
|
61052
61571
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
61053
61572
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
61054
61573
|
id: Scalars['ID']['output'];
|
|
@@ -61755,6 +62274,7 @@ export declare enum ShepherdAtlassianProduct {
|
|
|
61755
62274
|
AdminHub = "ADMIN_HUB",
|
|
61756
62275
|
Bitbucket = "BITBUCKET",
|
|
61757
62276
|
Confluence = "CONFLUENCE",
|
|
62277
|
+
GuardDetect = "GUARD_DETECT",
|
|
61758
62278
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
61759
62279
|
Marketplace = "MARKETPLACE"
|
|
61760
62280
|
}
|
|
@@ -62302,6 +62822,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
62302
62822
|
DeleteFilesRemediation = "DELETE_FILES_REMEDIATION",
|
|
62303
62823
|
EditCustomDetectionRemediation = "EDIT_CUSTOM_DETECTION_REMEDIATION",
|
|
62304
62824
|
ExcludePageRemediation = "EXCLUDE_PAGE_REMEDIATION",
|
|
62825
|
+
ExcludeUserRemediation = "EXCLUDE_USER_REMEDIATION",
|
|
62305
62826
|
ExportsDspRemediation = "EXPORTS_DSP_REMEDIATION",
|
|
62306
62827
|
ExportDspRemediation = "EXPORT_DSP_REMEDIATION",
|
|
62307
62828
|
ExportSpacePermissionsRemediation = "EXPORT_SPACE_PERMISSIONS_REMEDIATION",
|
|
@@ -64391,7 +64912,7 @@ export declare type TownsquareQueryApi = {
|
|
|
64391
64912
|
};
|
|
64392
64913
|
export declare type TownsquareQueryApiAllWorkspacesForOrgArgs = {
|
|
64393
64914
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64394
|
-
cloudId
|
|
64915
|
+
cloudId: Scalars['String']['input'];
|
|
64395
64916
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64396
64917
|
organisationId?: InputMaybe<Scalars['String']['input']>;
|
|
64397
64918
|
};
|