@forge/cli-shared 5.0.1-next.3 → 5.0.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 +19 -0
- package/out/graphql/graphql-types.d.ts +859 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +132 -13
- package/package.json +2 -2
|
@@ -557,6 +557,7 @@ export declare enum ApiGroup {
|
|
|
557
557
|
CommerceSharedApi = "COMMERCE_SHARED_API",
|
|
558
558
|
Compass = "COMPASS",
|
|
559
559
|
Confluence = "CONFLUENCE",
|
|
560
|
+
ConfluenceV2 = "CONFLUENCE_V2",
|
|
560
561
|
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
561
562
|
CustomerService = "CUSTOMER_SERVICE",
|
|
562
563
|
DevopsAriGraph = "DEVOPS_ARI_GRAPH",
|
|
@@ -1702,6 +1703,32 @@ export declare type AttachEventSourcePayload = Payload & {
|
|
|
1702
1703
|
errors?: Maybe<Array<MutationError>>;
|
|
1703
1704
|
success: Scalars['Boolean']['output'];
|
|
1704
1705
|
};
|
|
1706
|
+
export declare enum AttachmentStatusV2 {
|
|
1707
|
+
Any = "any",
|
|
1708
|
+
Archived = "archived",
|
|
1709
|
+
Current = "current",
|
|
1710
|
+
Deleted = "deleted",
|
|
1711
|
+
Draft = "draft",
|
|
1712
|
+
Historical = "historical",
|
|
1713
|
+
Trashed = "trashed"
|
|
1714
|
+
}
|
|
1715
|
+
export declare type AttachmentV2 = Node & {
|
|
1716
|
+
__typename?: 'AttachmentV2';
|
|
1717
|
+
blogPostId?: Maybe<Scalars['ID']['output']>;
|
|
1718
|
+
comment?: Maybe<Scalars['String']['output']>;
|
|
1719
|
+
customContentId?: Maybe<Scalars['ID']['output']>;
|
|
1720
|
+
downloadLink?: Maybe<Scalars['String']['output']>;
|
|
1721
|
+
fileId?: Maybe<Scalars['String']['output']>;
|
|
1722
|
+
fileSize?: Maybe<Scalars['Int']['output']>;
|
|
1723
|
+
id: Scalars['ID']['output'];
|
|
1724
|
+
mediaType?: Maybe<Scalars['String']['output']>;
|
|
1725
|
+
mediaTypeDescription?: Maybe<Scalars['String']['output']>;
|
|
1726
|
+
pageId?: Maybe<Scalars['ID']['output']>;
|
|
1727
|
+
status: AttachmentStatusV2;
|
|
1728
|
+
title: Scalars['String']['output'];
|
|
1729
|
+
version?: Maybe<VersionV2>;
|
|
1730
|
+
webuiLink?: Maybe<Scalars['String']['output']>;
|
|
1731
|
+
};
|
|
1705
1732
|
export declare type AuditEvent = {
|
|
1706
1733
|
__typename?: 'AuditEvent';
|
|
1707
1734
|
attributes: AuditEventAttributes;
|
|
@@ -1918,6 +1945,41 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
|
|
|
1918
1945
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1919
1946
|
permissionFilter?: InputMaybe<BitbucketPermission>;
|
|
1920
1947
|
};
|
|
1948
|
+
export declare type BlogPostV2 = Node & {
|
|
1949
|
+
__typename?: 'BlogPostV2';
|
|
1950
|
+
authorId?: Maybe<Scalars['String']['output']>;
|
|
1951
|
+
body?: Maybe<BodyV2>;
|
|
1952
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
1953
|
+
id: Scalars['ID']['output'];
|
|
1954
|
+
internalProperties?: Maybe<InternalProperties>;
|
|
1955
|
+
operations?: Maybe<OperationsV2>;
|
|
1956
|
+
space?: Maybe<SpaceV2>;
|
|
1957
|
+
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
1958
|
+
spaceLookAndFeel?: Maybe<LookAndFeelV2>;
|
|
1959
|
+
spaceSettings?: Maybe<SpaceSettingsV2>;
|
|
1960
|
+
spaceTheme?: Maybe<ThemeV2>;
|
|
1961
|
+
status: BlogStatusV2;
|
|
1962
|
+
title: Scalars['String']['output'];
|
|
1963
|
+
version?: Maybe<VersionV2>;
|
|
1964
|
+
};
|
|
1965
|
+
export declare type BlogPostV2Connection = {
|
|
1966
|
+
__typename?: 'BlogPostV2Connection';
|
|
1967
|
+
edges?: Maybe<Array<Maybe<BlogPostV2Edge>>>;
|
|
1968
|
+
nodes?: Maybe<Array<Maybe<BlogPostV2>>>;
|
|
1969
|
+
pageInfo: PageInfoV2;
|
|
1970
|
+
};
|
|
1971
|
+
export declare type BlogPostV2Edge = {
|
|
1972
|
+
__typename?: 'BlogPostV2Edge';
|
|
1973
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
1974
|
+
node: BlogPostV2;
|
|
1975
|
+
};
|
|
1976
|
+
export declare enum BlogStatusV2 {
|
|
1977
|
+
Current = "current",
|
|
1978
|
+
Deleted = "deleted",
|
|
1979
|
+
Draft = "draft",
|
|
1980
|
+
Historical = "historical",
|
|
1981
|
+
Trashed = "trashed"
|
|
1982
|
+
}
|
|
1921
1983
|
export declare type BoardCardMoveInput = {
|
|
1922
1984
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
1923
1985
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
@@ -2006,6 +2068,7 @@ export declare type BoardScope = Node & {
|
|
|
2006
2068
|
oldDoneIssuesCutOffConfig?: Maybe<JswOldDoneIssuesCutOffConfig>;
|
|
2007
2069
|
projectLocation: SoftwareProject;
|
|
2008
2070
|
reports?: Maybe<SoftwareReports>;
|
|
2071
|
+
roadmapConfig?: Maybe<JswBoardScopeRoadmapConfig>;
|
|
2009
2072
|
savedFilterConfig?: Maybe<JswSavedFilterConfig>;
|
|
2010
2073
|
showEpicAsPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
2011
2074
|
sprint?: Maybe<Sprint>;
|
|
@@ -2063,12 +2126,25 @@ export declare enum BoardSwimlaneStrategy {
|
|
|
2063
2126
|
Project = "PROJECT",
|
|
2064
2127
|
RequestType = "REQUEST_TYPE"
|
|
2065
2128
|
}
|
|
2129
|
+
export declare enum BodyFormatV2 {
|
|
2130
|
+
AtlasDocFormat = "atlas_doc_format",
|
|
2131
|
+
Storage = "storage"
|
|
2132
|
+
}
|
|
2133
|
+
export declare type BodyV2 = {
|
|
2134
|
+
__typename?: 'BodyV2';
|
|
2135
|
+
atlasDocFormat?: Maybe<FormattedBodyV2>;
|
|
2136
|
+
storage?: Maybe<FormattedBodyV2>;
|
|
2137
|
+
};
|
|
2066
2138
|
export declare type Book = {
|
|
2067
2139
|
__typename?: 'Book';
|
|
2068
2140
|
author?: Maybe<Array<Maybe<Author>>>;
|
|
2069
2141
|
id?: Maybe<Scalars['String']['output']>;
|
|
2070
2142
|
title?: Maybe<Scalars['String']['output']>;
|
|
2071
2143
|
};
|
|
2144
|
+
export declare type BordersAndDividersLookAndFeel = {
|
|
2145
|
+
__typename?: 'BordersAndDividersLookAndFeel';
|
|
2146
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
2147
|
+
};
|
|
2072
2148
|
export declare enum BuiltinPolarisIdeaField {
|
|
2073
2149
|
Archived = "ARCHIVED",
|
|
2074
2150
|
ArchivedBy = "ARCHIVED_BY",
|
|
@@ -2096,6 +2172,17 @@ export declare enum BuiltinPolarisIdeaField {
|
|
|
2096
2172
|
Updated = "UPDATED",
|
|
2097
2173
|
Votes = "VOTES"
|
|
2098
2174
|
}
|
|
2175
|
+
export declare enum BulkBlogPostStatusV2 {
|
|
2176
|
+
Current = "current",
|
|
2177
|
+
Deleted = "deleted",
|
|
2178
|
+
Trashed = "trashed"
|
|
2179
|
+
}
|
|
2180
|
+
export declare enum BulkPageStatusV2 {
|
|
2181
|
+
Archived = "archived",
|
|
2182
|
+
Current = "current",
|
|
2183
|
+
Deleted = "deleted",
|
|
2184
|
+
Trashed = "trashed"
|
|
2185
|
+
}
|
|
2099
2186
|
export declare type BurndownChart = {
|
|
2100
2187
|
__typename?: 'BurndownChart';
|
|
2101
2188
|
chart: BurndownChartData;
|
|
@@ -2145,6 +2232,11 @@ export declare type Business = {
|
|
|
2145
2232
|
endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2146
2233
|
isAppBusiness: AcceptableResponse;
|
|
2147
2234
|
};
|
|
2235
|
+
export declare type ButtonLookAndFeel = {
|
|
2236
|
+
__typename?: 'ButtonLookAndFeel';
|
|
2237
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
2238
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
2239
|
+
};
|
|
2148
2240
|
export declare type Caiq = {
|
|
2149
2241
|
__typename?: 'CAIQ';
|
|
2150
2242
|
CAIQLiteLink?: Maybe<Scalars['String']['output']>;
|
|
@@ -2818,6 +2910,16 @@ export declare type ColumnsConfig = {
|
|
|
2818
2910
|
unmappedStatuses?: Maybe<Array<Maybe<RawStatus>>>;
|
|
2819
2911
|
workflow?: Maybe<ColumnWorkflowConfig>;
|
|
2820
2912
|
};
|
|
2913
|
+
export declare type CommentInternalProperties = {
|
|
2914
|
+
__typename?: 'CommentInternalProperties';
|
|
2915
|
+
commentSource?: Maybe<Scalars['String']['output']>;
|
|
2916
|
+
};
|
|
2917
|
+
export declare type CommentLinksV2 = {
|
|
2918
|
+
__typename?: 'CommentLinksV2';
|
|
2919
|
+
editui?: Maybe<Scalars['String']['output']>;
|
|
2920
|
+
tinyui?: Maybe<Scalars['String']['output']>;
|
|
2921
|
+
webui?: Maybe<Scalars['String']['output']>;
|
|
2922
|
+
};
|
|
2821
2923
|
export declare type CommerceAccountDetails = {
|
|
2822
2924
|
invoiceGroup?: Maybe<CommerceInvoiceGroup>;
|
|
2823
2925
|
};
|
|
@@ -7179,6 +7281,28 @@ export declare type ContainerEventObject = {
|
|
|
7179
7281
|
id: Scalars['ID']['output'];
|
|
7180
7282
|
type: Scalars['String']['output'];
|
|
7181
7283
|
};
|
|
7284
|
+
export declare type ContainerLookAndFeel = {
|
|
7285
|
+
__typename?: 'ContainerLookAndFeel';
|
|
7286
|
+
background?: Maybe<Scalars['String']['output']>;
|
|
7287
|
+
backgroundAttachment?: Maybe<Scalars['String']['output']>;
|
|
7288
|
+
backgroundBlendMode?: Maybe<Scalars['String']['output']>;
|
|
7289
|
+
backgroundClip?: Maybe<Scalars['String']['output']>;
|
|
7290
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
7291
|
+
backgroundImage?: Maybe<Scalars['String']['output']>;
|
|
7292
|
+
backgroundOrigin?: Maybe<Scalars['String']['output']>;
|
|
7293
|
+
backgroundPosition?: Maybe<Scalars['String']['output']>;
|
|
7294
|
+
backgroundRepeat?: Maybe<Scalars['String']['output']>;
|
|
7295
|
+
backgroundSize?: Maybe<Scalars['String']['output']>;
|
|
7296
|
+
borderRadius?: Maybe<Scalars['String']['output']>;
|
|
7297
|
+
padding?: Maybe<Scalars['String']['output']>;
|
|
7298
|
+
};
|
|
7299
|
+
export declare type ContentLookAndFeel = {
|
|
7300
|
+
__typename?: 'ContentLookAndFeel';
|
|
7301
|
+
body?: Maybe<ContainerLookAndFeel>;
|
|
7302
|
+
container?: Maybe<ContainerLookAndFeel>;
|
|
7303
|
+
header?: Maybe<ContainerLookAndFeel>;
|
|
7304
|
+
screen?: Maybe<ScreenLookAndFeel>;
|
|
7305
|
+
};
|
|
7182
7306
|
export declare type ContentPlatformAdvocateQuote = {
|
|
7183
7307
|
__typename?: 'ContentPlatformAdvocateQuote';
|
|
7184
7308
|
advocateHeadshot?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
@@ -8206,6 +8330,12 @@ export declare type ContentPlatformTypeOfChange = {
|
|
|
8206
8330
|
icon: ContentPlatformImageAsset;
|
|
8207
8331
|
label: Scalars['String']['output'];
|
|
8208
8332
|
};
|
|
8333
|
+
export declare type ContentPropertyV2 = {
|
|
8334
|
+
__typename?: 'ContentPropertyV2';
|
|
8335
|
+
key: Scalars['String']['output'];
|
|
8336
|
+
value: Scalars['JSON']['output'];
|
|
8337
|
+
version: VersionV2;
|
|
8338
|
+
};
|
|
8209
8339
|
export declare type ContextEventObject = {
|
|
8210
8340
|
__typename?: 'ContextEventObject';
|
|
8211
8341
|
attributes: Scalars['JSON']['output'];
|
|
@@ -8587,6 +8717,17 @@ export declare type CreateJiraProjectAndRepositoryRelationshipPayload = Payload
|
|
|
8587
8717
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
8588
8718
|
success: Scalars['Boolean']['output'];
|
|
8589
8719
|
};
|
|
8720
|
+
export declare type CreatePageV2Input = {
|
|
8721
|
+
body?: InputMaybe<FormattedBodyV2Input>;
|
|
8722
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
8723
|
+
spaceId: Scalars['ID']['input'];
|
|
8724
|
+
status?: InputMaybe<PageCreateStatusV2>;
|
|
8725
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
8726
|
+
};
|
|
8727
|
+
export declare type CreatePageV2Payload = {
|
|
8728
|
+
__typename?: 'CreatePageV2Payload';
|
|
8729
|
+
pageV2?: Maybe<PageV2>;
|
|
8730
|
+
};
|
|
8590
8731
|
export declare type CreatePolarisCommentInput = {
|
|
8591
8732
|
content?: InputMaybe<Scalars['JSON']['input']>;
|
|
8592
8733
|
kind?: InputMaybe<PolarisCommentKind>;
|
|
@@ -10957,6 +11098,42 @@ export declare enum DevOpsPostIncidentReviewStatus {
|
|
|
10957
11098
|
InProgress = "IN_PROGRESS",
|
|
10958
11099
|
Todo = "TODO"
|
|
10959
11100
|
}
|
|
11101
|
+
export declare type DevOpsProjectDetails = {
|
|
11102
|
+
__typename?: 'DevOpsProjectDetails';
|
|
11103
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
11104
|
+
id: Scalars['ID']['output'];
|
|
11105
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
11106
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
11107
|
+
name: Scalars['String']['output'];
|
|
11108
|
+
owner?: Maybe<DevOpsProjectOwner>;
|
|
11109
|
+
projectTargetDate?: Maybe<DevOpsProjectTargetDate>;
|
|
11110
|
+
providerId: Scalars['String']['output'];
|
|
11111
|
+
status?: Maybe<DevOpsProjectStatus>;
|
|
11112
|
+
url: Scalars['URL']['output'];
|
|
11113
|
+
};
|
|
11114
|
+
export declare type DevOpsProjectOwner = {
|
|
11115
|
+
__typename?: 'DevOpsProjectOwner';
|
|
11116
|
+
atlassianUserId?: Maybe<Scalars['String']['output']>;
|
|
11117
|
+
};
|
|
11118
|
+
export declare enum DevOpsProjectStatus {
|
|
11119
|
+
Cancelled = "CANCELLED",
|
|
11120
|
+
Completed = "COMPLETED",
|
|
11121
|
+
InProgress = "IN_PROGRESS",
|
|
11122
|
+
Paused = "PAUSED",
|
|
11123
|
+
Pending = "PENDING",
|
|
11124
|
+
Unknown = "UNKNOWN"
|
|
11125
|
+
}
|
|
11126
|
+
export declare type DevOpsProjectTargetDate = {
|
|
11127
|
+
__typename?: 'DevOpsProjectTargetDate';
|
|
11128
|
+
targetDate?: Maybe<Scalars['DateTime']['output']>;
|
|
11129
|
+
targetDateType?: Maybe<DevOpsProjectTargetDateType>;
|
|
11130
|
+
};
|
|
11131
|
+
export declare enum DevOpsProjectTargetDateType {
|
|
11132
|
+
Day = "DAY",
|
|
11133
|
+
Month = "MONTH",
|
|
11134
|
+
Quarter = "QUARTER",
|
|
11135
|
+
Unknown = "UNKNOWN"
|
|
11136
|
+
}
|
|
10960
11137
|
export declare type DevOpsProvider = {
|
|
10961
11138
|
__typename?: 'DevOpsProvider';
|
|
10962
11139
|
links?: Maybe<DevOpsProviderLinks>;
|
|
@@ -12327,6 +12504,38 @@ export declare type FilterQuery = {
|
|
|
12327
12504
|
errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
12328
12505
|
sanitisedJql: Scalars['String']['output'];
|
|
12329
12506
|
};
|
|
12507
|
+
export declare enum FooterCommentStatusV2 {
|
|
12508
|
+
Archived = "archived",
|
|
12509
|
+
Current = "current",
|
|
12510
|
+
Deleted = "deleted",
|
|
12511
|
+
Draft = "draft",
|
|
12512
|
+
Historical = "historical",
|
|
12513
|
+
Trashed = "trashed"
|
|
12514
|
+
}
|
|
12515
|
+
export declare type FooterCommentV2 = Node & {
|
|
12516
|
+
__typename?: 'FooterCommentV2';
|
|
12517
|
+
blogPostId?: Maybe<Scalars['ID']['output']>;
|
|
12518
|
+
body: BodyV2;
|
|
12519
|
+
id: Scalars['ID']['output'];
|
|
12520
|
+
internalProperties?: Maybe<CommentInternalProperties>;
|
|
12521
|
+
links?: Maybe<CommentLinksV2>;
|
|
12522
|
+
pageId?: Maybe<Scalars['ID']['output']>;
|
|
12523
|
+
parentCommentId?: Maybe<Scalars['ID']['output']>;
|
|
12524
|
+
status: FooterCommentStatusV2;
|
|
12525
|
+
title: Scalars['String']['output'];
|
|
12526
|
+
version: VersionV2;
|
|
12527
|
+
};
|
|
12528
|
+
export declare type FooterCommentV2Connection = {
|
|
12529
|
+
__typename?: 'FooterCommentV2Connection';
|
|
12530
|
+
edges?: Maybe<Array<Maybe<FooterCommentV2Edge>>>;
|
|
12531
|
+
nodes?: Maybe<Array<Maybe<FooterCommentV2>>>;
|
|
12532
|
+
pageInfo: PageInfoV2;
|
|
12533
|
+
};
|
|
12534
|
+
export declare type FooterCommentV2Edge = {
|
|
12535
|
+
__typename?: 'FooterCommentV2Edge';
|
|
12536
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
12537
|
+
node: FooterCommentV2;
|
|
12538
|
+
};
|
|
12330
12539
|
export declare type ForgeAiDemo = {
|
|
12331
12540
|
__typename?: 'ForgeAiDemo';
|
|
12332
12541
|
emoji?: Maybe<Scalars['String']['output']>;
|
|
@@ -13001,6 +13210,20 @@ export declare enum FormStatus {
|
|
|
13001
13210
|
Saved = "SAVED",
|
|
13002
13211
|
Submitted = "SUBMITTED"
|
|
13003
13212
|
}
|
|
13213
|
+
export declare type FormattedBodyV2 = {
|
|
13214
|
+
__typename?: 'FormattedBodyV2';
|
|
13215
|
+
representation: BodyFormatV2;
|
|
13216
|
+
value: Scalars['String']['output'];
|
|
13217
|
+
};
|
|
13218
|
+
export declare type FormattedBodyV2Input = {
|
|
13219
|
+
representation: BodyFormatV2;
|
|
13220
|
+
value: Scalars['String']['input'];
|
|
13221
|
+
};
|
|
13222
|
+
export declare type FormattedPageV2 = {
|
|
13223
|
+
__typename?: 'FormattedPageV2';
|
|
13224
|
+
representation: SpaceDescriptionEnum;
|
|
13225
|
+
value: Scalars['String']['output'];
|
|
13226
|
+
};
|
|
13004
13227
|
export declare type FortifiedMetricsIntervalInput = {
|
|
13005
13228
|
end: Scalars['DateTime']['input'];
|
|
13006
13229
|
start: Scalars['DateTime']['input'];
|
|
@@ -16698,6 +16921,10 @@ export declare type GraphStore = {
|
|
|
16698
16921
|
contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
16699
16922
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
16700
16923
|
fetchAllRelationships: GraphStoreAllRelationshipsConnection;
|
|
16924
|
+
focusAreaAssociatedToProject?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection>;
|
|
16925
|
+
focusAreaAssociatedToProjectBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
|
|
16926
|
+
focusAreaAssociatedToProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseConnection>;
|
|
16927
|
+
focusAreaAssociatedToProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
|
|
16701
16928
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
16702
16929
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
16703
16930
|
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
|
|
@@ -17162,6 +17389,26 @@ export declare type GraphStoreFetchAllRelationshipsArgs = {
|
|
|
17162
17389
|
id: Scalars['ID']['input'];
|
|
17163
17390
|
ignoredRelationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17164
17391
|
};
|
|
17392
|
+
export declare type GraphStoreFocusAreaAssociatedToProjectArgs = {
|
|
17393
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17394
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17395
|
+
id: Scalars['ID']['input'];
|
|
17396
|
+
};
|
|
17397
|
+
export declare type GraphStoreFocusAreaAssociatedToProjectBatchArgs = {
|
|
17398
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17399
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17400
|
+
ids: Array<Scalars['ID']['input']>;
|
|
17401
|
+
};
|
|
17402
|
+
export declare type GraphStoreFocusAreaAssociatedToProjectInverseArgs = {
|
|
17403
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17404
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17405
|
+
id: Scalars['ID']['input'];
|
|
17406
|
+
};
|
|
17407
|
+
export declare type GraphStoreFocusAreaAssociatedToProjectInverseBatchArgs = {
|
|
17408
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17409
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17410
|
+
ids: Array<Scalars['ID']['input']>;
|
|
17411
|
+
};
|
|
17165
17412
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
17166
17413
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17167
17414
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18891,6 +19138,47 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = Node & {
|
|
|
18891
19138
|
id: Scalars['ID']['output'];
|
|
18892
19139
|
};
|
|
18893
19140
|
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
|
|
19141
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
19142
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
19143
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
19144
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectNode>>;
|
|
19145
|
+
pageInfo: PageInfo;
|
|
19146
|
+
};
|
|
19147
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectEdge = {
|
|
19148
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectEdge';
|
|
19149
|
+
node: GraphStoreBatchFocusAreaAssociatedToProjectInnerConnection;
|
|
19150
|
+
};
|
|
19151
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectEndNode = Node & {
|
|
19152
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectEndNode';
|
|
19153
|
+
data?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEndUnion>;
|
|
19154
|
+
id: Scalars['ID']['output'];
|
|
19155
|
+
};
|
|
19156
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectEndUnion = DevOpsProjectDetails;
|
|
19157
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectInnerConnection = {
|
|
19158
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectInnerConnection';
|
|
19159
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectInnerEdge>>;
|
|
19160
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectNode>>;
|
|
19161
|
+
requestedId: Scalars['ID']['output'];
|
|
19162
|
+
};
|
|
19163
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectInnerEdge = {
|
|
19164
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectInnerEdge';
|
|
19165
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
19166
|
+
node: GraphStoreBatchFocusAreaAssociatedToProjectNode;
|
|
19167
|
+
};
|
|
19168
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectNode = Node & {
|
|
19169
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectNode';
|
|
19170
|
+
createdAt: Scalars['DateTime']['output'];
|
|
19171
|
+
from: GraphStoreBatchFocusAreaAssociatedToProjectStartNode;
|
|
19172
|
+
id: Scalars['ID']['output'];
|
|
19173
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
19174
|
+
to: GraphStoreBatchFocusAreaAssociatedToProjectEndNode;
|
|
19175
|
+
};
|
|
19176
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartNode = Node & {
|
|
19177
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectStartNode';
|
|
19178
|
+
data?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectStartUnion>;
|
|
19179
|
+
id: Scalars['ID']['output'];
|
|
19180
|
+
};
|
|
19181
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartUnion = MercuryFocusArea;
|
|
18894
19182
|
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
|
|
18895
19183
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection';
|
|
18896
19184
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -24069,6 +24357,34 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
24069
24357
|
};
|
|
24070
24358
|
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluencePage | JiraIssue;
|
|
24071
24359
|
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = ConfluencePage | JiraIssue;
|
|
24360
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
24361
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
|
|
24362
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge>>>;
|
|
24363
|
+
pageInfo: PageInfo;
|
|
24364
|
+
};
|
|
24365
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge = {
|
|
24366
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge';
|
|
24367
|
+
createdAt: Scalars['DateTime']['output'];
|
|
24368
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
24369
|
+
id: Scalars['ID']['output'];
|
|
24370
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
24371
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectUnion>;
|
|
24372
|
+
};
|
|
24373
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseConnection = HasPageInfo & {
|
|
24374
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseConnection';
|
|
24375
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge>>>;
|
|
24376
|
+
pageInfo: PageInfo;
|
|
24377
|
+
};
|
|
24378
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge = {
|
|
24379
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge';
|
|
24380
|
+
createdAt: Scalars['DateTime']['output'];
|
|
24381
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
24382
|
+
id: Scalars['ID']['output'];
|
|
24383
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
24384
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseUnion>;
|
|
24385
|
+
};
|
|
24386
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseUnion = MercuryFocusArea;
|
|
24387
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectUnion = DevOpsProjectDetails;
|
|
24072
24388
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
24073
24389
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
24074
24390
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|
|
@@ -26719,6 +27035,14 @@ export declare type HasPageInfo = {
|
|
|
26719
27035
|
export declare type HasTotal = {
|
|
26720
27036
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
26721
27037
|
};
|
|
27038
|
+
export declare type HeaderLookAndFeelV2 = {
|
|
27039
|
+
__typename?: 'HeaderLookAndFeelV2';
|
|
27040
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
27041
|
+
button?: Maybe<ButtonLookAndFeel>;
|
|
27042
|
+
primaryNavigation?: Maybe<NavigationLookAndFeelV2>;
|
|
27043
|
+
search?: Maybe<SearchFieldLookAndFeel>;
|
|
27044
|
+
secondaryNavigation?: Maybe<NavigationLookAndFeelV2>;
|
|
27045
|
+
};
|
|
26722
27046
|
export declare type HelpCenter = Node & {
|
|
26723
27047
|
__typename?: 'HelpCenter';
|
|
26724
27048
|
announcements?: Maybe<HelpCenterAnnouncements>;
|
|
@@ -28379,6 +28703,51 @@ export declare type InlineColumnEditConfig = {
|
|
|
28379
28703
|
__typename?: 'InlineColumnEditConfig';
|
|
28380
28704
|
enabled: Scalars['Boolean']['output'];
|
|
28381
28705
|
};
|
|
28706
|
+
export declare type InlineCommentPropertiesV2 = {
|
|
28707
|
+
__typename?: 'InlineCommentPropertiesV2';
|
|
28708
|
+
inlineMarkerRef: Scalars['String']['output'];
|
|
28709
|
+
inlineOriginalSelection: Scalars['String']['output'];
|
|
28710
|
+
};
|
|
28711
|
+
export declare enum InlineCommentResolutionStatusV2 {
|
|
28712
|
+
Dangling = "dangling",
|
|
28713
|
+
Open = "open",
|
|
28714
|
+
Reopened = "reopened",
|
|
28715
|
+
Resolved = "resolved"
|
|
28716
|
+
}
|
|
28717
|
+
export declare enum InlineCommentStatusV2 {
|
|
28718
|
+
Archived = "archived",
|
|
28719
|
+
Current = "current",
|
|
28720
|
+
Deleted = "deleted",
|
|
28721
|
+
Draft = "draft",
|
|
28722
|
+
Historical = "historical",
|
|
28723
|
+
Trashed = "trashed"
|
|
28724
|
+
}
|
|
28725
|
+
export declare type InlineCommentV2 = Node & {
|
|
28726
|
+
__typename?: 'InlineCommentV2';
|
|
28727
|
+
body: BodyV2;
|
|
28728
|
+
id: Scalars['ID']['output'];
|
|
28729
|
+
internalProperties?: Maybe<CommentInternalProperties>;
|
|
28730
|
+
links?: Maybe<CommentLinksV2>;
|
|
28731
|
+
parentCommentId?: Maybe<Scalars['ID']['output']>;
|
|
28732
|
+
properties?: Maybe<InlineCommentPropertiesV2>;
|
|
28733
|
+
resolutionLastModifiedAt?: Maybe<Scalars['String']['output']>;
|
|
28734
|
+
resolutionLastModifierId?: Maybe<Scalars['String']['output']>;
|
|
28735
|
+
resolutionStatus?: Maybe<InlineCommentResolutionStatusV2>;
|
|
28736
|
+
status: InlineCommentStatusV2;
|
|
28737
|
+
title: Scalars['String']['output'];
|
|
28738
|
+
version: VersionV2;
|
|
28739
|
+
};
|
|
28740
|
+
export declare type InlineCommentV2Connection = {
|
|
28741
|
+
__typename?: 'InlineCommentV2Connection';
|
|
28742
|
+
edges?: Maybe<Array<Maybe<InlineCommentV2Edge>>>;
|
|
28743
|
+
nodes?: Maybe<Array<Maybe<InlineCommentV2>>>;
|
|
28744
|
+
pageInfo: PageInfoV2;
|
|
28745
|
+
};
|
|
28746
|
+
export declare type InlineCommentV2Edge = {
|
|
28747
|
+
__typename?: 'InlineCommentV2Edge';
|
|
28748
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
28749
|
+
node: InlineCommentV2;
|
|
28750
|
+
};
|
|
28382
28751
|
export declare type Insights = {
|
|
28383
28752
|
__typename?: 'Insights';
|
|
28384
28753
|
githubOnboardingDetails: InsightsGithubOnboardingDetails;
|
|
@@ -28730,6 +29099,11 @@ export declare type InstallationsListFilterByAppInstallationsWithCompulsoryConte
|
|
|
28730
29099
|
export declare type InstallationsListFilterByApps = {
|
|
28731
29100
|
ids: Array<Scalars['ID']['input']>;
|
|
28732
29101
|
};
|
|
29102
|
+
export declare type InternalProperties = {
|
|
29103
|
+
__typename?: 'InternalProperties';
|
|
29104
|
+
confRev?: Maybe<Scalars['String']['output']>;
|
|
29105
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
29106
|
+
};
|
|
28733
29107
|
export declare type IntervalFilter = {
|
|
28734
29108
|
end: Scalars['String']['input'];
|
|
28735
29109
|
start: Scalars['String']['input'];
|
|
@@ -39358,6 +39732,24 @@ export declare type JiraServiceManagementSelectPreviewField = JiraServiceManagem
|
|
|
39358
39732
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
39359
39733
|
type?: Maybe<Scalars['String']['output']>;
|
|
39360
39734
|
};
|
|
39735
|
+
export declare type JiraServiceManagementSentiment = {
|
|
39736
|
+
__typename?: 'JiraServiceManagementSentiment';
|
|
39737
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
39738
|
+
sentimentId?: Maybe<Scalars['String']['output']>;
|
|
39739
|
+
};
|
|
39740
|
+
export declare type JiraServiceManagementSentimentField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39741
|
+
__typename?: 'JiraServiceManagementSentimentField';
|
|
39742
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
39743
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
39744
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
39745
|
+
fieldId: Scalars['String']['output'];
|
|
39746
|
+
id: Scalars['ID']['output'];
|
|
39747
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39748
|
+
name: Scalars['String']['output'];
|
|
39749
|
+
sentiment?: Maybe<JiraServiceManagementSentiment>;
|
|
39750
|
+
type: Scalars['String']['output'];
|
|
39751
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
39752
|
+
};
|
|
39361
39753
|
export declare type JiraServiceManagementTeamResponder = {
|
|
39362
39754
|
__typename?: 'JiraServiceManagementTeamResponder';
|
|
39363
39755
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
@@ -42473,6 +42865,12 @@ export declare type JswBoardLocationModel = {
|
|
|
42473
42865
|
projectTypeKey?: Maybe<Scalars['String']['output']>;
|
|
42474
42866
|
userLocationId?: Maybe<Scalars['ID']['output']>;
|
|
42475
42867
|
};
|
|
42868
|
+
export declare type JswBoardScopeRoadmapConfig = {
|
|
42869
|
+
__typename?: 'JswBoardScopeRoadmapConfig';
|
|
42870
|
+
isChildIssuePlanningEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
42871
|
+
isRoadmapEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
42872
|
+
prefersChildIssueDatePlanning?: Maybe<Scalars['Boolean']['output']>;
|
|
42873
|
+
};
|
|
42476
42874
|
export declare type JswCardColor = Node & {
|
|
42477
42875
|
__typename?: 'JswCardColor';
|
|
42478
42876
|
canEdit: Scalars['Boolean']['output'];
|
|
@@ -42994,6 +43392,21 @@ export declare type LabelUsage = {
|
|
|
42994
43392
|
count: Scalars['Int']['output'];
|
|
42995
43393
|
label: Scalars['String']['output'];
|
|
42996
43394
|
};
|
|
43395
|
+
export declare type LayerScreenLookAndFeel = {
|
|
43396
|
+
__typename?: 'LayerScreenLookAndFeel';
|
|
43397
|
+
background?: Maybe<Scalars['String']['output']>;
|
|
43398
|
+
backgroundAttachment?: Maybe<Scalars['String']['output']>;
|
|
43399
|
+
backgroundBlendMode?: Maybe<Scalars['String']['output']>;
|
|
43400
|
+
backgroundClip?: Maybe<Scalars['String']['output']>;
|
|
43401
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
43402
|
+
backgroundImage?: Maybe<Scalars['String']['output']>;
|
|
43403
|
+
backgroundOrigin?: Maybe<Scalars['String']['output']>;
|
|
43404
|
+
backgroundPosition?: Maybe<Scalars['String']['output']>;
|
|
43405
|
+
backgroundRepeat?: Maybe<Scalars['String']['output']>;
|
|
43406
|
+
backgroundSize?: Maybe<Scalars['String']['output']>;
|
|
43407
|
+
height?: Maybe<Scalars['String']['output']>;
|
|
43408
|
+
width?: Maybe<Scalars['String']['output']>;
|
|
43409
|
+
};
|
|
42997
43410
|
export declare enum LicenseOverrideState {
|
|
42998
43411
|
Active = "ACTIVE",
|
|
42999
43412
|
Inactive = "INACTIVE",
|
|
@@ -43036,6 +43449,31 @@ export declare type LogQueryInput = {
|
|
|
43036
43449
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
43037
43450
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
43038
43451
|
};
|
|
43452
|
+
export declare type LookAndFeelV2 = {
|
|
43453
|
+
__typename?: 'LookAndFeelV2';
|
|
43454
|
+
bordersAndDividers?: Maybe<BordersAndDividersLookAndFeel>;
|
|
43455
|
+
content?: Maybe<ContentLookAndFeel>;
|
|
43456
|
+
header?: Maybe<HeaderLookAndFeelV2>;
|
|
43457
|
+
horizontalHeader?: Maybe<HeaderLookAndFeelV2>;
|
|
43458
|
+
menus?: Maybe<MenusLookAndFeelV2>;
|
|
43459
|
+
};
|
|
43460
|
+
export declare type Macro = {
|
|
43461
|
+
__typename?: 'Macro';
|
|
43462
|
+
adf: Scalars['String']['output'];
|
|
43463
|
+
contentId: Scalars['ID']['output'];
|
|
43464
|
+
macroId: Scalars['ID']['output'];
|
|
43465
|
+
};
|
|
43466
|
+
export declare type MacroConnection = {
|
|
43467
|
+
__typename?: 'MacroConnection';
|
|
43468
|
+
edges?: Maybe<Array<Maybe<MacroEdge>>>;
|
|
43469
|
+
nodes?: Maybe<Array<Maybe<Macro>>>;
|
|
43470
|
+
pageInfo: PageInfoV2;
|
|
43471
|
+
};
|
|
43472
|
+
export declare type MacroEdge = {
|
|
43473
|
+
__typename?: 'MacroEdge';
|
|
43474
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43475
|
+
node: Macro;
|
|
43476
|
+
};
|
|
43039
43477
|
export declare type MarketplaceApp = {
|
|
43040
43478
|
__typename?: 'MarketplaceApp';
|
|
43041
43479
|
appId: Scalars['ID']['output'];
|
|
@@ -43887,6 +44325,15 @@ export declare enum MembershipState {
|
|
|
43887
44325
|
Invited = "INVITED",
|
|
43888
44326
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
43889
44327
|
}
|
|
44328
|
+
export declare type MenuHoverOrFocus = {
|
|
44329
|
+
__typename?: 'MenuHoverOrFocus';
|
|
44330
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
44331
|
+
};
|
|
44332
|
+
export declare type MenusLookAndFeelV2 = {
|
|
44333
|
+
__typename?: 'MenusLookAndFeelV2';
|
|
44334
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
44335
|
+
hoverOrFocus?: Maybe<MenuHoverOrFocus>;
|
|
44336
|
+
};
|
|
43890
44337
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
43891
44338
|
cloudId: Scalars['ID']['input'];
|
|
43892
44339
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -44828,6 +45275,7 @@ export declare type Mutation = {
|
|
|
44828
45275
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
44829
45276
|
createJiraProjectAndOpsgenieTeamRelationship?: Maybe<CreateJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
44830
45277
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
45278
|
+
createPageV2?: Maybe<CreatePageV2Payload>;
|
|
44831
45279
|
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
44832
45280
|
createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
|
|
44833
45281
|
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
@@ -44857,6 +45305,7 @@ export declare type Mutation = {
|
|
|
44857
45305
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
44858
45306
|
deleteJiraProjectAndOpsgenieTeamRelationship?: Maybe<DeleteJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
44859
45307
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
45308
|
+
deletePageV2?: Maybe<Scalars['Boolean']['output']>;
|
|
44860
45309
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
44861
45310
|
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
44862
45311
|
deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
|
|
@@ -44944,6 +45393,7 @@ export declare type Mutation = {
|
|
|
44944
45393
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
44945
45394
|
updateJiraProjectAndOpsgenieTeamRelationship?: Maybe<UpdateJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
44946
45395
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
45396
|
+
updatePageV2?: Maybe<UpdatePageV2Payload>;
|
|
44947
45397
|
updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
|
|
44948
45398
|
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
44949
45399
|
updatePolarisIdeaTemplate?: Maybe<UpdatePolarisIdeaTemplatePayload>;
|
|
@@ -45036,6 +45486,9 @@ export declare type MutationCreateJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
|
45036
45486
|
export declare type MutationCreateJiraProjectAndRepositoryRelationshipArgs = {
|
|
45037
45487
|
input: CreateJiraProjectAndRepositoryRelationshipInput;
|
|
45038
45488
|
};
|
|
45489
|
+
export declare type MutationCreatePageV2Args = {
|
|
45490
|
+
input: CreatePageV2Input;
|
|
45491
|
+
};
|
|
45039
45492
|
export declare type MutationCreatePolarisCommentArgs = {
|
|
45040
45493
|
input: CreatePolarisCommentInput;
|
|
45041
45494
|
};
|
|
@@ -45139,6 +45592,9 @@ export declare type MutationDeleteJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
|
45139
45592
|
export declare type MutationDeleteJiraProjectAndRepositoryRelationshipArgs = {
|
|
45140
45593
|
input: DeleteJiraProjectAndRepositoryRelationshipInput;
|
|
45141
45594
|
};
|
|
45595
|
+
export declare type MutationDeletePageV2Args = {
|
|
45596
|
+
id: Scalars['ID']['input'];
|
|
45597
|
+
};
|
|
45142
45598
|
export declare type MutationDeletePolarisIdeaTemplateArgs = {
|
|
45143
45599
|
input: DeletePolarisIdeaTemplateInput;
|
|
45144
45600
|
};
|
|
@@ -45332,6 +45788,9 @@ export declare type MutationUpdateJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
|
45332
45788
|
export declare type MutationUpdateJiraProjectAndRepositoryRelationshipArgs = {
|
|
45333
45789
|
input: UpdateJiraProjectAndRepositoryRelationshipInput;
|
|
45334
45790
|
};
|
|
45791
|
+
export declare type MutationUpdatePageV2Args = {
|
|
45792
|
+
input: UpdatePageV2Input;
|
|
45793
|
+
};
|
|
45335
45794
|
export declare type MutationUpdatePolarisCommentArgs = {
|
|
45336
45795
|
input: UpdatePolarisCommentInput;
|
|
45337
45796
|
};
|
|
@@ -45496,6 +45955,17 @@ export declare type NadelHydrationResultFieldPredicate = {
|
|
|
45496
45955
|
export declare enum NadelHydrationTemplate {
|
|
45497
45956
|
NadelPlaceholder = "NADEL_PLACEHOLDER"
|
|
45498
45957
|
}
|
|
45958
|
+
export declare type NavigationHoverOrFocus = {
|
|
45959
|
+
__typename?: 'NavigationHoverOrFocus';
|
|
45960
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
45961
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
45962
|
+
};
|
|
45963
|
+
export declare type NavigationLookAndFeelV2 = {
|
|
45964
|
+
__typename?: 'NavigationLookAndFeelV2';
|
|
45965
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
45966
|
+
highlightColor?: Maybe<Scalars['String']['output']>;
|
|
45967
|
+
hoverOrFocus?: Maybe<NavigationHoverOrFocus>;
|
|
45968
|
+
};
|
|
45499
45969
|
export declare type NewCard = {
|
|
45500
45970
|
assigneeId?: InputMaybe<Scalars['ID']['input']>;
|
|
45501
45971
|
fixVersions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -45631,6 +46101,15 @@ export declare type OAuthClientsScopeDetails = {
|
|
|
45631
46101
|
description?: Maybe<Scalars['String']['output']>;
|
|
45632
46102
|
key: Scalars['String']['output'];
|
|
45633
46103
|
};
|
|
46104
|
+
export declare type OperationV2 = {
|
|
46105
|
+
__typename?: 'OperationV2';
|
|
46106
|
+
operation: Scalars['String']['output'];
|
|
46107
|
+
targetType: Scalars['String']['output'];
|
|
46108
|
+
};
|
|
46109
|
+
export declare type OperationsV2 = {
|
|
46110
|
+
__typename?: 'OperationsV2';
|
|
46111
|
+
results?: Maybe<Array<Maybe<OperationV2>>>;
|
|
46112
|
+
};
|
|
45634
46113
|
export declare type OpsgenieAlertCountByPriority = {
|
|
45635
46114
|
__typename?: 'OpsgenieAlertCountByPriority';
|
|
45636
46115
|
countPerDay?: Maybe<Array<Maybe<OpsgenieAlertCountPerDay>>>;
|
|
@@ -45782,6 +46261,10 @@ export declare type OpsgenieTeamMemberEdge = {
|
|
|
45782
46261
|
cursor: Scalars['String']['output'];
|
|
45783
46262
|
node?: Maybe<OpsgenieTeamMember>;
|
|
45784
46263
|
};
|
|
46264
|
+
export declare type Organization = {
|
|
46265
|
+
__typename?: 'Organization';
|
|
46266
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
46267
|
+
};
|
|
45785
46268
|
export declare type OriginalEstimate = {
|
|
45786
46269
|
__typename?: 'OriginalEstimate';
|
|
45787
46270
|
value?: Maybe<Scalars['Float']['output']>;
|
|
@@ -45952,6 +46435,10 @@ export declare type PeapUpdateProgramInput = {
|
|
|
45952
46435
|
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
45953
46436
|
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
45954
46437
|
};
|
|
46438
|
+
export declare enum PageCreateStatusV2 {
|
|
46439
|
+
Current = "current",
|
|
46440
|
+
Draft = "draft"
|
|
46441
|
+
}
|
|
45955
46442
|
export declare type PageInfo = {
|
|
45956
46443
|
__typename?: 'PageInfo';
|
|
45957
46444
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -45959,6 +46446,68 @@ export declare type PageInfo = {
|
|
|
45959
46446
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
45960
46447
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
45961
46448
|
};
|
|
46449
|
+
export declare type PageInfoV2 = {
|
|
46450
|
+
__typename?: 'PageInfoV2';
|
|
46451
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
46452
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
46453
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
46454
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
46455
|
+
};
|
|
46456
|
+
export declare enum PageStatusV2 {
|
|
46457
|
+
Archived = "archived",
|
|
46458
|
+
Current = "current",
|
|
46459
|
+
Deleted = "deleted",
|
|
46460
|
+
Draft = "draft",
|
|
46461
|
+
Historical = "historical",
|
|
46462
|
+
Trashed = "trashed"
|
|
46463
|
+
}
|
|
46464
|
+
export declare enum PageUpdateStatusV2 {
|
|
46465
|
+
Archived = "archived",
|
|
46466
|
+
Current = "current",
|
|
46467
|
+
Deleted = "deleted",
|
|
46468
|
+
Draft = "draft"
|
|
46469
|
+
}
|
|
46470
|
+
export declare type PageV2 = Node & {
|
|
46471
|
+
__typename?: 'PageV2';
|
|
46472
|
+
authorId?: Maybe<Scalars['String']['output']>;
|
|
46473
|
+
body?: Maybe<BodyV2>;
|
|
46474
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
46475
|
+
id: Scalars['ID']['output'];
|
|
46476
|
+
internalProperties?: Maybe<InternalProperties>;
|
|
46477
|
+
isFavoritedByCurrentUser?: Maybe<Scalars['Boolean']['output']>;
|
|
46478
|
+
lastOwnerId?: Maybe<Scalars['String']['output']>;
|
|
46479
|
+
operations?: Maybe<OperationsV2>;
|
|
46480
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
46481
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
46482
|
+
parentPage?: Maybe<PageV2>;
|
|
46483
|
+
parentType?: Maybe<ParentContent>;
|
|
46484
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
46485
|
+
space?: Maybe<SpaceV2>;
|
|
46486
|
+
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
46487
|
+
spaceLookAndFeel?: Maybe<LookAndFeelV2>;
|
|
46488
|
+
spaceSettings?: Maybe<SpaceSettingsV2>;
|
|
46489
|
+
spaceTheme?: Maybe<ThemeV2>;
|
|
46490
|
+
status: PageStatusV2;
|
|
46491
|
+
title: Scalars['String']['output'];
|
|
46492
|
+
version?: Maybe<VersionV2>;
|
|
46493
|
+
};
|
|
46494
|
+
export declare type PageV2BodyArgs = {
|
|
46495
|
+
format?: InputMaybe<BodyFormatV2>;
|
|
46496
|
+
};
|
|
46497
|
+
export declare type PageV2Connection = {
|
|
46498
|
+
__typename?: 'PageV2Connection';
|
|
46499
|
+
edges?: Maybe<Array<Maybe<PageV2Edge>>>;
|
|
46500
|
+
nodes?: Maybe<Array<Maybe<PageV2>>>;
|
|
46501
|
+
pageInfo: PageInfoV2;
|
|
46502
|
+
};
|
|
46503
|
+
export declare type PageV2Edge = {
|
|
46504
|
+
__typename?: 'PageV2Edge';
|
|
46505
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46506
|
+
node: PageV2;
|
|
46507
|
+
};
|
|
46508
|
+
export declare enum ParentContent {
|
|
46509
|
+
Page = "page"
|
|
46510
|
+
}
|
|
45962
46511
|
export declare type Partner = {
|
|
45963
46512
|
__typename?: 'Partner';
|
|
45964
46513
|
invoiceJson?: Maybe<PartnerInvoiceJson>;
|
|
@@ -47565,8 +48114,12 @@ export declare type Query = {
|
|
|
47565
48114
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
47566
48115
|
apps?: Maybe<AppConnection>;
|
|
47567
48116
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
48117
|
+
attachmentV2?: Maybe<AttachmentV2>;
|
|
47568
48118
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
47569
48119
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
48120
|
+
blogPostV2?: Maybe<BlogPostV2>;
|
|
48121
|
+
blogPostsV2?: Maybe<Array<Maybe<BlogPostV2>>>;
|
|
48122
|
+
blogPostsV2ForSpace?: Maybe<BlogPostV2Connection>;
|
|
47570
48123
|
boardScope?: Maybe<BoardScope>;
|
|
47571
48124
|
canSplitIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
47572
48125
|
ccp?: Maybe<CcpQueryApi>;
|
|
@@ -47575,6 +48128,10 @@ export declare type Query = {
|
|
|
47575
48128
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
47576
48129
|
connectedData?: Maybe<ConnectedDataQuery>;
|
|
47577
48130
|
contentFacet: ContentPlatformContentFacetConnection;
|
|
48131
|
+
contentPropertiesV2ForAttachment?: Maybe<Array<Maybe<ContentPropertyV2>>>;
|
|
48132
|
+
contentPropertiesV2ForBlogPost?: Maybe<Array<Maybe<ContentPropertyV2>>>;
|
|
48133
|
+
contentPropertiesV2ForComment?: Maybe<Array<Maybe<ContentPropertyV2>>>;
|
|
48134
|
+
contentPropertiesV2ForPage?: Maybe<Array<Maybe<ContentPropertyV2>>>;
|
|
47578
48135
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
47579
48136
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
47580
48137
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
@@ -47608,6 +48165,10 @@ export declare type Query = {
|
|
|
47608
48165
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
47609
48166
|
extensionsEcho?: Maybe<Scalars['String']['output']>;
|
|
47610
48167
|
featureRelease?: Maybe<FeatureRelease>;
|
|
48168
|
+
footerCommentV2?: Maybe<FooterCommentV2>;
|
|
48169
|
+
footerCommentsV2ForBlogPost?: Maybe<FooterCommentV2Connection>;
|
|
48170
|
+
footerCommentsV2ForPage?: Maybe<FooterCommentV2Connection>;
|
|
48171
|
+
footerCommentsV2ForParentFooterComment?: Maybe<FooterCommentV2Connection>;
|
|
47611
48172
|
fullHubArticle?: Maybe<ContentPlatformFullHubArticle>;
|
|
47612
48173
|
fullHubArticles: ContentPlatformHubArticleSearchConnection;
|
|
47613
48174
|
fullTutorial?: Maybe<ContentPlatformFullTutorial>;
|
|
@@ -47619,6 +48180,10 @@ export declare type Query = {
|
|
|
47619
48180
|
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
47620
48181
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
47621
48182
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
48183
|
+
inlineCommentV2?: Maybe<InlineCommentV2>;
|
|
48184
|
+
inlineCommentsV2ForBlogPost?: Maybe<InlineCommentV2Connection>;
|
|
48185
|
+
inlineCommentsV2ForPage?: Maybe<InlineCommentV2Connection>;
|
|
48186
|
+
inlineCommentsV2ForParentInlineComment?: Maybe<InlineCommentV2Connection>;
|
|
47622
48187
|
insights?: Maybe<Insights>;
|
|
47623
48188
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
47624
48189
|
ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
|
|
@@ -47639,6 +48204,7 @@ export declare type Query = {
|
|
|
47639
48204
|
jsw?: Maybe<JswQuery>;
|
|
47640
48205
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
47641
48206
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
48207
|
+
macros?: Maybe<MacroConnection>;
|
|
47642
48208
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
47643
48209
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
47644
48210
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
@@ -47659,6 +48225,10 @@ export declare type Query = {
|
|
|
47659
48225
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
47660
48226
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
47661
48227
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
48228
|
+
organization?: Maybe<Organization>;
|
|
48229
|
+
pageV2?: Maybe<PageV2>;
|
|
48230
|
+
pagesV2?: Maybe<Array<Maybe<PageV2>>>;
|
|
48231
|
+
pagesV2ForSpace?: Maybe<PageV2Connection>;
|
|
47662
48232
|
partner?: Maybe<Partner>;
|
|
47663
48233
|
partnerEarlyAccess?: Maybe<PeapQueryApi>;
|
|
47664
48234
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
@@ -47681,6 +48251,7 @@ export declare type Query = {
|
|
|
47681
48251
|
productListings: Array<ProductListingResult>;
|
|
47682
48252
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
47683
48253
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
48254
|
+
renderedMacro?: Maybe<RenderedMacro>;
|
|
47684
48255
|
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
47685
48256
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
47686
48257
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
@@ -47690,6 +48261,13 @@ export declare type Query = {
|
|
|
47690
48261
|
signup?: Maybe<SignupQueryApi>;
|
|
47691
48262
|
smarts?: Maybe<SmartsQueryApi>;
|
|
47692
48263
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
48264
|
+
spaceLookAndFeelV2?: Maybe<LookAndFeelV2>;
|
|
48265
|
+
spacePropertiesV2?: Maybe<SpacePropertyV2Connection>;
|
|
48266
|
+
spaceSettingsV2?: Maybe<SpaceSettingsV2>;
|
|
48267
|
+
spaceThemeV2?: Maybe<ThemeV2>;
|
|
48268
|
+
spaceV2?: Maybe<SpaceV2>;
|
|
48269
|
+
spaceV2ForPage?: Maybe<SpacePageV2>;
|
|
48270
|
+
spacesV2?: Maybe<Array<Maybe<SpaceV2>>>;
|
|
47693
48271
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
47694
48272
|
suggestions?: Maybe<AutoSuggestionApi>;
|
|
47695
48273
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
@@ -47812,12 +48390,28 @@ export declare type QueryAppsArgs = {
|
|
|
47812
48390
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
47813
48391
|
cloudId: Scalars['ID']['input'];
|
|
47814
48392
|
};
|
|
48393
|
+
export declare type QueryAttachmentV2Args = {
|
|
48394
|
+
id: Scalars['ID']['input'];
|
|
48395
|
+
};
|
|
47815
48396
|
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
47816
48397
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47817
48398
|
cloudId: Scalars['ID']['input'];
|
|
47818
48399
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47819
48400
|
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
47820
48401
|
};
|
|
48402
|
+
export declare type QueryBlogPostV2Args = {
|
|
48403
|
+
id: Scalars['ID']['input'];
|
|
48404
|
+
status?: InputMaybe<Array<BlogStatusV2>>;
|
|
48405
|
+
};
|
|
48406
|
+
export declare type QueryBlogPostsV2Args = {
|
|
48407
|
+
ids: Array<Scalars['ID']['input']>;
|
|
48408
|
+
status?: InputMaybe<Array<BulkBlogPostStatusV2>>;
|
|
48409
|
+
};
|
|
48410
|
+
export declare type QueryBlogPostsV2ForSpaceArgs = {
|
|
48411
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48413
|
+
id: Scalars['ID']['input'];
|
|
48414
|
+
};
|
|
47821
48415
|
export declare type QueryBoardScopeArgs = {
|
|
47822
48416
|
boardId: Scalars['ID']['input'];
|
|
47823
48417
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -47836,6 +48430,22 @@ export declare type QueryContentFacetArgs = {
|
|
|
47836
48430
|
forFields: Array<Scalars['String']['input']>;
|
|
47837
48431
|
withLocales?: Array<Scalars['String']['input']>;
|
|
47838
48432
|
};
|
|
48433
|
+
export declare type QueryContentPropertiesV2ForAttachmentArgs = {
|
|
48434
|
+
attachmentId: Scalars['ID']['input'];
|
|
48435
|
+
keys: Array<Scalars['String']['input']>;
|
|
48436
|
+
};
|
|
48437
|
+
export declare type QueryContentPropertiesV2ForBlogPostArgs = {
|
|
48438
|
+
blogPostId: Scalars['ID']['input'];
|
|
48439
|
+
keys: Array<Scalars['String']['input']>;
|
|
48440
|
+
};
|
|
48441
|
+
export declare type QueryContentPropertiesV2ForCommentArgs = {
|
|
48442
|
+
commentId: Scalars['ID']['input'];
|
|
48443
|
+
keys: Array<Scalars['String']['input']>;
|
|
48444
|
+
};
|
|
48445
|
+
export declare type QueryContentPropertiesV2ForPageArgs = {
|
|
48446
|
+
keys: Array<Scalars['String']['input']>;
|
|
48447
|
+
pageId: Scalars['ID']['input'];
|
|
48448
|
+
};
|
|
47839
48449
|
export declare type QueryCustomerServiceArgs = {
|
|
47840
48450
|
cloudId: Scalars['ID']['input'];
|
|
47841
48451
|
};
|
|
@@ -47922,6 +48532,26 @@ export declare type QueryExtensionContextsArgs = {
|
|
|
47922
48532
|
export declare type QueryExtensionsEchoArgs = {
|
|
47923
48533
|
text: Scalars['String']['input'];
|
|
47924
48534
|
};
|
|
48535
|
+
export declare type QueryFooterCommentV2Args = {
|
|
48536
|
+
id: Scalars['ID']['input'];
|
|
48537
|
+
};
|
|
48538
|
+
export declare type QueryFooterCommentsV2ForBlogPostArgs = {
|
|
48539
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48540
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48541
|
+
id: Scalars['ID']['input'];
|
|
48542
|
+
status?: InputMaybe<Array<FooterCommentStatusV2>>;
|
|
48543
|
+
};
|
|
48544
|
+
export declare type QueryFooterCommentsV2ForPageArgs = {
|
|
48545
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48546
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48547
|
+
id: Scalars['ID']['input'];
|
|
48548
|
+
status?: InputMaybe<Array<FooterCommentStatusV2>>;
|
|
48549
|
+
};
|
|
48550
|
+
export declare type QueryFooterCommentsV2ForParentFooterCommentArgs = {
|
|
48551
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48552
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48553
|
+
id: Scalars['ID']['input'];
|
|
48554
|
+
};
|
|
47925
48555
|
export declare type QueryFullHubArticleArgs = {
|
|
47926
48556
|
id: Scalars['String']['input'];
|
|
47927
48557
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -47952,6 +48582,28 @@ export declare type QueryHelpLayoutArgs = {
|
|
|
47952
48582
|
export declare type QueryHelpObjectStoreArgs = {
|
|
47953
48583
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
47954
48584
|
};
|
|
48585
|
+
export declare type QueryInlineCommentV2Args = {
|
|
48586
|
+
id: Scalars['ID']['input'];
|
|
48587
|
+
};
|
|
48588
|
+
export declare type QueryInlineCommentsV2ForBlogPostArgs = {
|
|
48589
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48590
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48591
|
+
id: Scalars['ID']['input'];
|
|
48592
|
+
resolutionStatus?: InputMaybe<Array<InlineCommentResolutionStatusV2>>;
|
|
48593
|
+
status?: InputMaybe<Array<InlineCommentStatusV2>>;
|
|
48594
|
+
};
|
|
48595
|
+
export declare type QueryInlineCommentsV2ForPageArgs = {
|
|
48596
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48597
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48598
|
+
id: Scalars['ID']['input'];
|
|
48599
|
+
resolutionStatus?: InputMaybe<Array<InlineCommentResolutionStatusV2>>;
|
|
48600
|
+
status?: InputMaybe<Array<InlineCommentStatusV2>>;
|
|
48601
|
+
};
|
|
48602
|
+
export declare type QueryInlineCommentsV2ForParentInlineCommentArgs = {
|
|
48603
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48604
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48605
|
+
id: Scalars['ID']['input'];
|
|
48606
|
+
};
|
|
47955
48607
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
47956
48608
|
appId: Scalars['ID']['input'];
|
|
47957
48609
|
};
|
|
@@ -48003,6 +48655,12 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
48003
48655
|
export declare type QueryKnowledgeBaseArgs = {
|
|
48004
48656
|
cloudId: Scalars['ID']['input'];
|
|
48005
48657
|
};
|
|
48658
|
+
export declare type QueryMacrosArgs = {
|
|
48659
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48660
|
+
blocklist?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
48661
|
+
contentId: Scalars['ID']['input'];
|
|
48662
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48663
|
+
};
|
|
48006
48664
|
export declare type QueryMarketplaceAppArgs = {
|
|
48007
48665
|
appId: Scalars['ID']['input'];
|
|
48008
48666
|
};
|
|
@@ -48048,6 +48706,19 @@ export declare type QueryOpsgenieTeamRelationshipsForJiraProjectArgs = {
|
|
|
48048
48706
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48049
48707
|
id: Scalars['ID']['input'];
|
|
48050
48708
|
};
|
|
48709
|
+
export declare type QueryPageV2Args = {
|
|
48710
|
+
id: Scalars['ID']['input'];
|
|
48711
|
+
status?: InputMaybe<Array<PageStatusV2>>;
|
|
48712
|
+
};
|
|
48713
|
+
export declare type QueryPagesV2Args = {
|
|
48714
|
+
ids: Array<Scalars['ID']['input']>;
|
|
48715
|
+
status?: InputMaybe<Array<BulkPageStatusV2>>;
|
|
48716
|
+
};
|
|
48717
|
+
export declare type QueryPagesV2ForSpaceArgs = {
|
|
48718
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48719
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48720
|
+
id: Scalars['ID']['input'];
|
|
48721
|
+
};
|
|
48051
48722
|
export declare type QueryPolarisCollabTokenArgs = {
|
|
48052
48723
|
viewID: Scalars['ID']['input'];
|
|
48053
48724
|
};
|
|
@@ -48122,6 +48793,10 @@ export declare type QueryReleaseNotesArgs = {
|
|
|
48122
48793
|
search?: InputMaybe<ContentPlatformSearchOptions>;
|
|
48123
48794
|
visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48124
48795
|
};
|
|
48796
|
+
export declare type QueryRenderedMacroArgs = {
|
|
48797
|
+
adf: Scalars['String']['input'];
|
|
48798
|
+
contentId: Scalars['ID']['input'];
|
|
48799
|
+
};
|
|
48125
48800
|
export declare type QueryRepositoryRelationshipsForDevOpsServiceArgs = {
|
|
48126
48801
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
48127
48802
|
filter?: InputMaybe<DevOpsServiceAndRepositoryRelationshipFilter>;
|
|
@@ -48139,6 +48814,27 @@ export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
|
48139
48814
|
export declare type QuerySoftwareBoardsArgs = {
|
|
48140
48815
|
projectAri: Scalars['ID']['input'];
|
|
48141
48816
|
};
|
|
48817
|
+
export declare type QuerySpaceLookAndFeelV2Args = {
|
|
48818
|
+
id: Scalars['ID']['input'];
|
|
48819
|
+
};
|
|
48820
|
+
export declare type QuerySpacePropertiesV2Args = {
|
|
48821
|
+
spaceId: Scalars['ID']['input'];
|
|
48822
|
+
};
|
|
48823
|
+
export declare type QuerySpaceSettingsV2Args = {
|
|
48824
|
+
id: Scalars['ID']['input'];
|
|
48825
|
+
};
|
|
48826
|
+
export declare type QuerySpaceThemeV2Args = {
|
|
48827
|
+
id: Scalars['ID']['input'];
|
|
48828
|
+
};
|
|
48829
|
+
export declare type QuerySpaceV2Args = {
|
|
48830
|
+
id: Scalars['ID']['input'];
|
|
48831
|
+
};
|
|
48832
|
+
export declare type QuerySpaceV2ForPageArgs = {
|
|
48833
|
+
id: Scalars['ID']['input'];
|
|
48834
|
+
};
|
|
48835
|
+
export declare type QuerySpacesV2Args = {
|
|
48836
|
+
ids: Array<Scalars['ID']['input']>;
|
|
48837
|
+
};
|
|
48142
48838
|
export declare type QueryTemplateArgs = {
|
|
48143
48839
|
id: Scalars['String']['input'];
|
|
48144
48840
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -48389,6 +49085,10 @@ export declare type RemoveCompassScorecardFromComponentPayload = Payload & {
|
|
|
48389
49085
|
export declare type RemovePolarisColumnInput = {
|
|
48390
49086
|
column: Scalars['ID']['input'];
|
|
48391
49087
|
};
|
|
49088
|
+
export declare type RenderedMacro = {
|
|
49089
|
+
__typename?: 'RenderedMacro';
|
|
49090
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
49091
|
+
};
|
|
48392
49092
|
export declare type ReportsOverview = {
|
|
48393
49093
|
__typename?: 'ReportsOverview';
|
|
48394
49094
|
metadata: Array<Maybe<SoftwareReport>>;
|
|
@@ -49520,6 +50220,24 @@ export declare type ScopeSprintIssue = {
|
|
|
49520
50220
|
issueKey: Scalars['String']['output'];
|
|
49521
50221
|
issueSummary: Scalars['String']['output'];
|
|
49522
50222
|
};
|
|
50223
|
+
export declare type ScreenLookAndFeel = {
|
|
50224
|
+
__typename?: 'ScreenLookAndFeel';
|
|
50225
|
+
background?: Maybe<Scalars['String']['output']>;
|
|
50226
|
+
backgroundAttachment?: Maybe<Scalars['String']['output']>;
|
|
50227
|
+
backgroundBlendMode?: Maybe<Scalars['String']['output']>;
|
|
50228
|
+
backgroundClip?: Maybe<Scalars['String']['output']>;
|
|
50229
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
50230
|
+
backgroundImage?: Maybe<Scalars['String']['output']>;
|
|
50231
|
+
backgroundOrigin?: Maybe<Scalars['String']['output']>;
|
|
50232
|
+
backgroundPosition?: Maybe<Scalars['String']['output']>;
|
|
50233
|
+
backgroundRepeat?: Maybe<Scalars['String']['output']>;
|
|
50234
|
+
backgroundSize?: Maybe<Scalars['String']['output']>;
|
|
50235
|
+
gutterBottom?: Maybe<Scalars['String']['output']>;
|
|
50236
|
+
gutterLeft?: Maybe<Scalars['String']['output']>;
|
|
50237
|
+
gutterRight?: Maybe<Scalars['String']['output']>;
|
|
50238
|
+
gutterTop?: Maybe<Scalars['String']['output']>;
|
|
50239
|
+
layer?: Maybe<LayerScreenLookAndFeel>;
|
|
50240
|
+
};
|
|
49523
50241
|
export declare type SearchAbTest = {
|
|
49524
50242
|
__typename?: 'SearchAbTest';
|
|
49525
50243
|
abTestId?: Maybe<Scalars['String']['output']>;
|
|
@@ -49663,6 +50381,11 @@ export declare type SearchExternalFilter = {
|
|
|
49663
50381
|
contentFormats?: InputMaybe<Array<InputMaybe<SearchExternalContentFormatFilter>>>;
|
|
49664
50382
|
depth?: InputMaybe<Array<InputMaybe<SearchExternalDepthFilter>>>;
|
|
49665
50383
|
};
|
|
50384
|
+
export declare type SearchFieldLookAndFeel = {
|
|
50385
|
+
__typename?: 'SearchFieldLookAndFeel';
|
|
50386
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
50387
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
50388
|
+
};
|
|
49666
50389
|
export declare type SearchFilterInput = {
|
|
49667
50390
|
commonFilters?: InputMaybe<SearchCommonFilter>;
|
|
49668
50391
|
confluenceFilters?: InputMaybe<SearchConfluenceFilter>;
|
|
@@ -51653,6 +52376,112 @@ export declare enum SortOrder {
|
|
|
51653
52376
|
Asc = "ASC",
|
|
51654
52377
|
Desc = "DESC"
|
|
51655
52378
|
}
|
|
52379
|
+
export declare enum SpaceDescriptionEnum {
|
|
52380
|
+
Plain = "plain",
|
|
52381
|
+
View = "view"
|
|
52382
|
+
}
|
|
52383
|
+
export declare type SpaceDescriptionV2 = {
|
|
52384
|
+
__typename?: 'SpaceDescriptionV2';
|
|
52385
|
+
plain?: Maybe<FormattedPageV2>;
|
|
52386
|
+
view?: Maybe<FormattedPageV2>;
|
|
52387
|
+
};
|
|
52388
|
+
export declare type SpaceIconV2 = {
|
|
52389
|
+
__typename?: 'SpaceIconV2';
|
|
52390
|
+
apiDownloadLink?: Maybe<Scalars['String']['output']>;
|
|
52391
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
52392
|
+
};
|
|
52393
|
+
export declare type SpacePageEditorSettingsV2 = {
|
|
52394
|
+
__typename?: 'SpacePageEditorSettingsV2';
|
|
52395
|
+
blogPost?: Maybe<Scalars['String']['output']>;
|
|
52396
|
+
default?: Maybe<Scalars['String']['output']>;
|
|
52397
|
+
page?: Maybe<Scalars['String']['output']>;
|
|
52398
|
+
};
|
|
52399
|
+
export declare type SpacePageLinksV2 = {
|
|
52400
|
+
__typename?: 'SpacePageLinksV2';
|
|
52401
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
52402
|
+
webui?: Maybe<Scalars['String']['output']>;
|
|
52403
|
+
};
|
|
52404
|
+
export declare type SpacePageSettingsV2 = {
|
|
52405
|
+
__typename?: 'SpacePageSettingsV2';
|
|
52406
|
+
editor?: Maybe<SpacePageEditorSettingsV2>;
|
|
52407
|
+
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
52408
|
+
};
|
|
52409
|
+
export declare type SpacePageV2 = Node & {
|
|
52410
|
+
__typename?: 'SpacePageV2';
|
|
52411
|
+
authorId?: Maybe<Scalars['String']['output']>;
|
|
52412
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
52413
|
+
description?: Maybe<SpaceDescriptionV2>;
|
|
52414
|
+
homepageId: Scalars['ID']['output'];
|
|
52415
|
+
icon?: Maybe<SpaceIconV2>;
|
|
52416
|
+
id: Scalars['ID']['output'];
|
|
52417
|
+
key: Scalars['String']['output'];
|
|
52418
|
+
links?: Maybe<SpacePageLinksV2>;
|
|
52419
|
+
lookAndFeel?: Maybe<LookAndFeelV2>;
|
|
52420
|
+
name: Scalars['String']['output'];
|
|
52421
|
+
settings?: Maybe<SpacePageSettingsV2>;
|
|
52422
|
+
status: SpaceStatusV2;
|
|
52423
|
+
theme?: Maybe<ThemeV2>;
|
|
52424
|
+
type: SpaceTypeV2;
|
|
52425
|
+
};
|
|
52426
|
+
export declare type SpacePageV2DescriptionArgs = {
|
|
52427
|
+
format?: InputMaybe<SpaceDescriptionEnum>;
|
|
52428
|
+
};
|
|
52429
|
+
export declare type SpacePropertyV2 = {
|
|
52430
|
+
__typename?: 'SpacePropertyV2';
|
|
52431
|
+
authorId: Scalars['String']['output'];
|
|
52432
|
+
createdAt: Scalars['String']['output'];
|
|
52433
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
52434
|
+
key: Scalars['String']['output'];
|
|
52435
|
+
value: Scalars['JSON']['output'];
|
|
52436
|
+
version: SpaceVersionV2;
|
|
52437
|
+
};
|
|
52438
|
+
export declare type SpacePropertyV2Connection = {
|
|
52439
|
+
__typename?: 'SpacePropertyV2Connection';
|
|
52440
|
+
edges?: Maybe<Array<Maybe<SpacePropertyV2Edge>>>;
|
|
52441
|
+
nodes?: Maybe<Array<Maybe<SpacePropertyV2>>>;
|
|
52442
|
+
pageInfo: PageInfoV2;
|
|
52443
|
+
};
|
|
52444
|
+
export declare type SpacePropertyV2Edge = {
|
|
52445
|
+
__typename?: 'SpacePropertyV2Edge';
|
|
52446
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
52447
|
+
node: SpacePropertyV2;
|
|
52448
|
+
};
|
|
52449
|
+
export declare type SpaceSettingsV2 = {
|
|
52450
|
+
__typename?: 'SpaceSettingsV2';
|
|
52451
|
+
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
52452
|
+
};
|
|
52453
|
+
export declare enum SpaceStatusV2 {
|
|
52454
|
+
Archived = "archived",
|
|
52455
|
+
Current = "current"
|
|
52456
|
+
}
|
|
52457
|
+
export declare enum SpaceTypeV2 {
|
|
52458
|
+
Global = "global",
|
|
52459
|
+
Personal = "personal"
|
|
52460
|
+
}
|
|
52461
|
+
export declare type SpaceV2 = Node & {
|
|
52462
|
+
__typename?: 'SpaceV2';
|
|
52463
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
52464
|
+
description?: Maybe<SpaceDescriptionV2>;
|
|
52465
|
+
homepage?: Maybe<PageV2>;
|
|
52466
|
+
homepageId: Scalars['ID']['output'];
|
|
52467
|
+
icon?: Maybe<SpaceIconV2>;
|
|
52468
|
+
id: Scalars['ID']['output'];
|
|
52469
|
+
key: Scalars['String']['output'];
|
|
52470
|
+
name: Scalars['String']['output'];
|
|
52471
|
+
status: SpaceStatusV2;
|
|
52472
|
+
type: SpaceTypeV2;
|
|
52473
|
+
};
|
|
52474
|
+
export declare type SpaceV2DescriptionArgs = {
|
|
52475
|
+
format?: InputMaybe<SpaceDescriptionEnum>;
|
|
52476
|
+
};
|
|
52477
|
+
export declare type SpaceVersionV2 = {
|
|
52478
|
+
__typename?: 'SpaceVersionV2';
|
|
52479
|
+
authorId: Scalars['String']['output'];
|
|
52480
|
+
createdAt: Scalars['String']['output'];
|
|
52481
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
52482
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
52483
|
+
number: Scalars['Int']['output'];
|
|
52484
|
+
};
|
|
51656
52485
|
export declare type SplitIssueInput = {
|
|
51657
52486
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
51658
52487
|
originalIssue: OriginalSplitIssue;
|
|
@@ -52511,6 +53340,11 @@ export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
|
|
|
52511
53340
|
export declare type TestingSubscriptionOnTestingActivityItemUpdateEnrichJiraArgs = {
|
|
52512
53341
|
issueId: Scalars['ID']['input'];
|
|
52513
53342
|
};
|
|
53343
|
+
export declare type ThemeV2 = {
|
|
53344
|
+
__typename?: 'ThemeV2';
|
|
53345
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
53346
|
+
themeKey?: Maybe<Scalars['String']['output']>;
|
|
53347
|
+
};
|
|
52514
53348
|
export declare type ThirdPartyDetails = {
|
|
52515
53349
|
__typename?: 'ThirdPartyDetails';
|
|
52516
53350
|
link: Scalars['String']['output'];
|
|
@@ -55092,6 +55926,19 @@ export declare type UpdateJiraProjectAndRepositoryRelationshipPayload = Payload
|
|
|
55092
55926
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
55093
55927
|
success: Scalars['Boolean']['output'];
|
|
55094
55928
|
};
|
|
55929
|
+
export declare type UpdatePageV2Input = {
|
|
55930
|
+
body: FormattedBodyV2Input;
|
|
55931
|
+
id: Scalars['ID']['input'];
|
|
55932
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
55933
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
55934
|
+
status: PageUpdateStatusV2;
|
|
55935
|
+
title: Scalars['String']['input'];
|
|
55936
|
+
version: VersionV2Input;
|
|
55937
|
+
};
|
|
55938
|
+
export declare type UpdatePageV2Payload = {
|
|
55939
|
+
__typename?: 'UpdatePageV2Payload';
|
|
55940
|
+
pageV2?: Maybe<PageV2>;
|
|
55941
|
+
};
|
|
55095
55942
|
export declare type UpdatePolarisCommentInput = {
|
|
55096
55943
|
content?: InputMaybe<Scalars['JSON']['input']>;
|
|
55097
55944
|
delete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55357,6 +56204,18 @@ export declare type UserInstallationRulesPayload = Payload & {
|
|
|
55357
56204
|
rule?: Maybe<UserInstallationRuleValue>;
|
|
55358
56205
|
success: Scalars['Boolean']['output'];
|
|
55359
56206
|
};
|
|
56207
|
+
export declare type VersionV2 = {
|
|
56208
|
+
__typename?: 'VersionV2';
|
|
56209
|
+
authorId?: Maybe<Scalars['String']['output']>;
|
|
56210
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
56211
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
56212
|
+
minorEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
56213
|
+
number: Scalars['Int']['output'];
|
|
56214
|
+
};
|
|
56215
|
+
export declare type VersionV2Input = {
|
|
56216
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
56217
|
+
number: Scalars['Int']['input'];
|
|
56218
|
+
};
|
|
55360
56219
|
export declare type VirtualAgentAiAnswerStatusForChannel = {
|
|
55361
56220
|
__typename?: 'VirtualAgentAiAnswerStatusForChannel';
|
|
55362
56221
|
isAiResponsesChannel?: Maybe<Scalars['Boolean']['output']>;
|