@forge/cli-shared 5.3.1 → 5.3.2-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/out/graphql/graphql-types.d.ts +389 -73
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +99 -15
- package/package.json +2 -2
|
@@ -581,6 +581,7 @@ export declare enum ApiGroup {
|
|
|
581
581
|
ConfluenceAnalytics = "CONFLUENCE_ANALYTICS",
|
|
582
582
|
ConfluenceLegacy = "CONFLUENCE_LEGACY",
|
|
583
583
|
ConfluenceMutations = "CONFLUENCE_MUTATIONS",
|
|
584
|
+
ConfluencePages = "CONFLUENCE_PAGES",
|
|
584
585
|
ConfluencePageTree = "CONFLUENCE_PAGE_TREE",
|
|
585
586
|
ConfluenceSmarts = "CONFLUENCE_SMARTS",
|
|
586
587
|
ConfluenceTenant = "CONFLUENCE_TENANT",
|
|
@@ -7279,6 +7280,12 @@ export declare type ConfluenceLegacyContainerSummary = {
|
|
|
7279
7280
|
links?: Maybe<ConfluenceLegacyLinksContextBase>;
|
|
7280
7281
|
title?: Maybe<Scalars['String']['output']>;
|
|
7281
7282
|
};
|
|
7283
|
+
export declare enum ConfluenceLegacyContainerType {
|
|
7284
|
+
Blogpost = "BLOGPOST",
|
|
7285
|
+
Page = "PAGE",
|
|
7286
|
+
Space = "SPACE",
|
|
7287
|
+
Whiteboard = "WHITEBOARD"
|
|
7288
|
+
}
|
|
7282
7289
|
export declare type ConfluenceLegacyContent = {
|
|
7283
7290
|
__typename?: 'ConfluenceLegacyContent';
|
|
7284
7291
|
ancestors?: Maybe<Array<Maybe<ConfluenceLegacyContent>>>;
|
|
@@ -9371,13 +9378,14 @@ export declare type ConfluenceLegacyPtPage = {
|
|
|
9371
9378
|
__typename?: 'ConfluenceLegacyPTPage';
|
|
9372
9379
|
ancestors?: Maybe<Array<Maybe<ConfluenceLegacyPtPage>>>;
|
|
9373
9380
|
children?: Maybe<ConfluenceLegacyPtPaginatedPageList>;
|
|
9374
|
-
content?: Maybe<ConfluenceLegacyContent>;
|
|
9375
9381
|
followingSiblings?: Maybe<ConfluenceLegacyPtPaginatedPageList>;
|
|
9376
9382
|
hasChildren: Scalars['Boolean']['output'];
|
|
9377
9383
|
hasInheritedRestrictions: Scalars['Boolean']['output'];
|
|
9378
9384
|
hasRestrictions: Scalars['Boolean']['output'];
|
|
9379
9385
|
id: Scalars['ID']['output'];
|
|
9386
|
+
mediaSession?: Maybe<ConfluenceLegacyContentMediaSession>;
|
|
9380
9387
|
nearestAncestors?: Maybe<ConfluenceLegacyPtPaginatedPageList>;
|
|
9388
|
+
page?: Maybe<ConfluenceLegacyPage>;
|
|
9381
9389
|
previousSiblings?: Maybe<ConfluenceLegacyPtPaginatedPageList>;
|
|
9382
9390
|
};
|
|
9383
9391
|
export declare type ConfluenceLegacyPtPageChildrenArgs = {
|
|
@@ -9604,10 +9612,6 @@ export declare enum ConfluenceLegacyPageStatusInput {
|
|
|
9604
9612
|
Current = "CURRENT",
|
|
9605
9613
|
Draft = "DRAFT"
|
|
9606
9614
|
}
|
|
9607
|
-
export declare type ConfluenceLegacyPageTreeCloudId = {
|
|
9608
|
-
__typename?: 'ConfluenceLegacyPageTreeCloudId';
|
|
9609
|
-
cloudId: Scalars['ID']['output'];
|
|
9610
|
-
};
|
|
9611
9615
|
export declare enum ConfluenceLegacyPageUpdateTrigger {
|
|
9612
9616
|
CreatePage = "CREATE_PAGE",
|
|
9613
9617
|
DiscardChanges = "DISCARD_CHANGES",
|
|
@@ -10236,6 +10240,40 @@ export declare type ConfluenceLegacyQuickReloadComment = {
|
|
|
10236
10240
|
primaryActions: Array<Maybe<ConfluenceLegacyCommentUserAction>>;
|
|
10237
10241
|
secondaryActions: Array<Maybe<ConfluenceLegacyCommentUserAction>>;
|
|
10238
10242
|
};
|
|
10243
|
+
export declare type ConfluenceLegacyReactedUsersResponse = {
|
|
10244
|
+
__typename?: 'ConfluenceLegacyReactedUsersResponse';
|
|
10245
|
+
ari: Scalars['String']['output'];
|
|
10246
|
+
containerAri: Scalars['String']['output'];
|
|
10247
|
+
count: Scalars['Int']['output'];
|
|
10248
|
+
emojiId: Scalars['String']['output'];
|
|
10249
|
+
reacted: Scalars['Boolean']['output'];
|
|
10250
|
+
users?: Maybe<Array<Maybe<ConfluenceLegacyUser>>>;
|
|
10251
|
+
};
|
|
10252
|
+
export declare enum ConfluenceLegacyReactionContentType {
|
|
10253
|
+
Blogpost = "BLOGPOST",
|
|
10254
|
+
Comment = "COMMENT",
|
|
10255
|
+
Page = "PAGE"
|
|
10256
|
+
}
|
|
10257
|
+
export declare type ConfluenceLegacyReactionsId = {
|
|
10258
|
+
containerId: Scalars['ID']['input'];
|
|
10259
|
+
containerType?: InputMaybe<Scalars['String']['input']>;
|
|
10260
|
+
contentId: Scalars['ID']['input'];
|
|
10261
|
+
contentType: Scalars['String']['input'];
|
|
10262
|
+
};
|
|
10263
|
+
export declare type ConfluenceLegacyReactionsSummaryForEmoji = {
|
|
10264
|
+
__typename?: 'ConfluenceLegacyReactionsSummaryForEmoji';
|
|
10265
|
+
count: Scalars['Int']['output'];
|
|
10266
|
+
emojiId: Scalars['String']['output'];
|
|
10267
|
+
id: Scalars['String']['output'];
|
|
10268
|
+
reacted: Scalars['Boolean']['output'];
|
|
10269
|
+
};
|
|
10270
|
+
export declare type ConfluenceLegacyReactionsSummaryResponse = {
|
|
10271
|
+
__typename?: 'ConfluenceLegacyReactionsSummaryResponse';
|
|
10272
|
+
ari: Scalars['String']['output'];
|
|
10273
|
+
containerAri: Scalars['String']['output'];
|
|
10274
|
+
reactionsCount: Scalars['Int']['output'];
|
|
10275
|
+
reactionsSummaryForEmoji: Array<Maybe<ConfluenceLegacyReactionsSummaryForEmoji>>;
|
|
10276
|
+
};
|
|
10239
10277
|
export declare type ConfluenceLegacyReattachInlineCommentInput = {
|
|
10240
10278
|
commentId: Scalars['ID']['input'];
|
|
10241
10279
|
containerId: Scalars['ID']['input'];
|
|
@@ -10439,6 +10477,12 @@ export declare enum ConfluenceLegacyRoleAssignmentPrincipalType {
|
|
|
10439
10477
|
Team = "TEAM",
|
|
10440
10478
|
User = "USER"
|
|
10441
10479
|
}
|
|
10480
|
+
export declare type ConfluenceLegacySaveReactionResponse = {
|
|
10481
|
+
__typename?: 'ConfluenceLegacySaveReactionResponse';
|
|
10482
|
+
ari: Scalars['String']['output'];
|
|
10483
|
+
containerAri: Scalars['String']['output'];
|
|
10484
|
+
emojiId: Scalars['String']['output'];
|
|
10485
|
+
};
|
|
10442
10486
|
export declare type ConfluenceLegacySchedulePublishInfo = {
|
|
10443
10487
|
__typename?: 'ConfluenceLegacySchedulePublishInfo';
|
|
10444
10488
|
date?: Maybe<Scalars['String']['output']>;
|
|
@@ -13867,6 +13911,7 @@ export declare enum ContentPlatformOperators {
|
|
|
13867
13911
|
}
|
|
13868
13912
|
export declare type ContentPlatformOrganization = {
|
|
13869
13913
|
__typename?: 'ContentPlatformOrganization';
|
|
13914
|
+
altDarkLogo?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
13870
13915
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13871
13916
|
industry?: Maybe<Array<ContentPlatformTaxonomyIndustry>>;
|
|
13872
13917
|
logo?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
@@ -20516,6 +20561,11 @@ export declare type GraphCreateSprintRetrospectivePageInput = {
|
|
|
20516
20561
|
to: Scalars['ID']['input'];
|
|
20517
20562
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
20518
20563
|
};
|
|
20564
|
+
export declare enum GraphDataDepotApprovalStatus {
|
|
20565
|
+
Approved = "APPROVED",
|
|
20566
|
+
Needswork = "NEEDSWORK",
|
|
20567
|
+
Unapproved = "UNAPPROVED"
|
|
20568
|
+
}
|
|
20519
20569
|
export declare type GraphDataDepotBranch = {
|
|
20520
20570
|
__typename?: 'GraphDataDepotBranch';
|
|
20521
20571
|
branchId: Scalars['String']['output'];
|
|
@@ -20581,6 +20631,7 @@ export declare type GraphDataDepotChapter = {
|
|
|
20581
20631
|
};
|
|
20582
20632
|
export declare type GraphDataDepotCommit = {
|
|
20583
20633
|
__typename?: 'GraphDataDepotCommit';
|
|
20634
|
+
author: GraphDataDepotUser;
|
|
20584
20635
|
commitId: Scalars['String']['output'];
|
|
20585
20636
|
createdAt: Scalars['String']['output'];
|
|
20586
20637
|
displayId: Scalars['String']['output'];
|
|
@@ -20613,6 +20664,7 @@ export declare type GraphDataDepotDeployment = {
|
|
|
20613
20664
|
label?: Maybe<Scalars['String']['output']>;
|
|
20614
20665
|
pipeline: GraphDataDepotPipeline;
|
|
20615
20666
|
state: GraphDataDepotDeploymentState;
|
|
20667
|
+
triggeredBy?: Maybe<GraphDataDepotUser>;
|
|
20616
20668
|
url: Scalars['String']['output'];
|
|
20617
20669
|
};
|
|
20618
20670
|
export declare enum GraphDataDepotDeploymentState {
|
|
@@ -20739,12 +20791,14 @@ export declare type GraphDataDepotPipeline = {
|
|
|
20739
20791
|
};
|
|
20740
20792
|
export declare type GraphDataDepotPullRequest = {
|
|
20741
20793
|
__typename?: 'GraphDataDepotPullRequest';
|
|
20794
|
+
author: GraphDataDepotUser;
|
|
20742
20795
|
commentCount: Scalars['Int']['output'];
|
|
20743
20796
|
destinationBranch?: Maybe<GraphDataDepotBranchReference>;
|
|
20744
20797
|
displayId: Scalars['String']['output'];
|
|
20745
20798
|
id: Scalars['ID']['output'];
|
|
20746
20799
|
pullRequestId: Scalars['String']['output'];
|
|
20747
20800
|
repositoryId: Scalars['String']['output'];
|
|
20801
|
+
reviewers: Array<GraphDataDepotReviewer>;
|
|
20748
20802
|
sourceBranch: GraphDataDepotBranchReference;
|
|
20749
20803
|
status: GraphDataDepotPullRequestStatus;
|
|
20750
20804
|
supportedActions?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -20769,7 +20823,9 @@ export declare type GraphDataDepotQueryEntitiesArgs = {
|
|
|
20769
20823
|
export declare type GraphDataDepotRemoteLink = {
|
|
20770
20824
|
__typename?: 'GraphDataDepotRemoteLink';
|
|
20771
20825
|
actionIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
20826
|
+
assignee?: Maybe<GraphDataDepotUser>;
|
|
20772
20827
|
attributeMap?: Maybe<Array<GraphDataDepotRemoteLinkAttributeTuple>>;
|
|
20828
|
+
author?: Maybe<GraphDataDepotUser>;
|
|
20773
20829
|
category?: Maybe<Scalars['String']['output']>;
|
|
20774
20830
|
description?: Maybe<Scalars['String']['output']>;
|
|
20775
20831
|
displayName: Scalars['String']['output'];
|
|
@@ -20789,6 +20845,11 @@ export declare type GraphDataDepotRemoteLinkStatus = {
|
|
|
20789
20845
|
appearance: Scalars['String']['output'];
|
|
20790
20846
|
label: Scalars['String']['output'];
|
|
20791
20847
|
};
|
|
20848
|
+
export declare type GraphDataDepotReviewer = {
|
|
20849
|
+
__typename?: 'GraphDataDepotReviewer';
|
|
20850
|
+
approvalStatus: GraphDataDepotApprovalStatus;
|
|
20851
|
+
user?: Maybe<GraphDataDepotUser>;
|
|
20852
|
+
};
|
|
20792
20853
|
export declare type GraphDataDepotTestInfo = {
|
|
20793
20854
|
__typename?: 'GraphDataDepotTestInfo';
|
|
20794
20855
|
numberFailed: Scalars['Int']['output'];
|
|
@@ -20802,10 +20863,16 @@ export declare type GraphDataDepotTrack = {
|
|
|
20802
20863
|
locale?: Maybe<Scalars['String']['output']>;
|
|
20803
20864
|
name?: Maybe<Scalars['String']['output']>;
|
|
20804
20865
|
};
|
|
20866
|
+
export declare type GraphDataDepotUser = {
|
|
20867
|
+
__typename?: 'GraphDataDepotUser';
|
|
20868
|
+
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
20869
|
+
user?: Maybe<User>;
|
|
20870
|
+
};
|
|
20805
20871
|
export declare type GraphDataDepotVideo = {
|
|
20806
20872
|
__typename?: 'GraphDataDepotVideo';
|
|
20807
20873
|
chapters?: Maybe<Array<GraphDataDepotChapter>>;
|
|
20808
20874
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
20875
|
+
createdBy?: Maybe<GraphDataDepotUser>;
|
|
20809
20876
|
description?: Maybe<Scalars['String']['output']>;
|
|
20810
20877
|
displayName: Scalars['String']['output'];
|
|
20811
20878
|
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
@@ -20813,6 +20880,8 @@ export declare type GraphDataDepotVideo = {
|
|
|
20813
20880
|
externalId: Scalars['String']['output'];
|
|
20814
20881
|
height?: Maybe<Scalars['Long']['output']>;
|
|
20815
20882
|
id: Scalars['ID']['output'];
|
|
20883
|
+
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
20884
|
+
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
20816
20885
|
textTracks?: Maybe<Array<GraphDataDepotTrack>>;
|
|
20817
20886
|
thumbnailUrl: Scalars['String']['output'];
|
|
20818
20887
|
url: Scalars['String']['output'];
|
|
@@ -23774,6 +23843,8 @@ export declare type GraphStore = {
|
|
|
23774
23843
|
shipit57IssueRecursiveLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverseConnection>;
|
|
23775
23844
|
shipit57PullRequestLinksToPage?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageConnection>;
|
|
23776
23845
|
shipit57PullRequestLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseConnection>;
|
|
23846
|
+
spaceAssociatedWithProject?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectConnection>;
|
|
23847
|
+
spaceAssociatedWithProjectInverse?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection>;
|
|
23777
23848
|
sprintAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
23778
23849
|
sprintAssociatedBuildRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
23779
23850
|
sprintAssociatedDeployment?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentConnection>;
|
|
@@ -25395,6 +25466,18 @@ export declare type GraphStoreShipit57PullRequestLinksToPageInverseArgs = {
|
|
|
25395
25466
|
id: Scalars['ID']['input'];
|
|
25396
25467
|
sort?: InputMaybe<GraphStoreShipit57PullRequestLinksToPageSortInput>;
|
|
25397
25468
|
};
|
|
25469
|
+
export declare type GraphStoreSpaceAssociatedWithProjectArgs = {
|
|
25470
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25471
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25472
|
+
id: Scalars['ID']['input'];
|
|
25473
|
+
sort?: InputMaybe<GraphStoreSpaceAssociatedWithProjectSortInput>;
|
|
25474
|
+
};
|
|
25475
|
+
export declare type GraphStoreSpaceAssociatedWithProjectInverseArgs = {
|
|
25476
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25477
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25478
|
+
id: Scalars['ID']['input'];
|
|
25479
|
+
sort?: InputMaybe<GraphStoreSpaceAssociatedWithProjectSortInput>;
|
|
25480
|
+
};
|
|
25398
25481
|
export declare type GraphStoreSprintAssociatedBuildInverseRelationshipArgs = {
|
|
25399
25482
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25400
25483
|
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
@@ -26677,6 +26760,20 @@ export declare type GraphStoreCreateProjectHasVersionRelationshipInput = {
|
|
|
26677
26760
|
to: Scalars['ID']['input'];
|
|
26678
26761
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
26679
26762
|
};
|
|
26763
|
+
export declare type GraphStoreCreateSpaceAssociatedWithProjectInput = {
|
|
26764
|
+
relationships: Array<GraphStoreCreateSpaceAssociatedWithProjectRelationshipInput>;
|
|
26765
|
+
};
|
|
26766
|
+
export declare type GraphStoreCreateSpaceAssociatedWithProjectPayload = Payload & {
|
|
26767
|
+
__typename?: 'GraphStoreCreateSpaceAssociatedWithProjectPayload';
|
|
26768
|
+
errors?: Maybe<Array<MutationError>>;
|
|
26769
|
+
success: Scalars['Boolean']['output'];
|
|
26770
|
+
};
|
|
26771
|
+
export declare type GraphStoreCreateSpaceAssociatedWithProjectRelationshipInput = {
|
|
26772
|
+
from: Scalars['ID']['input'];
|
|
26773
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
26774
|
+
to: Scalars['ID']['input'];
|
|
26775
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
26776
|
+
};
|
|
26680
26777
|
export declare type GraphStoreCreateSprintRetrospectivePageInput = {
|
|
26681
26778
|
relationships: Array<GraphStoreCreateSprintRetrospectivePageRelationshipInput>;
|
|
26682
26779
|
};
|
|
@@ -26983,6 +27080,18 @@ export declare type GraphStoreDeleteProjectHasVersionRelationshipInput = {
|
|
|
26983
27080
|
from: Scalars['ID']['input'];
|
|
26984
27081
|
to: Scalars['ID']['input'];
|
|
26985
27082
|
};
|
|
27083
|
+
export declare type GraphStoreDeleteSpaceAssociatedWithProjectInput = {
|
|
27084
|
+
relationships: Array<GraphStoreDeleteSpaceAssociatedWithProjectRelationshipInput>;
|
|
27085
|
+
};
|
|
27086
|
+
export declare type GraphStoreDeleteSpaceAssociatedWithProjectPayload = Payload & {
|
|
27087
|
+
__typename?: 'GraphStoreDeleteSpaceAssociatedWithProjectPayload';
|
|
27088
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27089
|
+
success: Scalars['Boolean']['output'];
|
|
27090
|
+
};
|
|
27091
|
+
export declare type GraphStoreDeleteSpaceAssociatedWithProjectRelationshipInput = {
|
|
27092
|
+
from: Scalars['ID']['input'];
|
|
27093
|
+
to: Scalars['ID']['input'];
|
|
27094
|
+
};
|
|
26986
27095
|
export declare type GraphStoreDeleteSprintRetrospectivePageInput = {
|
|
26987
27096
|
relationships: Array<GraphStoreDeleteSprintRetrospectivePageRelationshipInput>;
|
|
26988
27097
|
};
|
|
@@ -30677,6 +30786,7 @@ export declare type GraphStoreMutation = {
|
|
|
30677
30786
|
createProjectHasRelatedWorkWithProject?: Maybe<GraphStoreCreateProjectHasRelatedWorkWithProjectPayload>;
|
|
30678
30787
|
createProjectHasSharedVersionWith?: Maybe<GraphStoreCreateProjectHasSharedVersionWithPayload>;
|
|
30679
30788
|
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
30789
|
+
createSpaceAssociatedWithProject?: Maybe<GraphStoreCreateSpaceAssociatedWithProjectPayload>;
|
|
30680
30790
|
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
30681
30791
|
createSprintRetrospectiveWhiteboard?: Maybe<GraphStoreCreateSprintRetrospectiveWhiteboardPayload>;
|
|
30682
30792
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
@@ -30698,6 +30808,7 @@ export declare type GraphStoreMutation = {
|
|
|
30698
30808
|
deleteProjectHasRelatedWorkWithProject?: Maybe<GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload>;
|
|
30699
30809
|
deleteProjectHasSharedVersionWith?: Maybe<GraphStoreDeleteProjectHasSharedVersionWithPayload>;
|
|
30700
30810
|
deleteProjectHasVersion?: Maybe<GraphStoreDeleteProjectHasVersionPayload>;
|
|
30811
|
+
deleteSpaceAssociatedWithProject?: Maybe<GraphStoreDeleteSpaceAssociatedWithProjectPayload>;
|
|
30701
30812
|
deleteSprintRetrospectivePage?: Maybe<GraphStoreDeleteSprintRetrospectivePagePayload>;
|
|
30702
30813
|
deleteSprintRetrospectiveWhiteboard?: Maybe<GraphStoreDeleteSprintRetrospectiveWhiteboardPayload>;
|
|
30703
30814
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
@@ -30750,6 +30861,9 @@ export declare type GraphStoreMutationCreateProjectHasSharedVersionWithArgs = {
|
|
|
30750
30861
|
export declare type GraphStoreMutationCreateProjectHasVersionArgs = {
|
|
30751
30862
|
input?: InputMaybe<GraphStoreCreateProjectHasVersionInput>;
|
|
30752
30863
|
};
|
|
30864
|
+
export declare type GraphStoreMutationCreateSpaceAssociatedWithProjectArgs = {
|
|
30865
|
+
input?: InputMaybe<GraphStoreCreateSpaceAssociatedWithProjectInput>;
|
|
30866
|
+
};
|
|
30753
30867
|
export declare type GraphStoreMutationCreateSprintRetrospectivePageArgs = {
|
|
30754
30868
|
input?: InputMaybe<GraphStoreCreateSprintRetrospectivePageInput>;
|
|
30755
30869
|
};
|
|
@@ -30813,6 +30927,9 @@ export declare type GraphStoreMutationDeleteProjectHasSharedVersionWithArgs = {
|
|
|
30813
30927
|
export declare type GraphStoreMutationDeleteProjectHasVersionArgs = {
|
|
30814
30928
|
input?: InputMaybe<GraphStoreDeleteProjectHasVersionInput>;
|
|
30815
30929
|
};
|
|
30930
|
+
export declare type GraphStoreMutationDeleteSpaceAssociatedWithProjectArgs = {
|
|
30931
|
+
input?: InputMaybe<GraphStoreDeleteSpaceAssociatedWithProjectInput>;
|
|
30932
|
+
};
|
|
30816
30933
|
export declare type GraphStoreMutationDeleteSprintRetrospectivePageArgs = {
|
|
30817
30934
|
input?: InputMaybe<GraphStoreDeleteSprintRetrospectivePageInput>;
|
|
30818
30935
|
};
|
|
@@ -33274,6 +33391,38 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdg
|
|
|
33274
33391
|
};
|
|
33275
33392
|
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion = DevOpsPullRequestDetails;
|
|
33276
33393
|
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageUnion = ConfluencePage;
|
|
33394
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectConnection = HasPageInfo & HasTotal & {
|
|
33395
|
+
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectConnection';
|
|
33396
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectEdge>>>;
|
|
33397
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33398
|
+
pageInfo: PageInfo;
|
|
33399
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33400
|
+
};
|
|
33401
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectEdge = {
|
|
33402
|
+
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectEdge';
|
|
33403
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33404
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33405
|
+
id: Scalars['ID']['output'];
|
|
33406
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33407
|
+
node?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectUnion>;
|
|
33408
|
+
};
|
|
33409
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
33410
|
+
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection';
|
|
33411
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge>>>;
|
|
33412
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33413
|
+
pageInfo: PageInfo;
|
|
33414
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33415
|
+
};
|
|
33416
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge = {
|
|
33417
|
+
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge';
|
|
33418
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33419
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33420
|
+
id: Scalars['ID']['output'];
|
|
33421
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33422
|
+
node?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseUnion>;
|
|
33423
|
+
};
|
|
33424
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseUnion = ConfluenceSpace;
|
|
33425
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectUnion = JiraProject;
|
|
33277
33426
|
export declare type GraphStoreSimplifiedSprintAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
33278
33427
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedDeploymentConnection';
|
|
33279
33428
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentEdge>>>;
|
|
@@ -33734,6 +33883,12 @@ export declare type GraphStoreSortInput = {
|
|
|
33734
33883
|
direction: SortDirection;
|
|
33735
33884
|
priority: Scalars['Int']['input'];
|
|
33736
33885
|
};
|
|
33886
|
+
export declare type GraphStoreSpaceAssociatedWithProjectSortInput = {
|
|
33887
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
33888
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
33889
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33890
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
33891
|
+
};
|
|
33737
33892
|
export declare enum GraphStoreSprintAssociatedBuildBuildState {
|
|
33738
33893
|
Cancelled = "CANCELLED",
|
|
33739
33894
|
Failed = "FAILED",
|
|
@@ -35064,11 +35219,13 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
35064
35219
|
export declare type HelpLayoutAnnouncementInput = {
|
|
35065
35220
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35066
35221
|
};
|
|
35067
|
-
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutEditorElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
35222
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
35068
35223
|
export declare type HelpLayoutAtomicElementInput = {
|
|
35069
35224
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
35225
|
+
connectInput?: InputMaybe<HelpLayoutConnectInput>;
|
|
35070
35226
|
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
35071
35227
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
35228
|
+
forgeInput?: InputMaybe<HelpLayoutForgeInput>;
|
|
35072
35229
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
35073
35230
|
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
35074
35231
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
@@ -35081,7 +35238,9 @@ export declare type HelpLayoutAtomicElementInput = {
|
|
|
35081
35238
|
};
|
|
35082
35239
|
export declare enum HelpLayoutAtomicElementKey {
|
|
35083
35240
|
Announcement = "ANNOUNCEMENT",
|
|
35241
|
+
Connect = "CONNECT",
|
|
35084
35242
|
Editor = "EDITOR",
|
|
35243
|
+
Forge = "FORGE",
|
|
35085
35244
|
Heading = "HEADING",
|
|
35086
35245
|
Hero = "HERO",
|
|
35087
35246
|
Image = "IMAGE",
|
|
@@ -35129,6 +35288,37 @@ export declare type HelpLayoutCompositeElementType = HelpLayoutElementType & {
|
|
|
35129
35288
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
35130
35289
|
key?: Maybe<HelpLayoutCompositeElementKey>;
|
|
35131
35290
|
};
|
|
35291
|
+
export declare type HelpLayoutConnectElement = HelpLayoutVisualEntity & Node & {
|
|
35292
|
+
__typename?: 'HelpLayoutConnectElement';
|
|
35293
|
+
connectElementPage: HelpLayoutConnectElementPages;
|
|
35294
|
+
connectElementType: HelpLayoutConnectElementType;
|
|
35295
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
35296
|
+
id: Scalars['ID']['output'];
|
|
35297
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
35298
|
+
};
|
|
35299
|
+
export declare enum HelpLayoutConnectElementPages {
|
|
35300
|
+
Approvals = "APPROVALS",
|
|
35301
|
+
CreateRequest = "CREATE_REQUEST",
|
|
35302
|
+
HelpCenter = "HELP_CENTER",
|
|
35303
|
+
MyRequest = "MY_REQUEST",
|
|
35304
|
+
Portal = "PORTAL",
|
|
35305
|
+
Profile = "PROFILE",
|
|
35306
|
+
ViewRequest = "VIEW_REQUEST"
|
|
35307
|
+
}
|
|
35308
|
+
export declare enum HelpLayoutConnectElementType {
|
|
35309
|
+
DetailsPanels = "detailsPanels",
|
|
35310
|
+
FooterPanels = "footerPanels",
|
|
35311
|
+
HeaderAndSubheaderPanels = "headerAndSubheaderPanels",
|
|
35312
|
+
HeaderPanels = "headerPanels",
|
|
35313
|
+
OptionPanels = "optionPanels",
|
|
35314
|
+
ProfilePagePanel = "profilePagePanel",
|
|
35315
|
+
PropertyPanels = "propertyPanels",
|
|
35316
|
+
RequestCreatePanel = "requestCreatePanel",
|
|
35317
|
+
SubheaderPanels = "subheaderPanels"
|
|
35318
|
+
}
|
|
35319
|
+
export declare type HelpLayoutConnectInput = {
|
|
35320
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35321
|
+
};
|
|
35132
35322
|
export declare type HelpLayoutCreatePayload = Payload & {
|
|
35133
35323
|
__typename?: 'HelpLayoutCreatePayload';
|
|
35134
35324
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -35150,15 +35340,17 @@ export declare type HelpLayoutEditorInput = {
|
|
|
35150
35340
|
adf: Scalars['String']['input'];
|
|
35151
35341
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35152
35342
|
};
|
|
35153
|
-
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutEditorElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
35343
|
+
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
35154
35344
|
export declare enum HelpLayoutElementCategory {
|
|
35155
35345
|
Basic = "BASIC",
|
|
35156
35346
|
Navigation = "NAVIGATION"
|
|
35157
35347
|
}
|
|
35158
35348
|
export declare type HelpLayoutElementInput = {
|
|
35159
35349
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
35350
|
+
connectInput?: InputMaybe<HelpLayoutConnectInput>;
|
|
35160
35351
|
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
35161
35352
|
elementTypeKey: HelpLayoutElementKey;
|
|
35353
|
+
forgeInput?: InputMaybe<HelpLayoutForgeInput>;
|
|
35162
35354
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
35163
35355
|
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
35164
35356
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
@@ -35172,7 +35364,9 @@ export declare type HelpLayoutElementInput = {
|
|
|
35172
35364
|
};
|
|
35173
35365
|
export declare enum HelpLayoutElementKey {
|
|
35174
35366
|
Announcement = "ANNOUNCEMENT",
|
|
35367
|
+
Connect = "CONNECT",
|
|
35175
35368
|
Editor = "EDITOR",
|
|
35369
|
+
Forge = "FORGE",
|
|
35176
35370
|
Heading = "HEADING",
|
|
35177
35371
|
Hero = "HERO",
|
|
35178
35372
|
Image = "IMAGE",
|
|
@@ -35192,6 +35386,30 @@ export declare type HelpLayoutElementType = {
|
|
|
35192
35386
|
export declare type HelpLayoutFilter = {
|
|
35193
35387
|
isEditMode?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35194
35388
|
};
|
|
35389
|
+
export declare type HelpLayoutForgeElement = HelpLayoutVisualEntity & Node & {
|
|
35390
|
+
__typename?: 'HelpLayoutForgeElement';
|
|
35391
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
35392
|
+
forgeElementPage: HelpLayoutForgeElementPages;
|
|
35393
|
+
forgeElementType: HelpLayoutForgeElementType;
|
|
35394
|
+
id: Scalars['ID']['output'];
|
|
35395
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
35396
|
+
};
|
|
35397
|
+
export declare enum HelpLayoutForgeElementPages {
|
|
35398
|
+
Approvals = "approvals",
|
|
35399
|
+
CreateRequest = "create_request",
|
|
35400
|
+
HelpCenter = "help_center",
|
|
35401
|
+
MyRequest = "my_request",
|
|
35402
|
+
Portal = "portal",
|
|
35403
|
+
Profile = "profile",
|
|
35404
|
+
ViewRequest = "view_request"
|
|
35405
|
+
}
|
|
35406
|
+
export declare enum HelpLayoutForgeElementType {
|
|
35407
|
+
Footer = "FOOTER",
|
|
35408
|
+
HeaderAndSubheader = "HEADER_AND_SUBHEADER"
|
|
35409
|
+
}
|
|
35410
|
+
export declare type HelpLayoutForgeInput = {
|
|
35411
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35412
|
+
};
|
|
35195
35413
|
export declare type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
35196
35414
|
__typename?: 'HelpLayoutHeadingAtomicElement';
|
|
35197
35415
|
config?: Maybe<HelpLayoutHeadingAtomicElementConfig>;
|
|
@@ -38948,8 +39166,8 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
38948
39166
|
};
|
|
38949
39167
|
export declare type JiraCreateBoardFieldInput = {
|
|
38950
39168
|
issueTypes?: InputMaybe<Array<JiraIssueTypeInput>>;
|
|
38951
|
-
labels?: InputMaybe<Array<
|
|
38952
|
-
teams?: InputMaybe<Array<
|
|
39169
|
+
labels?: InputMaybe<Array<JiraLabelsInput>>;
|
|
39170
|
+
teams?: InputMaybe<Array<JiraAtlassianTeamInput>>;
|
|
38953
39171
|
};
|
|
38954
39172
|
export declare type JiraCreateBoardInput = {
|
|
38955
39173
|
createBoardSource: JiraCreateBoardSource;
|
|
@@ -40975,6 +41193,22 @@ export declare type JiraIssueConnectionPageCursorsArgs = {
|
|
|
40975
41193
|
maxCursors: Scalars['Int']['input'];
|
|
40976
41194
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
40977
41195
|
};
|
|
41196
|
+
export declare type JiraIssueCreateInput = {
|
|
41197
|
+
fields: JiraIssueFieldsInput;
|
|
41198
|
+
issueTypeId: Scalars['ID']['input'];
|
|
41199
|
+
projectId: Scalars['ID']['input'];
|
|
41200
|
+
rank?: InputMaybe<JiraIssueCreateRankInput>;
|
|
41201
|
+
};
|
|
41202
|
+
export declare type JiraIssueCreatePayload = Payload & {
|
|
41203
|
+
__typename?: 'JiraIssueCreatePayload';
|
|
41204
|
+
errors?: Maybe<Array<MutationError>>;
|
|
41205
|
+
issue?: Maybe<JiraIssue>;
|
|
41206
|
+
success: Scalars['Boolean']['output'];
|
|
41207
|
+
};
|
|
41208
|
+
export declare type JiraIssueCreateRankInput = {
|
|
41209
|
+
afterIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
41210
|
+
beforeIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
41211
|
+
};
|
|
40978
41212
|
export declare type JiraIssueCreatedStreamHubPayload = {
|
|
40979
41213
|
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
40980
41214
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41046,6 +41280,56 @@ export declare type JiraIssueEdge = {
|
|
|
41046
41280
|
cursor: Scalars['String']['output'];
|
|
41047
41281
|
node?: Maybe<JiraIssue>;
|
|
41048
41282
|
};
|
|
41283
|
+
export declare type JiraIssueExportError = {
|
|
41284
|
+
__typename?: 'JiraIssueExportError';
|
|
41285
|
+
displayMessage?: Maybe<Scalars['String']['output']>;
|
|
41286
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
41287
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
41288
|
+
};
|
|
41289
|
+
export declare type JiraIssueExportEvent = JiraIssueExportTaskCompleted | JiraIssueExportTaskProgress | JiraIssueExportTaskSubmissionFailed | JiraIssueExportTaskSubmitted | JiraIssueExportTaskTerminated;
|
|
41290
|
+
export declare type JiraIssueExportInput = {
|
|
41291
|
+
cloudId: Scalars['ID']['input'];
|
|
41292
|
+
exportType?: InputMaybe<JiraIssueExportType>;
|
|
41293
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
41294
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
41295
|
+
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
41296
|
+
modified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41297
|
+
};
|
|
41298
|
+
export declare type JiraIssueExportTask = {
|
|
41299
|
+
__typename?: 'JiraIssueExportTask';
|
|
41300
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
41301
|
+
};
|
|
41302
|
+
export declare type JiraIssueExportTaskCompleted = {
|
|
41303
|
+
__typename?: 'JiraIssueExportTaskCompleted';
|
|
41304
|
+
task?: Maybe<JiraIssueExportTask>;
|
|
41305
|
+
};
|
|
41306
|
+
export declare type JiraIssueExportTaskProgress = {
|
|
41307
|
+
__typename?: 'JiraIssueExportTaskProgress';
|
|
41308
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
41309
|
+
progress?: Maybe<Scalars['Int']['output']>;
|
|
41310
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
41311
|
+
status?: Maybe<JiraLongRunningTaskStatus>;
|
|
41312
|
+
task?: Maybe<JiraIssueExportTask>;
|
|
41313
|
+
};
|
|
41314
|
+
export declare type JiraIssueExportTaskSubmissionFailed = {
|
|
41315
|
+
__typename?: 'JiraIssueExportTaskSubmissionFailed';
|
|
41316
|
+
error?: Maybe<JiraIssueExportError>;
|
|
41317
|
+
};
|
|
41318
|
+
export declare type JiraIssueExportTaskSubmitted = {
|
|
41319
|
+
__typename?: 'JiraIssueExportTaskSubmitted';
|
|
41320
|
+
task?: Maybe<JiraIssueExportTask>;
|
|
41321
|
+
};
|
|
41322
|
+
export declare type JiraIssueExportTaskTerminated = {
|
|
41323
|
+
__typename?: 'JiraIssueExportTaskTerminated';
|
|
41324
|
+
error?: Maybe<JiraIssueExportError>;
|
|
41325
|
+
taskProgress?: Maybe<JiraIssueExportTaskProgress>;
|
|
41326
|
+
};
|
|
41327
|
+
export declare enum JiraIssueExportType {
|
|
41328
|
+
CsvAllFields = "CSV_ALL_FIELDS",
|
|
41329
|
+
CsvCurrentFields = "CSV_CURRENT_FIELDS",
|
|
41330
|
+
CsvWithBomAllFields = "CSV_WITH_BOM_ALL_FIELDS",
|
|
41331
|
+
CsvWithBomCurrentFields = "CSV_WITH_BOM_CURRENT_FIELDS"
|
|
41332
|
+
}
|
|
41049
41333
|
export declare type JiraIssueField = {
|
|
41050
41334
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
41051
41335
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -41689,6 +41973,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
41689
41973
|
JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
|
|
41690
41974
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
41691
41975
|
JiraConnectNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
41976
|
+
JiraConnectTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
41692
41977
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
41693
41978
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
41694
41979
|
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
@@ -42892,6 +43177,7 @@ export declare type JiraMutation = {
|
|
|
42892
43177
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
42893
43178
|
createCustomBackground?: Maybe<JiraCreateCustomBackgroundPayload>;
|
|
42894
43179
|
createFormattingRule?: Maybe<JiraCreateFormattingRulePayload>;
|
|
43180
|
+
createIssue?: Maybe<JiraIssueCreatePayload>;
|
|
42895
43181
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
42896
43182
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
42897
43183
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
@@ -43085,6 +43371,9 @@ export declare type JiraMutationCreateCustomBackgroundArgs = {
|
|
|
43085
43371
|
export declare type JiraMutationCreateFormattingRuleArgs = {
|
|
43086
43372
|
input: JiraCreateFormattingRuleInput;
|
|
43087
43373
|
};
|
|
43374
|
+
export declare type JiraMutationCreateIssueArgs = {
|
|
43375
|
+
input: JiraIssueCreateInput;
|
|
43376
|
+
};
|
|
43088
43377
|
export declare type JiraMutationCreateIssueLinksArgs = {
|
|
43089
43378
|
cloudId: Scalars['ID']['input'];
|
|
43090
43379
|
input: JiraBulkCreateIssueLinksInput;
|
|
@@ -48534,11 +48823,13 @@ export declare type JiraSubmitBulkOperationProgress = Node & {
|
|
|
48534
48823
|
};
|
|
48535
48824
|
export declare type JiraSubscription = {
|
|
48536
48825
|
__typename?: 'JiraSubscription';
|
|
48826
|
+
bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
|
|
48537
48827
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
48538
48828
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
48539
48829
|
onAutodevJobUpdated?: Maybe<JiraAutodevJobConnection>;
|
|
48540
48830
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
48541
48831
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
48832
|
+
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
48542
48833
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
48543
48834
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
48544
48835
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
@@ -48547,6 +48838,10 @@ export declare type JiraSubscription = {
|
|
|
48547
48838
|
onProjectCleanupTaskStatusChange?: Maybe<JiraProjectCleanupTaskStatus>;
|
|
48548
48839
|
onSuggestedChildIssue?: Maybe<JiraOnSuggestedChildIssueResult>;
|
|
48549
48840
|
};
|
|
48841
|
+
export declare type JiraSubscriptionBulkOperationProgressSubscriptionArgs = {
|
|
48842
|
+
cloudId: Scalars['ID']['input'];
|
|
48843
|
+
taskId: Scalars['ID']['input'];
|
|
48844
|
+
};
|
|
48550
48845
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
48551
48846
|
cloudId: Scalars['ID']['input'];
|
|
48552
48847
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -48567,6 +48862,9 @@ export declare type JiraSubscriptionOnIssueDeletedByProjectArgs = {
|
|
|
48567
48862
|
cloudId: Scalars['ID']['input'];
|
|
48568
48863
|
projectId: Scalars['String']['input'];
|
|
48569
48864
|
};
|
|
48865
|
+
export declare type JiraSubscriptionOnIssueExportedArgs = {
|
|
48866
|
+
input: JiraIssueExportInput;
|
|
48867
|
+
};
|
|
48570
48868
|
export declare type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
|
|
48571
48869
|
cloudId: Scalars['ID']['input'];
|
|
48572
48870
|
projectId: Scalars['String']['input'];
|
|
@@ -51717,20 +52015,26 @@ export declare type LogQueryInput = {
|
|
|
51717
52015
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
51718
52016
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
51719
52017
|
};
|
|
52018
|
+
export declare enum LpCertStatus {
|
|
52019
|
+
Active = "ACTIVE",
|
|
52020
|
+
Expired = "EXPIRED"
|
|
52021
|
+
}
|
|
51720
52022
|
export declare type LpCertmetricsCertificate = {
|
|
51721
52023
|
__typename?: 'LpCertmetricsCertificate';
|
|
51722
52024
|
activeDate?: Maybe<Scalars['String']['output']>;
|
|
51723
52025
|
expireDate?: Maybe<Scalars['String']['output']>;
|
|
52026
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
51724
52027
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
51725
52028
|
name?: Maybe<Scalars['String']['output']>;
|
|
51726
52029
|
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
51727
52030
|
publicUrl?: Maybe<Scalars['String']['output']>;
|
|
51728
|
-
status?: Maybe<
|
|
52031
|
+
status?: Maybe<LpCertStatus>;
|
|
51729
52032
|
};
|
|
51730
52033
|
export declare type LpCertmetricsCertificateConnection = {
|
|
51731
52034
|
__typename?: 'LpCertmetricsCertificateConnection';
|
|
51732
52035
|
edges?: Maybe<Array<LpCertmetricsCertificateEdge>>;
|
|
51733
52036
|
pageInfo?: Maybe<LpPageInfo>;
|
|
52037
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51734
52038
|
};
|
|
51735
52039
|
export declare type LpCertmetricsCertificateEdge = {
|
|
51736
52040
|
__typename?: 'LpCertmetricsCertificateEdge';
|
|
@@ -51739,20 +52043,28 @@ export declare type LpCertmetricsCertificateEdge = {
|
|
|
51739
52043
|
};
|
|
51740
52044
|
export declare type LpCourseProgress = {
|
|
51741
52045
|
__typename?: 'LpCourseProgress';
|
|
52046
|
+
completedDate?: Maybe<Scalars['String']['output']>;
|
|
51742
52047
|
courseId?: Maybe<Scalars['String']['output']>;
|
|
52048
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
51743
52049
|
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
51744
|
-
status?: Maybe<
|
|
52050
|
+
status?: Maybe<LpCourseStatus>;
|
|
52051
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
51745
52052
|
};
|
|
51746
52053
|
export declare type LpCourseProgressConnection = {
|
|
51747
52054
|
__typename?: 'LpCourseProgressConnection';
|
|
51748
52055
|
edges?: Maybe<Array<LpCourseProgressEdge>>;
|
|
51749
52056
|
pageInfo?: Maybe<LpPageInfo>;
|
|
52057
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51750
52058
|
};
|
|
51751
52059
|
export declare type LpCourseProgressEdge = {
|
|
51752
52060
|
__typename?: 'LpCourseProgressEdge';
|
|
51753
52061
|
cursor: Scalars['String']['output'];
|
|
51754
52062
|
node?: Maybe<LpCourseProgress>;
|
|
51755
52063
|
};
|
|
52064
|
+
export declare enum LpCourseStatus {
|
|
52065
|
+
Completed = "COMPLETED",
|
|
52066
|
+
InProgress = "IN_PROGRESS"
|
|
52067
|
+
}
|
|
51756
52068
|
export declare type LpLearner = Node & {
|
|
51757
52069
|
__typename?: 'LpLearner';
|
|
51758
52070
|
atlassianId: Scalars['String']['output'];
|
|
@@ -51765,13 +52077,14 @@ export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
|
51765
52077
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
51766
52078
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51767
52079
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52080
|
+
status?: InputMaybe<LpCertStatus>;
|
|
51768
52081
|
};
|
|
51769
52082
|
export declare type LpLearnerCoursesArgs = {
|
|
51770
52083
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
51771
52084
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
51772
52085
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51773
52086
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51774
|
-
status?: InputMaybe<
|
|
52087
|
+
status?: InputMaybe<LpCourseStatus>;
|
|
51775
52088
|
};
|
|
51776
52089
|
export declare type LpLearnerData = {
|
|
51777
52090
|
__typename?: 'LpLearnerData';
|
|
@@ -53792,6 +54105,7 @@ export declare type Mutation = {
|
|
|
53792
54105
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacyAddDefaultExCoSpacePermissionsPayload>;
|
|
53793
54106
|
confluenceLegacy_addLabels?: Maybe<ConfluenceLegacyAddLabelsPayload>;
|
|
53794
54107
|
confluenceLegacy_addPublicLinkPermissions?: Maybe<ConfluenceLegacyAddPublicLinkPermissionsPayload>;
|
|
54108
|
+
confluenceLegacy_addReaction?: Maybe<ConfluenceLegacySaveReactionResponse>;
|
|
53795
54109
|
confluenceLegacy_archivePages?: Maybe<ConfluenceLegacyBulkArchivePagePayload>;
|
|
53796
54110
|
confluenceLegacy_attachDanglingComment?: Maybe<ConfluenceLegacyComment>;
|
|
53797
54111
|
confluenceLegacy_bulkArchivePages?: Maybe<ConfluenceLegacyBulkArchivePagePayload>;
|
|
@@ -53837,6 +54151,7 @@ export declare type Mutation = {
|
|
|
53837
54151
|
confluenceLegacy_deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
53838
54152
|
confluenceLegacy_deleteLabel?: Maybe<ConfluenceLegacyDeleteLabelPayload>;
|
|
53839
54153
|
confluenceLegacy_deletePages?: Maybe<ConfluenceLegacyDeletePagesPayload>;
|
|
54154
|
+
confluenceLegacy_deleteReaction?: Maybe<ConfluenceLegacySaveReactionResponse>;
|
|
53840
54155
|
confluenceLegacy_deleteRelation?: Maybe<ConfluenceLegacyDeleteRelationPayload>;
|
|
53841
54156
|
confluenceLegacy_deleteSpaceDefaultClassificationLevel?: Maybe<ConfluenceLegacyDeleteSpaceDefaultClassificationLevelPayload>;
|
|
53842
54157
|
confluenceLegacy_deleteSpaceRoles?: Maybe<ConfluenceLegacyDeleteSpaceRolesPayload>;
|
|
@@ -54137,6 +54452,13 @@ export declare type MutationConfluenceLegacy_AddLabelsArgs = {
|
|
|
54137
54452
|
export declare type MutationConfluenceLegacy_AddPublicLinkPermissionsArgs = {
|
|
54138
54453
|
input: ConfluenceLegacyAddPublicLinkPermissionsInput;
|
|
54139
54454
|
};
|
|
54455
|
+
export declare type MutationConfluenceLegacy_AddReactionArgs = {
|
|
54456
|
+
containerId: Scalars['String']['input'];
|
|
54457
|
+
containerType: ConfluenceLegacyContainerType;
|
|
54458
|
+
contentId: Scalars['String']['input'];
|
|
54459
|
+
contentType: ConfluenceLegacyReactionContentType;
|
|
54460
|
+
emojiId: Scalars['String']['input'];
|
|
54461
|
+
};
|
|
54140
54462
|
export declare type MutationConfluenceLegacy_ArchivePagesArgs = {
|
|
54141
54463
|
input: Array<InputMaybe<ConfluenceLegacyBulkArchivePagesInput>>;
|
|
54142
54464
|
};
|
|
@@ -54279,6 +54601,13 @@ export declare type MutationConfluenceLegacy_DeleteLabelArgs = {
|
|
|
54279
54601
|
export declare type MutationConfluenceLegacy_DeletePagesArgs = {
|
|
54280
54602
|
input: Array<InputMaybe<ConfluenceLegacyDeletePagesInput>>;
|
|
54281
54603
|
};
|
|
54604
|
+
export declare type MutationConfluenceLegacy_DeleteReactionArgs = {
|
|
54605
|
+
containerId: Scalars['String']['input'];
|
|
54606
|
+
containerType: ConfluenceLegacyContainerType;
|
|
54607
|
+
contentId: Scalars['String']['input'];
|
|
54608
|
+
contentType: ConfluenceLegacyReactionContentType;
|
|
54609
|
+
emojiId: Scalars['String']['input'];
|
|
54610
|
+
};
|
|
54282
54611
|
export declare type MutationConfluenceLegacy_DeleteRelationArgs = {
|
|
54283
54612
|
input: ConfluenceLegacyDeleteRelationInput;
|
|
54284
54613
|
};
|
|
@@ -57362,7 +57691,6 @@ export declare type Query = {
|
|
|
57362
57691
|
confluenceLegacy_pageAnalyticsCount?: Maybe<ConfluenceLegacyPageAnalyticsCount>;
|
|
57363
57692
|
confluenceLegacy_pageAnalyticsTimeseriesCount?: Maybe<ConfluenceLegacyPageAnalyticsTimeseriesCount>;
|
|
57364
57693
|
confluenceLegacy_pageContextContentCreationMetadata?: Maybe<ConfluenceLegacyContentCreationMetadata>;
|
|
57365
|
-
confluenceLegacy_pageTreeCloudId?: Maybe<ConfluenceLegacyPageTreeCloudId>;
|
|
57366
57694
|
confluenceLegacy_pages?: Maybe<ConfluenceLegacyPaginatedPageList>;
|
|
57367
57695
|
confluenceLegacy_paywallContentToDisable?: Maybe<ConfluenceLegacyPaywallContentSingle>;
|
|
57368
57696
|
confluenceLegacy_paywallStatus?: Maybe<ConfluenceLegacyPaywallStatus>;
|
|
@@ -57379,6 +57707,9 @@ export declare type Query = {
|
|
|
57379
57707
|
confluenceLegacy_publishConditions?: Maybe<Array<Maybe<ConfluenceLegacyPublishConditions>>>;
|
|
57380
57708
|
confluenceLegacy_pushNotificationSettings?: Maybe<ConfluenceLegacyPushNotificationSettings>;
|
|
57381
57709
|
confluenceLegacy_quickReload?: Maybe<ConfluenceLegacyQuickReload>;
|
|
57710
|
+
confluenceLegacy_reactedUsers?: Maybe<ConfluenceLegacyReactedUsersResponse>;
|
|
57711
|
+
confluenceLegacy_reactionsSummary?: Maybe<ConfluenceLegacyReactionsSummaryResponse>;
|
|
57712
|
+
confluenceLegacy_reactionsSummaryList?: Maybe<Array<Maybe<ConfluenceLegacyReactionsSummaryResponse>>>;
|
|
57382
57713
|
confluenceLegacy_recentlyViewedSpaces?: Maybe<Array<Maybe<ConfluenceLegacySpace>>>;
|
|
57383
57714
|
confluenceLegacy_renderedContentDump?: Maybe<ConfluenceLegacyHtmlDocument>;
|
|
57384
57715
|
confluenceLegacy_search?: Maybe<ConfluenceLegacyPaginatedSearchResultList>;
|
|
@@ -58173,9 +58504,6 @@ export declare type QueryConfluenceLegacy_PageAnalyticsTimeseriesCountArgs = {
|
|
|
58173
58504
|
export declare type QueryConfluenceLegacy_PageContextContentCreationMetadataArgs = {
|
|
58174
58505
|
contentId: Scalars['ID']['input'];
|
|
58175
58506
|
};
|
|
58176
|
-
export declare type QueryConfluenceLegacy_PageTreeCloudIdArgs = {
|
|
58177
|
-
cloudId: Scalars['ID']['input'];
|
|
58178
|
-
};
|
|
58179
58507
|
export declare type QueryConfluenceLegacy_PagesArgs = {
|
|
58180
58508
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
58181
58509
|
pageId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -58246,6 +58574,22 @@ export declare type QueryConfluenceLegacy_QuickReloadArgs = {
|
|
|
58246
58574
|
pageId: Scalars['Long']['input'];
|
|
58247
58575
|
since: Scalars['Long']['input'];
|
|
58248
58576
|
};
|
|
58577
|
+
export declare type QueryConfluenceLegacy_ReactedUsersArgs = {
|
|
58578
|
+
containerId: Scalars['String']['input'];
|
|
58579
|
+
containerType: ConfluenceLegacyContainerType;
|
|
58580
|
+
contentId: Scalars['String']['input'];
|
|
58581
|
+
contentType: ConfluenceLegacyReactionContentType;
|
|
58582
|
+
emojiId: Scalars['String']['input'];
|
|
58583
|
+
};
|
|
58584
|
+
export declare type QueryConfluenceLegacy_ReactionsSummaryArgs = {
|
|
58585
|
+
containerId: Scalars['ID']['input'];
|
|
58586
|
+
containerType?: InputMaybe<Scalars['String']['input']>;
|
|
58587
|
+
contentId: Scalars['ID']['input'];
|
|
58588
|
+
contentType: Scalars['String']['input'];
|
|
58589
|
+
};
|
|
58590
|
+
export declare type QueryConfluenceLegacy_ReactionsSummaryListArgs = {
|
|
58591
|
+
ids: Array<InputMaybe<ConfluenceLegacyReactionsId>>;
|
|
58592
|
+
};
|
|
58249
58593
|
export declare type QueryConfluenceLegacy_RecentlyViewedSpacesArgs = {
|
|
58250
58594
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
58251
58595
|
};
|
|
@@ -60401,7 +60745,7 @@ export declare type SearchConfluenceFilter = {
|
|
|
60401
60745
|
spacesFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
60402
60746
|
titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60403
60747
|
};
|
|
60404
|
-
export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
60748
|
+
export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider & SearchResult & {
|
|
60405
60749
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
60406
60750
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
60407
60751
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -60437,14 +60781,16 @@ export declare type SearchConfluenceRangeFilter = {
|
|
|
60437
60781
|
};
|
|
60438
60782
|
export declare type SearchConfluenceResultSpace = {
|
|
60439
60783
|
__typename?: 'SearchConfluenceResultSpace';
|
|
60784
|
+
alias?: Maybe<Scalars['String']['output']>;
|
|
60440
60785
|
id: Scalars['ID']['output'];
|
|
60441
60786
|
key?: Maybe<Scalars['String']['output']>;
|
|
60442
60787
|
name?: Maybe<Scalars['String']['output']>;
|
|
60443
60788
|
spaceId?: Maybe<Scalars['String']['output']>;
|
|
60444
60789
|
webUiLink?: Maybe<Scalars['String']['output']>;
|
|
60445
60790
|
};
|
|
60446
|
-
export declare type SearchConfluenceSpace = SearchResult & {
|
|
60791
|
+
export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResult & {
|
|
60447
60792
|
__typename?: 'SearchConfluenceSpace';
|
|
60793
|
+
alias?: Maybe<Scalars['String']['output']>;
|
|
60448
60794
|
description: Scalars['String']['output'];
|
|
60449
60795
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
60450
60796
|
iconPath?: Maybe<Scalars['String']['output']>;
|
|
@@ -60551,6 +60897,9 @@ export declare type SearchL2Feature = {
|
|
|
60551
60897
|
key: Scalars['String']['output'];
|
|
60552
60898
|
value?: Maybe<Scalars['Float']['output']>;
|
|
60553
60899
|
};
|
|
60900
|
+
export declare type SearchL2FeatureProvider = {
|
|
60901
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60902
|
+
};
|
|
60554
60903
|
export declare type SearchProductCount = {
|
|
60555
60904
|
__typename?: 'SearchProductCount';
|
|
60556
60905
|
count: Scalars['Int']['output'];
|
|
@@ -60651,13 +61000,14 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
60651
61000
|
type: SearchResultType;
|
|
60652
61001
|
url: Scalars['URL']['output'];
|
|
60653
61002
|
};
|
|
60654
|
-
export declare type SearchResultGoogleDocument = SearchResult & {
|
|
61003
|
+
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
60655
61004
|
__typename?: 'SearchResultGoogleDocument';
|
|
60656
61005
|
bodyText: Scalars['String']['output'];
|
|
60657
61006
|
description: Scalars['String']['output'];
|
|
60658
61007
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
60659
61008
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
60660
61009
|
id: Scalars['ID']['output'];
|
|
61010
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60661
61011
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60662
61012
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
60663
61013
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -60665,13 +61015,14 @@ export declare type SearchResultGoogleDocument = SearchResult & {
|
|
|
60665
61015
|
type: SearchResultType;
|
|
60666
61016
|
url: Scalars['URL']['output'];
|
|
60667
61017
|
};
|
|
60668
|
-
export declare type SearchResultGooglePresentation = SearchResult & {
|
|
61018
|
+
export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & SearchResult & {
|
|
60669
61019
|
__typename?: 'SearchResultGooglePresentation';
|
|
60670
61020
|
bodyText: Scalars['String']['output'];
|
|
60671
61021
|
description: Scalars['String']['output'];
|
|
60672
61022
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
60673
61023
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
60674
61024
|
id: Scalars['ID']['output'];
|
|
61025
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60675
61026
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60676
61027
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
60677
61028
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -60679,13 +61030,14 @@ export declare type SearchResultGooglePresentation = SearchResult & {
|
|
|
60679
61030
|
type: SearchResultType;
|
|
60680
61031
|
url: Scalars['URL']['output'];
|
|
60681
61032
|
};
|
|
60682
|
-
export declare type SearchResultGoogleSpreadsheet = SearchResult & {
|
|
61033
|
+
export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & SearchResult & {
|
|
60683
61034
|
__typename?: 'SearchResultGoogleSpreadsheet';
|
|
60684
61035
|
bodyText: Scalars['String']['output'];
|
|
60685
61036
|
description: Scalars['String']['output'];
|
|
60686
61037
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
60687
61038
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
60688
61039
|
id: Scalars['ID']['output'];
|
|
61040
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60689
61041
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60690
61042
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
60691
61043
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -60693,7 +61045,7 @@ export declare type SearchResultGoogleSpreadsheet = SearchResult & {
|
|
|
60693
61045
|
type: SearchResultType;
|
|
60694
61046
|
url: Scalars['URL']['output'];
|
|
60695
61047
|
};
|
|
60696
|
-
export declare type SearchResultGraphDocument = SearchResult & {
|
|
61048
|
+
export declare type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult & {
|
|
60697
61049
|
__typename?: 'SearchResultGraphDocument';
|
|
60698
61050
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
60699
61051
|
description: Scalars['String']['output'];
|
|
@@ -60702,6 +61054,7 @@ export declare type SearchResultGraphDocument = SearchResult & {
|
|
|
60702
61054
|
id: Scalars['ID']['output'];
|
|
60703
61055
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
60704
61056
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
61057
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60705
61058
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60706
61059
|
owner?: Maybe<ThirdPartyUser>;
|
|
60707
61060
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
@@ -60835,13 +61188,14 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
60835
61188
|
export declare type SearchResultJiraProjectSocialSignalArgs = {
|
|
60836
61189
|
tenantId: Scalars['ID']['input'];
|
|
60837
61190
|
};
|
|
60838
|
-
export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
61191
|
+
export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & SearchResult & {
|
|
60839
61192
|
__typename?: 'SearchResultMicrosoftDocument';
|
|
60840
61193
|
bodyText: Scalars['String']['output'];
|
|
60841
61194
|
description: Scalars['String']['output'];
|
|
60842
61195
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
60843
61196
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
60844
61197
|
id: Scalars['ID']['output'];
|
|
61198
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60845
61199
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60846
61200
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
60847
61201
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -60849,13 +61203,14 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
60849
61203
|
type: SearchResultType;
|
|
60850
61204
|
url: Scalars['URL']['output'];
|
|
60851
61205
|
};
|
|
60852
|
-
export declare type SearchResultSlackMessage = SearchResult & {
|
|
61206
|
+
export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchResult & {
|
|
60853
61207
|
__typename?: 'SearchResultSlackMessage';
|
|
60854
61208
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
60855
61209
|
description: Scalars['String']['output'];
|
|
60856
61210
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
60857
61211
|
id: Scalars['ID']['output'];
|
|
60858
61212
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
61213
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
60859
61214
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
60860
61215
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
60861
61216
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -62008,10 +62363,16 @@ export declare type ShepherdSearchDetectionHighlight = {
|
|
|
62008
62363
|
__typename?: 'ShepherdSearchDetectionHighlight';
|
|
62009
62364
|
searchQueries: Array<ShepherdSearchQuery>;
|
|
62010
62365
|
};
|
|
62366
|
+
export declare enum ShepherdSearchOrigin {
|
|
62367
|
+
AdvancedSearch = "ADVANCED_SEARCH",
|
|
62368
|
+
Ai = "AI",
|
|
62369
|
+
QuickSearch = "QUICK_SEARCH"
|
|
62370
|
+
}
|
|
62011
62371
|
export declare type ShepherdSearchQuery = {
|
|
62012
62372
|
__typename?: 'ShepherdSearchQuery';
|
|
62013
62373
|
datetime: Scalars['DateTime']['output'];
|
|
62014
62374
|
query: Scalars['String']['output'];
|
|
62375
|
+
searchOrigin?: Maybe<ShepherdSearchOrigin>;
|
|
62015
62376
|
suspiciousSearchTerms?: Maybe<Array<ShepherdSuspiciousSearchTerm>>;
|
|
62016
62377
|
};
|
|
62017
62378
|
export declare type ShepherdSite = {
|
|
@@ -63267,6 +63628,7 @@ export declare type TeamQueryTeamSearchV2Args = {
|
|
|
63267
63628
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63268
63629
|
organizationId: Scalars['ID']['input'];
|
|
63269
63630
|
searchFields?: InputMaybe<Array<InputMaybe<TeamSearchField>>>;
|
|
63631
|
+
showEmptyTeams?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63270
63632
|
siteId: Scalars['String']['input'];
|
|
63271
63633
|
sortBy?: InputMaybe<Array<InputMaybe<TeamSort>>>;
|
|
63272
63634
|
};
|
|
@@ -64285,16 +64647,6 @@ export declare type TrelloBoardBackground = {
|
|
|
64285
64647
|
tile?: Maybe<Scalars['Boolean']['output']>;
|
|
64286
64648
|
topColor?: Maybe<Scalars['String']['output']>;
|
|
64287
64649
|
};
|
|
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
64650
|
export declare type TrelloBoardBoardsLimits = {
|
|
64299
64651
|
__typename?: 'TrelloBoardBoardsLimits';
|
|
64300
64652
|
totalAccessRequestsPerBoard?: Maybe<TrelloLimitProps>;
|
|
@@ -64417,13 +64769,6 @@ export declare type TrelloBoardPrefs = {
|
|
|
64417
64769
|
switcherViews?: Maybe<Array<Maybe<TrelloSwitcherViewsInfo>>>;
|
|
64418
64770
|
voting?: Maybe<Scalars['String']['output']>;
|
|
64419
64771
|
};
|
|
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
64772
|
export declare type TrelloBoardReactionsLimits = {
|
|
64428
64773
|
__typename?: 'TrelloBoardReactionsLimits';
|
|
64429
64774
|
perAction?: Maybe<TrelloLimitProps>;
|
|
@@ -64442,7 +64787,7 @@ export declare type TrelloBoardStickersLimits = {
|
|
|
64442
64787
|
};
|
|
64443
64788
|
export declare type TrelloBoardUpdated = {
|
|
64444
64789
|
__typename?: 'TrelloBoardUpdated';
|
|
64445
|
-
_deltas?: Maybe<
|
|
64790
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
64446
64791
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
64447
64792
|
id?: Maybe<Scalars['ID']['output']>;
|
|
64448
64793
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
@@ -64450,13 +64795,6 @@ export declare type TrelloBoardUpdated = {
|
|
|
64450
64795
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
64451
64796
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
64452
64797
|
};
|
|
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
64798
|
export declare type TrelloBoardViewer = {
|
|
64461
64799
|
__typename?: 'TrelloBoardViewer';
|
|
64462
64800
|
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -64677,17 +65015,6 @@ export declare type TrelloCardUpdatedConnection = {
|
|
|
64677
65015
|
__typename?: 'TrelloCardUpdatedConnection';
|
|
64678
65016
|
nodes?: Maybe<Array<TrelloCardUpdated>>;
|
|
64679
65017
|
};
|
|
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
65018
|
export declare type TrelloCardViewer = {
|
|
64692
65019
|
__typename?: 'TrelloCardViewer';
|
|
64693
65020
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -64937,19 +65264,6 @@ export declare type TrelloListUpdatedConnection = {
|
|
|
64937
65264
|
__typename?: 'TrelloListUpdatedConnection';
|
|
64938
65265
|
nodes?: Maybe<Array<TrelloListUpdated>>;
|
|
64939
65266
|
};
|
|
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
65267
|
export declare type TrelloListViewer = {
|
|
64954
65268
|
__typename?: 'TrelloListViewer';
|
|
64955
65269
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -65329,6 +65643,7 @@ export declare type TrelloWatchCardPayload = Payload & {
|
|
|
65329
65643
|
};
|
|
65330
65644
|
export declare type TrelloWorkspace = Node & {
|
|
65331
65645
|
__typename?: 'TrelloWorkspace';
|
|
65646
|
+
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
65332
65647
|
description: Scalars['String']['output'];
|
|
65333
65648
|
displayName: Scalars['String']['output'];
|
|
65334
65649
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
@@ -66087,6 +66402,7 @@ export declare type UpdateComponentApiPayload = {
|
|
|
66087
66402
|
export declare type UpdateComponentApiUploadInput = {
|
|
66088
66403
|
componentId: Scalars['ID']['input'];
|
|
66089
66404
|
effectiveAt: Scalars['String']['input'];
|
|
66405
|
+
shouldDereference?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66090
66406
|
tags: Array<Scalars['String']['input']>;
|
|
66091
66407
|
uploadId: Scalars['ID']['input'];
|
|
66092
66408
|
};
|