@forge/cli-shared 0.0.0-experimental-3b4aabe → 0.0.0-experimental-9489df9
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 +116 -3
- package/out/graphql/graphql-types.d.ts +908 -373
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +65 -11
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +1 -3
- package/package.json +3 -3
|
@@ -251,7 +251,7 @@ export declare type ActivityObject = {
|
|
|
251
251
|
contributors?: Maybe<Array<ActivityContributor>>;
|
|
252
252
|
data?: Maybe<ActivityObjectData>;
|
|
253
253
|
};
|
|
254
|
-
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost |
|
|
254
|
+
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
255
255
|
export declare enum ActivityObjectType {
|
|
256
256
|
Site = "SITE",
|
|
257
257
|
Project = "PROJECT",
|
|
@@ -321,7 +321,8 @@ export declare enum ApiGroup {
|
|
|
321
321
|
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
322
322
|
Identity = "IDENTITY",
|
|
323
323
|
DevopsAriGraph = "DEVOPS_ARI_GRAPH",
|
|
324
|
-
Help = "HELP"
|
|
324
|
+
Help = "HELP",
|
|
325
|
+
CollaborationGraph = "COLLABORATION_GRAPH"
|
|
325
326
|
}
|
|
326
327
|
export declare type App = {
|
|
327
328
|
__typename?: 'App';
|
|
@@ -604,6 +605,7 @@ export declare type AppInstallationUpgradeInput = {
|
|
|
604
605
|
versionId?: Maybe<Scalars['ID']>;
|
|
605
606
|
environmentKey: Scalars['String'];
|
|
606
607
|
async?: Maybe<Scalars['Boolean']>;
|
|
608
|
+
sourceBillingType?: Maybe<SourceBillingType>;
|
|
607
609
|
};
|
|
608
610
|
export declare type AppInstallationUpgradeResponse = Payload & {
|
|
609
611
|
__typename?: 'AppInstallationUpgradeResponse';
|
|
@@ -877,38 +879,41 @@ export declare type AriGraphRelationshipsArgs = {
|
|
|
877
879
|
filter: AriGraphRelationshipsFilter;
|
|
878
880
|
first?: Maybe<Scalars['Int']>;
|
|
879
881
|
after?: Maybe<Scalars['String']>;
|
|
882
|
+
sort?: Maybe<AriGraphRelationshipsSort>;
|
|
880
883
|
};
|
|
881
|
-
export declare type
|
|
882
|
-
|
|
883
|
-
from: Scalars['ID'];
|
|
884
|
-
to: Scalars['ID'];
|
|
885
|
-
type: Scalars['ID'];
|
|
886
|
-
};
|
|
887
|
-
export declare type AriGraphCreateRelationshipInput = {
|
|
888
|
-
relationships: Array<AriGraphCreateRelationshipInputRelationship>;
|
|
884
|
+
export declare type AriGraphCreateRelationshipsInput = {
|
|
885
|
+
relationships: Array<AriGraphCreateRelationshipsInputRelationship>;
|
|
889
886
|
};
|
|
890
|
-
export declare type
|
|
887
|
+
export declare type AriGraphCreateRelationshipsInputRelationship = {
|
|
891
888
|
from: Scalars['ID'];
|
|
892
889
|
to: Scalars['ID'];
|
|
893
890
|
type: Scalars['ID'];
|
|
894
891
|
};
|
|
895
|
-
export declare type
|
|
896
|
-
__typename?: '
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
892
|
+
export declare type AriGraphCreateRelationshipsPayload = Payload & {
|
|
893
|
+
__typename?: 'AriGraphCreateRelationshipsPayload';
|
|
894
|
+
success: Scalars['Boolean'];
|
|
895
|
+
errors?: Maybe<Array<MutationError>>;
|
|
896
|
+
};
|
|
897
|
+
export declare type AriGraphDeleteRelationshipsInput = {
|
|
898
|
+
from?: Maybe<Scalars['ID']>;
|
|
899
|
+
to?: Maybe<Scalars['ID']>;
|
|
900
|
+
type?: Maybe<Scalars['ID']>;
|
|
900
901
|
};
|
|
901
|
-
export declare type
|
|
902
|
-
__typename?: '
|
|
902
|
+
export declare type AriGraphDeleteRelationshipsPayload = Payload & {
|
|
903
|
+
__typename?: 'AriGraphDeleteRelationshipsPayload';
|
|
903
904
|
success: Scalars['Boolean'];
|
|
904
905
|
errors?: Maybe<Array<MutationError>>;
|
|
905
906
|
};
|
|
906
907
|
export declare type AriGraphMutation = {
|
|
907
908
|
__typename?: 'AriGraphMutation';
|
|
908
|
-
|
|
909
|
+
createRelationships?: Maybe<AriGraphCreateRelationshipsPayload>;
|
|
910
|
+
deleteRelationships?: Maybe<AriGraphDeleteRelationshipsPayload>;
|
|
909
911
|
};
|
|
910
|
-
export declare type
|
|
911
|
-
input:
|
|
912
|
+
export declare type AriGraphMutationCreateRelationshipsArgs = {
|
|
913
|
+
input: AriGraphCreateRelationshipsInput;
|
|
914
|
+
};
|
|
915
|
+
export declare type AriGraphMutationDeleteRelationshipsArgs = {
|
|
916
|
+
input: AriGraphDeleteRelationshipsInput;
|
|
912
917
|
};
|
|
913
918
|
export declare type AriGraphRelationship = {
|
|
914
919
|
__typename?: 'AriGraphRelationship';
|
|
@@ -931,7 +936,14 @@ export declare type AriGraphRelationshipEdge = {
|
|
|
931
936
|
export declare type AriGraphRelationshipNode = {
|
|
932
937
|
__typename?: 'AriGraphRelationshipNode';
|
|
933
938
|
id: Scalars['ID'];
|
|
934
|
-
data?: Maybe<
|
|
939
|
+
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
940
|
+
};
|
|
941
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluenceSpace;
|
|
942
|
+
export declare type AriGraphRelationshipsErrorReference = {
|
|
943
|
+
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
944
|
+
from?: Maybe<Scalars['ID']>;
|
|
945
|
+
to?: Maybe<Scalars['ID']>;
|
|
946
|
+
type: Scalars['ID'];
|
|
935
947
|
};
|
|
936
948
|
export declare type AriGraphRelationshipsFilter = {
|
|
937
949
|
type: Scalars['ID'];
|
|
@@ -940,6 +952,19 @@ export declare type AriGraphRelationshipsFilter = {
|
|
|
940
952
|
updatedFrom?: Maybe<Scalars['DateTime']>;
|
|
941
953
|
updatedTo?: Maybe<Scalars['DateTime']>;
|
|
942
954
|
};
|
|
955
|
+
export declare type AriGraphRelationshipsMutationErrorExtension = MutationErrorExtension & {
|
|
956
|
+
__typename?: 'AriGraphRelationshipsMutationErrorExtension';
|
|
957
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
958
|
+
errorType?: Maybe<Scalars['String']>;
|
|
959
|
+
reference: AriGraphRelationshipsErrorReference;
|
|
960
|
+
};
|
|
961
|
+
export declare type AriGraphRelationshipsSort = {
|
|
962
|
+
lastUpdatedSortDirection?: Maybe<AriGraphRelationshipsSortDirection>;
|
|
963
|
+
};
|
|
964
|
+
export declare enum AriGraphRelationshipsSortDirection {
|
|
965
|
+
Asc = "ASC",
|
|
966
|
+
Desc = "DESC"
|
|
967
|
+
}
|
|
943
968
|
export declare type ArjConfiguration = {
|
|
944
969
|
__typename?: 'ArjConfiguration';
|
|
945
970
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -1151,11 +1176,12 @@ export declare type BitbucketQueryBitbucketRepositoriesArgs = {
|
|
|
1151
1176
|
export declare type BitbucketQueryBitbucketWorkspaceArgs = {
|
|
1152
1177
|
id: Scalars['ID'];
|
|
1153
1178
|
};
|
|
1154
|
-
export declare type BitbucketRepository = Node & {
|
|
1179
|
+
export declare type BitbucketRepository = CodeRepository & Node & {
|
|
1155
1180
|
__typename?: 'BitbucketRepository';
|
|
1156
1181
|
id: Scalars['ID'];
|
|
1157
1182
|
name: Scalars['String'];
|
|
1158
|
-
webUrl
|
|
1183
|
+
webUrl?: Maybe<Scalars['URL']>;
|
|
1184
|
+
href?: Maybe<Scalars['URL']>;
|
|
1159
1185
|
avatar?: Maybe<BitbucketRepositoryAvatar>;
|
|
1160
1186
|
workspace?: Maybe<BitbucketWorkspace>;
|
|
1161
1187
|
jiraProjectRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -1499,6 +1525,7 @@ export declare type CardType = {
|
|
|
1499
1525
|
iconUrl?: Maybe<Scalars['String']>;
|
|
1500
1526
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
1501
1527
|
hierarchyLevelType?: Maybe<Scalars['CardTypeHierarchyLevelType']>;
|
|
1528
|
+
hasRequiredFields?: Maybe<Scalars['Boolean']>;
|
|
1502
1529
|
};
|
|
1503
1530
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
1504
1531
|
cloudId: Scalars['ID'];
|
|
@@ -1549,6 +1576,10 @@ export declare type CodeInJiraVcsProvider = {
|
|
|
1549
1576
|
providerId?: Maybe<Scalars['String']>;
|
|
1550
1577
|
baseUrl?: Maybe<Scalars['String']>;
|
|
1551
1578
|
};
|
|
1579
|
+
export declare type CodeRepository = {
|
|
1580
|
+
name: Scalars['String'];
|
|
1581
|
+
href?: Maybe<Scalars['URL']>;
|
|
1582
|
+
};
|
|
1552
1583
|
export declare type Column = {
|
|
1553
1584
|
__typename?: 'Column';
|
|
1554
1585
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -1678,6 +1709,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1678
1709
|
__typename?: 'CompassCatalogMutationApi';
|
|
1679
1710
|
createComponent?: Maybe<CreateCompassComponentPayload>;
|
|
1680
1711
|
updateComponent?: Maybe<UpdateCompassComponentPayload>;
|
|
1712
|
+
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
1681
1713
|
deleteComponent?: Maybe<DeleteCompassComponentPayload>;
|
|
1682
1714
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
1683
1715
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
@@ -1736,6 +1768,9 @@ export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
|
1736
1768
|
export declare type CompassCatalogMutationApiUpdateComponentArgs = {
|
|
1737
1769
|
input: UpdateCompassComponentInput;
|
|
1738
1770
|
};
|
|
1771
|
+
export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
1772
|
+
input: UpdateCompassComponentTypeInput;
|
|
1773
|
+
};
|
|
1739
1774
|
export declare type CompassCatalogMutationApiDeleteComponentArgs = {
|
|
1740
1775
|
input: DeleteCompassComponentInput;
|
|
1741
1776
|
};
|
|
@@ -2072,7 +2107,6 @@ export declare type CompassCreateComponentSubscriptionInput = {
|
|
|
2072
2107
|
};
|
|
2073
2108
|
export declare type CompassCreateComponentSubscriptionPayload = Payload & {
|
|
2074
2109
|
__typename?: 'CompassCreateComponentSubscriptionPayload';
|
|
2075
|
-
component?: Maybe<CompassComponent>;
|
|
2076
2110
|
success: Scalars['Boolean'];
|
|
2077
2111
|
errors?: Maybe<Array<MutationError>>;
|
|
2078
2112
|
};
|
|
@@ -2155,6 +2189,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
2155
2189
|
weight: Scalars['Int'];
|
|
2156
2190
|
customFieldDefinitionId: Scalars['ID'];
|
|
2157
2191
|
comparator: CompassCriteriaBooleanComparatorOptions;
|
|
2192
|
+
comparatorValue: Scalars['Boolean'];
|
|
2158
2193
|
};
|
|
2159
2194
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
2160
2195
|
weight: Scalars['Int'];
|
|
@@ -2205,6 +2240,7 @@ export declare type CompassCreateMetricSourceInput = {
|
|
|
2205
2240
|
metricDefinitionId: Scalars['ID'];
|
|
2206
2241
|
externalMetricSourceId: Scalars['ID'];
|
|
2207
2242
|
url?: Maybe<Scalars['String']>;
|
|
2243
|
+
derived?: Maybe<Scalars['Boolean']>;
|
|
2208
2244
|
};
|
|
2209
2245
|
export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
2210
2246
|
__typename?: 'CompassCreateMetricSourcePayload';
|
|
@@ -2238,8 +2274,7 @@ export declare type CompassCreateTeamCheckinResponseRichText = {
|
|
|
2238
2274
|
adf?: Maybe<Scalars['String']>;
|
|
2239
2275
|
};
|
|
2240
2276
|
export declare enum CompassCriteriaBooleanComparatorOptions {
|
|
2241
|
-
|
|
2242
|
-
IsFalse = "IS_FALSE"
|
|
2277
|
+
Equals = "EQUALS"
|
|
2243
2278
|
}
|
|
2244
2279
|
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
2245
2280
|
Equals = "EQUALS",
|
|
@@ -2590,6 +2625,7 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassScore
|
|
|
2590
2625
|
weight: Scalars['Int'];
|
|
2591
2626
|
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2592
2627
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2628
|
+
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2593
2629
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2594
2630
|
};
|
|
2595
2631
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -2805,6 +2841,7 @@ export declare type CompassMetricSource = {
|
|
|
2805
2841
|
forgeAppId?: Maybe<Scalars['ID']>;
|
|
2806
2842
|
values?: Maybe<CompassMetricSourceValuesQueryResult>;
|
|
2807
2843
|
component?: Maybe<CompassComponent>;
|
|
2844
|
+
derivedFrom?: Maybe<Array<EventSource>>;
|
|
2808
2845
|
};
|
|
2809
2846
|
export declare type CompassMetricSourceValuesArgs = {
|
|
2810
2847
|
query?: Maybe<CompassMetricSourceValuesQuery>;
|
|
@@ -3144,6 +3181,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
3144
3181
|
weight?: Maybe<Scalars['Int']>;
|
|
3145
3182
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3146
3183
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3184
|
+
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
3147
3185
|
};
|
|
3148
3186
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3149
3187
|
id: Scalars['ID'];
|
|
@@ -3272,6 +3310,8 @@ export declare type ConfluenceBlogPost = {
|
|
|
3272
3310
|
__typename?: 'ConfluenceBlogPost';
|
|
3273
3311
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3274
3312
|
blogPostId: Scalars['ID'];
|
|
3313
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3314
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3275
3315
|
id: Scalars['ID'];
|
|
3276
3316
|
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
3277
3317
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
@@ -3283,6 +3323,9 @@ export declare type ConfluenceBlogPost = {
|
|
|
3283
3323
|
type?: Maybe<ConfluenceContentType>;
|
|
3284
3324
|
viewer?: Maybe<ConfluenceBlogPostViewerSummary>;
|
|
3285
3325
|
};
|
|
3326
|
+
export declare type ConfluenceBlogPostCommentsArgs = {
|
|
3327
|
+
commentType?: Maybe<ConfluenceCommentType>;
|
|
3328
|
+
};
|
|
3286
3329
|
export declare type ConfluenceBlogPostPropertiesArgs = {
|
|
3287
3330
|
keys: Array<Maybe<Scalars['String']>>;
|
|
3288
3331
|
};
|
|
@@ -3307,21 +3350,49 @@ export declare enum ConfluenceBlogPostStatus {
|
|
|
3307
3350
|
export declare type ConfluenceBlogPostVersion = {
|
|
3308
3351
|
__typename?: 'ConfluenceBlogPostVersion';
|
|
3309
3352
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3310
|
-
createdAt?: Maybe<Scalars['
|
|
3353
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
3311
3354
|
number?: Maybe<Scalars['Int']>;
|
|
3312
3355
|
};
|
|
3313
3356
|
export declare type ConfluenceBlogPostViewerSummary = {
|
|
3314
3357
|
__typename?: 'ConfluenceBlogPostViewerSummary';
|
|
3315
3358
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3316
|
-
lastSeenAt?: Maybe<Scalars['
|
|
3359
|
+
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
3360
|
+
};
|
|
3361
|
+
export declare type ConfluenceBodies = {
|
|
3362
|
+
__typename?: 'ConfluenceBodies';
|
|
3363
|
+
anonymousExportView?: Maybe<ConfluenceBody>;
|
|
3364
|
+
atlasDocFormat?: Maybe<ConfluenceBody>;
|
|
3365
|
+
dynamic?: Maybe<ConfluenceBody>;
|
|
3366
|
+
editor?: Maybe<ConfluenceBody>;
|
|
3367
|
+
editor2?: Maybe<ConfluenceBody>;
|
|
3368
|
+
exportView?: Maybe<ConfluenceBody>;
|
|
3369
|
+
storage?: Maybe<ConfluenceBody>;
|
|
3370
|
+
styledView?: Maybe<ConfluenceBody>;
|
|
3371
|
+
view?: Maybe<ConfluenceBody>;
|
|
3372
|
+
};
|
|
3373
|
+
export declare type ConfluenceBody = {
|
|
3374
|
+
__typename?: 'ConfluenceBody';
|
|
3375
|
+
representation?: Maybe<ConfluenceBodyRepresentation>;
|
|
3376
|
+
value?: Maybe<Scalars['String']>;
|
|
3317
3377
|
};
|
|
3378
|
+
export declare enum ConfluenceBodyRepresentation {
|
|
3379
|
+
AnonymousExportView = "ANONYMOUS_EXPORT_VIEW",
|
|
3380
|
+
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
3381
|
+
Dynamic = "DYNAMIC",
|
|
3382
|
+
Editor = "EDITOR",
|
|
3383
|
+
Editor2 = "EDITOR2",
|
|
3384
|
+
ExportView = "EXPORT_VIEW",
|
|
3385
|
+
Storage = "STORAGE",
|
|
3386
|
+
StyledView = "STYLED_VIEW",
|
|
3387
|
+
View = "VIEW"
|
|
3388
|
+
}
|
|
3318
3389
|
export declare enum ConfluenceCollaborativeEditingService {
|
|
3319
3390
|
Ncs = "NCS",
|
|
3320
3391
|
Synchrony = "SYNCHRONY"
|
|
3321
3392
|
}
|
|
3322
3393
|
export declare type ConfluenceComment = {
|
|
3323
|
-
__typename?: 'ConfluenceComment';
|
|
3324
3394
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3395
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3325
3396
|
commentId?: Maybe<Scalars['ID']>;
|
|
3326
3397
|
container?: Maybe<ConfluenceCommentContainer>;
|
|
3327
3398
|
id: Scalars['ID'];
|
|
@@ -3339,6 +3410,10 @@ export declare enum ConfluenceCommentStatus {
|
|
|
3339
3410
|
Current = "CURRENT",
|
|
3340
3411
|
Draft = "DRAFT"
|
|
3341
3412
|
}
|
|
3413
|
+
export declare enum ConfluenceCommentType {
|
|
3414
|
+
Footer = "FOOTER",
|
|
3415
|
+
Inline = "INLINE"
|
|
3416
|
+
}
|
|
3342
3417
|
export declare type ConfluenceContentBody = {
|
|
3343
3418
|
__typename?: 'ConfluenceContentBody';
|
|
3344
3419
|
adf?: Maybe<Scalars['String']>;
|
|
@@ -3405,18 +3480,34 @@ export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
|
3405
3480
|
errors?: Maybe<Array<MutationError>>;
|
|
3406
3481
|
success: Scalars['Boolean'];
|
|
3407
3482
|
};
|
|
3408
|
-
export declare type
|
|
3483
|
+
export declare type ConfluenceCreateBlogPostPropertyInput = {
|
|
3484
|
+
blogPostId: Scalars['ID'];
|
|
3485
|
+
key: Scalars['String'];
|
|
3486
|
+
value: Scalars['String'];
|
|
3487
|
+
};
|
|
3488
|
+
export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
3489
|
+
__typename?: 'ConfluenceCreateBlogPostPropertyPayload';
|
|
3490
|
+
blogPostProperty?: Maybe<ConfluenceBlogPostProperty>;
|
|
3491
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3492
|
+
success: Scalars['Boolean'];
|
|
3493
|
+
};
|
|
3494
|
+
export declare type ConfluenceCreateFooterCommentOnBlogPostInput = {
|
|
3495
|
+
blogPostId: Scalars['ID'];
|
|
3496
|
+
body: ConfluenceContentBodyInput;
|
|
3497
|
+
};
|
|
3498
|
+
export declare type ConfluenceCreateFooterCommentOnBlogPostPayload = Payload & {
|
|
3499
|
+
__typename?: 'ConfluenceCreateFooterCommentOnBlogPostPayload';
|
|
3500
|
+
comment?: Maybe<ConfluenceFooterComment>;
|
|
3501
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3502
|
+
success: Scalars['Boolean'];
|
|
3503
|
+
};
|
|
3504
|
+
export declare type ConfluenceCreateFooterCommentOnPageInput = {
|
|
3409
3505
|
body: ConfluenceContentBodyInput;
|
|
3410
3506
|
pageId: Scalars['ID'];
|
|
3411
|
-
pageStatus: ConfluenceCreateCommentOnPagePageStatus;
|
|
3412
3507
|
};
|
|
3413
|
-
export declare
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
}
|
|
3417
|
-
export declare type ConfluenceCreateCommentPayload = {
|
|
3418
|
-
__typename?: 'ConfluenceCreateCommentPayload';
|
|
3419
|
-
comment?: Maybe<ConfluenceComment>;
|
|
3508
|
+
export declare type ConfluenceCreateFooterCommentOnPagePayload = Payload & {
|
|
3509
|
+
__typename?: 'ConfluenceCreateFooterCommentOnPagePayload';
|
|
3510
|
+
comment?: Maybe<ConfluenceFooterComment>;
|
|
3420
3511
|
errors?: Maybe<Array<MutationError>>;
|
|
3421
3512
|
success: Scalars['Boolean'];
|
|
3422
3513
|
};
|
|
@@ -3432,6 +3523,17 @@ export declare type ConfluenceCreatePagePayload = Payload & {
|
|
|
3432
3523
|
errors?: Maybe<Array<MutationError>>;
|
|
3433
3524
|
success: Scalars['Boolean'];
|
|
3434
3525
|
};
|
|
3526
|
+
export declare type ConfluenceCreatePagePropertyInput = {
|
|
3527
|
+
key: Scalars['String'];
|
|
3528
|
+
pageId: Scalars['ID'];
|
|
3529
|
+
value: Scalars['String'];
|
|
3530
|
+
};
|
|
3531
|
+
export declare type ConfluenceCreatePagePropertyPayload = Payload & {
|
|
3532
|
+
__typename?: 'ConfluenceCreatePagePropertyPayload';
|
|
3533
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3534
|
+
pageProperty?: Maybe<ConfluencePageProperty>;
|
|
3535
|
+
success: Scalars['Boolean'];
|
|
3536
|
+
};
|
|
3435
3537
|
export declare type ConfluenceCreateSpaceInput = {
|
|
3436
3538
|
key: Scalars['String'];
|
|
3437
3539
|
name: Scalars['String'];
|
|
@@ -3454,6 +3556,15 @@ export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
|
3454
3556
|
errors?: Maybe<Array<MutationError>>;
|
|
3455
3557
|
success: Scalars['Boolean'];
|
|
3456
3558
|
};
|
|
3559
|
+
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
3560
|
+
blogPostId: Scalars['ID'];
|
|
3561
|
+
key: Scalars['String'];
|
|
3562
|
+
};
|
|
3563
|
+
export declare type ConfluenceDeleteBlogPostPropertyPayload = Payload & {
|
|
3564
|
+
__typename?: 'ConfluenceDeleteBlogPostPropertyPayload';
|
|
3565
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3566
|
+
success: Scalars['Boolean'];
|
|
3567
|
+
};
|
|
3457
3568
|
export declare type ConfluenceDeleteCommentInput = {
|
|
3458
3569
|
id: Scalars['ID'];
|
|
3459
3570
|
};
|
|
@@ -3478,6 +3589,15 @@ export declare type ConfluenceDeleteDraftPagePayload = Payload & {
|
|
|
3478
3589
|
errors?: Maybe<Array<MutationError>>;
|
|
3479
3590
|
success: Scalars['Boolean'];
|
|
3480
3591
|
};
|
|
3592
|
+
export declare type ConfluenceDeletePagePropertyInput = {
|
|
3593
|
+
key: Scalars['String'];
|
|
3594
|
+
pageId: Scalars['ID'];
|
|
3595
|
+
};
|
|
3596
|
+
export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
3597
|
+
__typename?: 'ConfluenceDeletePagePropertyPayload';
|
|
3598
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3599
|
+
success: Scalars['Boolean'];
|
|
3600
|
+
};
|
|
3481
3601
|
export declare type ConfluenceDeleteUserPropertyInput = {
|
|
3482
3602
|
id: Scalars['ID'];
|
|
3483
3603
|
};
|
|
@@ -3486,6 +3606,33 @@ export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
|
3486
3606
|
errors?: Maybe<Array<MutationError>>;
|
|
3487
3607
|
success: Scalars['Boolean'];
|
|
3488
3608
|
};
|
|
3609
|
+
export declare type ConfluenceFooterComment = ConfluenceComment & {
|
|
3610
|
+
__typename?: 'ConfluenceFooterComment';
|
|
3611
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3612
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3613
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
3614
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
3615
|
+
id: Scalars['ID'];
|
|
3616
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
3617
|
+
name?: Maybe<Scalars['String']>;
|
|
3618
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
3619
|
+
};
|
|
3620
|
+
export declare type ConfluenceInlineComment = ConfluenceComment & {
|
|
3621
|
+
__typename?: 'ConfluenceInlineComment';
|
|
3622
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3623
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3624
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
3625
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
3626
|
+
id: Scalars['ID'];
|
|
3627
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
3628
|
+
name?: Maybe<Scalars['String']>;
|
|
3629
|
+
resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
|
|
3630
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
3631
|
+
};
|
|
3632
|
+
export declare enum ConfluenceInlineCommentResolutionStatus {
|
|
3633
|
+
Resolved = "RESOLVED",
|
|
3634
|
+
Unresolved = "UNRESOLVED"
|
|
3635
|
+
}
|
|
3489
3636
|
export declare type ConfluenceInlineTask = {
|
|
3490
3637
|
__typename?: 'ConfluenceInlineTask';
|
|
3491
3638
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -3493,13 +3640,13 @@ export declare type ConfluenceInlineTask = {
|
|
|
3493
3640
|
completedBy?: Maybe<ConfluenceUserInfo>;
|
|
3494
3641
|
container?: Maybe<ConfluenceInlineTaskContainer>;
|
|
3495
3642
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3496
|
-
|
|
3497
|
-
|
|
3643
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
3644
|
+
dueAt?: Maybe<Scalars['DateTime']>;
|
|
3498
3645
|
globalId?: Maybe<Scalars['ID']>;
|
|
3499
3646
|
id: Scalars['ID'];
|
|
3500
3647
|
status?: Maybe<ConfluenceInlineTaskStatus>;
|
|
3501
3648
|
taskId?: Maybe<Scalars['ID']>;
|
|
3502
|
-
|
|
3649
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
3503
3650
|
};
|
|
3504
3651
|
export declare type ConfluenceInlineTaskContainer = ConfluenceBlogPost | ConfluencePage;
|
|
3505
3652
|
export declare enum ConfluenceInlineTaskStatus {
|
|
@@ -3515,17 +3662,24 @@ export declare type ConfluenceLabel = {
|
|
|
3515
3662
|
export declare type ConfluenceMutationApi = {
|
|
3516
3663
|
__typename?: 'ConfluenceMutationApi';
|
|
3517
3664
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3518
|
-
|
|
3665
|
+
createBlogPostProperty?: Maybe<ConfluenceCreateBlogPostPropertyPayload>;
|
|
3666
|
+
createFooterCommentOnBlogPost?: Maybe<ConfluenceCreateFooterCommentOnBlogPostPayload>;
|
|
3667
|
+
createFooterCommentOnPage?: Maybe<ConfluenceCreateFooterCommentOnPagePayload>;
|
|
3519
3668
|
createPage?: Maybe<ConfluenceCreatePagePayload>;
|
|
3669
|
+
createPageProperty?: Maybe<ConfluenceCreatePagePropertyPayload>;
|
|
3520
3670
|
createSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
3671
|
+
deleteBlogPostProperty?: Maybe<ConfluenceDeleteBlogPostPropertyPayload>;
|
|
3521
3672
|
deleteComment?: Maybe<ConfluenceDeleteCommentPayload>;
|
|
3522
3673
|
deleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
3523
3674
|
deleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
3675
|
+
deletePageProperty?: Maybe<ConfluenceDeletePagePropertyPayload>;
|
|
3524
3676
|
publishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
3525
3677
|
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
3526
3678
|
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
3527
3679
|
purgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3680
|
+
reopenInlineComment?: Maybe<ConfluenceReopenInlineCommentPayload>;
|
|
3528
3681
|
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
3682
|
+
resolveInlineComment?: Maybe<ConfluenceResolveInlineCommentPayload>;
|
|
3529
3683
|
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3530
3684
|
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
3531
3685
|
updateComment?: Maybe<ConfluenceUpdateCommentPayload>;
|
|
@@ -3534,25 +3688,37 @@ export declare type ConfluenceMutationApi = {
|
|
|
3534
3688
|
updateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
3535
3689
|
updateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
3536
3690
|
updateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3691
|
+
updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
|
|
3692
|
+
updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
|
|
3537
3693
|
createUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
3538
3694
|
updateValueUserProperty?: Maybe<ConfluenceUpdateValueUserPropertyPayload>;
|
|
3539
3695
|
deleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
3540
3696
|
};
|
|
3541
3697
|
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
3542
|
-
cloudId: Scalars['ID'];
|
|
3543
3698
|
input: ConfluenceCreateBlogPostInput;
|
|
3544
3699
|
};
|
|
3545
|
-
export declare type
|
|
3546
|
-
input:
|
|
3700
|
+
export declare type ConfluenceMutationApiCreateBlogPostPropertyArgs = {
|
|
3701
|
+
input: ConfluenceCreateBlogPostPropertyInput;
|
|
3702
|
+
};
|
|
3703
|
+
export declare type ConfluenceMutationApiCreateFooterCommentOnBlogPostArgs = {
|
|
3704
|
+
input: ConfluenceCreateFooterCommentOnBlogPostInput;
|
|
3705
|
+
};
|
|
3706
|
+
export declare type ConfluenceMutationApiCreateFooterCommentOnPageArgs = {
|
|
3707
|
+
input: ConfluenceCreateFooterCommentOnPageInput;
|
|
3547
3708
|
};
|
|
3548
3709
|
export declare type ConfluenceMutationApiCreatePageArgs = {
|
|
3549
|
-
cloudId: Scalars['ID'];
|
|
3550
3710
|
input: ConfluenceCreatePageInput;
|
|
3551
3711
|
};
|
|
3712
|
+
export declare type ConfluenceMutationApiCreatePagePropertyArgs = {
|
|
3713
|
+
input: ConfluenceCreatePagePropertyInput;
|
|
3714
|
+
};
|
|
3552
3715
|
export declare type ConfluenceMutationApiCreateSpaceArgs = {
|
|
3553
3716
|
cloudId: Scalars['ID'];
|
|
3554
3717
|
input: ConfluenceCreateSpaceInput;
|
|
3555
3718
|
};
|
|
3719
|
+
export declare type ConfluenceMutationApiDeleteBlogPostPropertyArgs = {
|
|
3720
|
+
input: ConfluenceDeleteBlogPostPropertyInput;
|
|
3721
|
+
};
|
|
3556
3722
|
export declare type ConfluenceMutationApiDeleteCommentArgs = {
|
|
3557
3723
|
input: ConfluenceDeleteCommentInput;
|
|
3558
3724
|
};
|
|
@@ -3562,6 +3728,9 @@ export declare type ConfluenceMutationApiDeleteDraftBlogPostArgs = {
|
|
|
3562
3728
|
export declare type ConfluenceMutationApiDeleteDraftPageArgs = {
|
|
3563
3729
|
input: ConfluenceDeleteDraftPageInput;
|
|
3564
3730
|
};
|
|
3731
|
+
export declare type ConfluenceMutationApiDeletePagePropertyArgs = {
|
|
3732
|
+
input: ConfluenceDeletePagePropertyInput;
|
|
3733
|
+
};
|
|
3565
3734
|
export declare type ConfluenceMutationApiPublishBlogPostArgs = {
|
|
3566
3735
|
input: ConfluencePublishBlogPostInput;
|
|
3567
3736
|
};
|
|
@@ -3574,9 +3743,15 @@ export declare type ConfluenceMutationApiPurgeBlogPostArgs = {
|
|
|
3574
3743
|
export declare type ConfluenceMutationApiPurgePageArgs = {
|
|
3575
3744
|
input: ConfluencePurgePageInput;
|
|
3576
3745
|
};
|
|
3746
|
+
export declare type ConfluenceMutationApiReopenInlineCommentArgs = {
|
|
3747
|
+
input: ConfluenceReopenInlineCommentInput;
|
|
3748
|
+
};
|
|
3577
3749
|
export declare type ConfluenceMutationApiReplyToCommentArgs = {
|
|
3578
3750
|
input: ConfluenceReplyToCommentInput;
|
|
3579
3751
|
};
|
|
3752
|
+
export declare type ConfluenceMutationApiResolveInlineCommentArgs = {
|
|
3753
|
+
input: ConfluenceResolveInlineCommentInput;
|
|
3754
|
+
};
|
|
3580
3755
|
export declare type ConfluenceMutationApiTrashBlogPostArgs = {
|
|
3581
3756
|
input: ConfluenceTrashBlogPostInput;
|
|
3582
3757
|
};
|
|
@@ -3601,6 +3776,12 @@ export declare type ConfluenceMutationApiUpdateDraftPageArgs = {
|
|
|
3601
3776
|
export declare type ConfluenceMutationApiUpdateSpaceArgs = {
|
|
3602
3777
|
input: ConfluenceUpdateSpaceInput;
|
|
3603
3778
|
};
|
|
3779
|
+
export declare type ConfluenceMutationApiUpdateValueBlogPostPropertyArgs = {
|
|
3780
|
+
input: ConfluenceUpdateValueBlogPostPropertyInput;
|
|
3781
|
+
};
|
|
3782
|
+
export declare type ConfluenceMutationApiUpdateValuePagePropertyArgs = {
|
|
3783
|
+
input: ConfluenceUpdateValuePagePropertyInput;
|
|
3784
|
+
};
|
|
3604
3785
|
export declare type ConfluenceMutationApiCreateUserPropertyArgs = {
|
|
3605
3786
|
cloudId: Scalars['String'];
|
|
3606
3787
|
input: ConfluenceCreateUserPropertyInput;
|
|
@@ -3649,6 +3830,8 @@ export declare enum ConfluenceOperationTarget {
|
|
|
3649
3830
|
export declare type ConfluencePage = {
|
|
3650
3831
|
__typename?: 'ConfluencePage';
|
|
3651
3832
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3833
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3834
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3652
3835
|
id: Scalars['ID'];
|
|
3653
3836
|
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
3654
3837
|
links?: Maybe<ConfluencePageLinks>;
|
|
@@ -3661,6 +3844,9 @@ export declare type ConfluencePage = {
|
|
|
3661
3844
|
type?: Maybe<ConfluenceContentType>;
|
|
3662
3845
|
viewer?: Maybe<ConfluencePageViewerSummary>;
|
|
3663
3846
|
};
|
|
3847
|
+
export declare type ConfluencePageCommentsArgs = {
|
|
3848
|
+
commentType?: Maybe<ConfluenceCommentType>;
|
|
3849
|
+
};
|
|
3664
3850
|
export declare type ConfluencePagePropertiesArgs = {
|
|
3665
3851
|
keys: Array<Maybe<Scalars['String']>>;
|
|
3666
3852
|
};
|
|
@@ -3690,13 +3876,13 @@ export declare enum ConfluencePageStatus {
|
|
|
3690
3876
|
export declare type ConfluencePageVersion = {
|
|
3691
3877
|
__typename?: 'ConfluencePageVersion';
|
|
3692
3878
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3693
|
-
createdAt?: Maybe<Scalars['
|
|
3879
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
3694
3880
|
number?: Maybe<Scalars['Int']>;
|
|
3695
3881
|
};
|
|
3696
3882
|
export declare type ConfluencePageViewerSummary = {
|
|
3697
3883
|
__typename?: 'ConfluencePageViewerSummary';
|
|
3698
3884
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3699
|
-
lastSeenAt?: Maybe<Scalars['
|
|
3885
|
+
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
3700
3886
|
};
|
|
3701
3887
|
export declare type ConfluencePublishBlogPostInput = {
|
|
3702
3888
|
id: Scalars['ID'];
|
|
@@ -3788,6 +3974,15 @@ export declare type ConfluenceQueryApiUserPropertyArgs = {
|
|
|
3788
3974
|
export declare type ConfluenceQueryApiUserPropertiesArgs = {
|
|
3789
3975
|
ids: Array<Scalars['ID']>;
|
|
3790
3976
|
};
|
|
3977
|
+
export declare type ConfluenceReopenInlineCommentInput = {
|
|
3978
|
+
id: Scalars['ID'];
|
|
3979
|
+
};
|
|
3980
|
+
export declare type ConfluenceReopenInlineCommentPayload = {
|
|
3981
|
+
__typename?: 'ConfluenceReopenInlineCommentPayload';
|
|
3982
|
+
comment?: Maybe<ConfluenceInlineComment>;
|
|
3983
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3984
|
+
success: Scalars['Boolean'];
|
|
3985
|
+
};
|
|
3791
3986
|
export declare type ConfluenceReplyToCommentInput = {
|
|
3792
3987
|
body: ConfluenceContentBodyInput;
|
|
3793
3988
|
parentCommentId: Scalars['ID'];
|
|
@@ -3798,6 +3993,15 @@ export declare type ConfluenceReplyToCommentPayload = {
|
|
|
3798
3993
|
errors?: Maybe<Array<MutationError>>;
|
|
3799
3994
|
success: Scalars['Boolean'];
|
|
3800
3995
|
};
|
|
3996
|
+
export declare type ConfluenceResolveInlineCommentInput = {
|
|
3997
|
+
id: Scalars['ID'];
|
|
3998
|
+
};
|
|
3999
|
+
export declare type ConfluenceResolveInlineCommentPayload = {
|
|
4000
|
+
__typename?: 'ConfluenceResolveInlineCommentPayload';
|
|
4001
|
+
comment?: Maybe<ConfluenceInlineComment>;
|
|
4002
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4003
|
+
success: Scalars['Boolean'];
|
|
4004
|
+
};
|
|
3801
4005
|
export declare type ConfluenceSpace = {
|
|
3802
4006
|
__typename?: 'ConfluenceSpace';
|
|
3803
4007
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
@@ -3943,6 +4147,28 @@ export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
|
3943
4147
|
errors?: Maybe<Array<MutationError>>;
|
|
3944
4148
|
success: Scalars['Boolean'];
|
|
3945
4149
|
};
|
|
4150
|
+
export declare type ConfluenceUpdateValueBlogPostPropertyInput = {
|
|
4151
|
+
blogPostId: Scalars['ID'];
|
|
4152
|
+
key: Scalars['String'];
|
|
4153
|
+
value: Scalars['String'];
|
|
4154
|
+
};
|
|
4155
|
+
export declare type ConfluenceUpdateValueBlogPostPropertyPayload = Payload & {
|
|
4156
|
+
__typename?: 'ConfluenceUpdateValueBlogPostPropertyPayload';
|
|
4157
|
+
blogPostProperty?: Maybe<ConfluenceBlogPostProperty>;
|
|
4158
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4159
|
+
success: Scalars['Boolean'];
|
|
4160
|
+
};
|
|
4161
|
+
export declare type ConfluenceUpdateValuePagePropertyInput = {
|
|
4162
|
+
key: Scalars['String'];
|
|
4163
|
+
pageId: Scalars['ID'];
|
|
4164
|
+
value: Scalars['String'];
|
|
4165
|
+
};
|
|
4166
|
+
export declare type ConfluenceUpdateValuePagePropertyPayload = Payload & {
|
|
4167
|
+
__typename?: 'ConfluenceUpdateValuePagePropertyPayload';
|
|
4168
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4169
|
+
pageProperty?: Maybe<ConfluencePageProperty>;
|
|
4170
|
+
success: Scalars['Boolean'];
|
|
4171
|
+
};
|
|
3946
4172
|
export declare type ConfluenceUpdateValueUserPropertyInput = {
|
|
3947
4173
|
id: Scalars['ID'];
|
|
3948
4174
|
value: Scalars['String'];
|
|
@@ -3956,7 +4182,6 @@ export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
|
3956
4182
|
export declare type ConfluenceUserInfo = {
|
|
3957
4183
|
__typename?: 'ConfluenceUserInfo';
|
|
3958
4184
|
user?: Maybe<User>;
|
|
3959
|
-
personalSpace?: Maybe<ConfluenceSpace>;
|
|
3960
4185
|
};
|
|
3961
4186
|
export declare type ConfluenceUserProperty = {
|
|
3962
4187
|
__typename?: 'ConfluenceUserProperty';
|
|
@@ -4962,7 +5187,6 @@ export declare type DeleteEventSourceInput = {
|
|
|
4962
5187
|
cloudId: Scalars['ID'];
|
|
4963
5188
|
externalEventSourceId: Scalars['ID'];
|
|
4964
5189
|
eventType: CompassEventType;
|
|
4965
|
-
deleteIfAttachedToComponents?: Maybe<Scalars['Boolean']>;
|
|
4966
5190
|
};
|
|
4967
5191
|
export declare type DeleteEventSourcePayload = Payload & {
|
|
4968
5192
|
__typename?: 'DeleteEventSourcePayload';
|
|
@@ -5594,11 +5818,12 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
5594
5818
|
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5595
5819
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
5596
5820
|
};
|
|
5597
|
-
export declare type DevOpsThirdPartyRepository = {
|
|
5821
|
+
export declare type DevOpsThirdPartyRepository = CodeRepository & {
|
|
5598
5822
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
5599
5823
|
id: Scalars['ID'];
|
|
5600
5824
|
webUrl?: Maybe<Scalars['URL']>;
|
|
5601
|
-
|
|
5825
|
+
href?: Maybe<Scalars['URL']>;
|
|
5826
|
+
name: Scalars['String'];
|
|
5602
5827
|
avatar?: Maybe<DevOpsAvatar>;
|
|
5603
5828
|
};
|
|
5604
5829
|
export declare type DevOpsTool = Node & {
|
|
@@ -5824,6 +6049,7 @@ export declare type DevOpsToolSort = {
|
|
|
5824
6049
|
name?: Maybe<DevOpsToolSortOrder>;
|
|
5825
6050
|
supportsContainers?: Maybe<DevOpsToolSortOrder>;
|
|
5826
6051
|
integration?: Maybe<DevOpsToolSortOrder>;
|
|
6052
|
+
recommended?: Maybe<DevOpsToolSortOrder>;
|
|
5827
6053
|
};
|
|
5828
6054
|
export declare enum DevOpsToolSortOrder {
|
|
5829
6055
|
Asc = "ASC",
|
|
@@ -5940,6 +6166,7 @@ export declare type EcosystemMutation = {
|
|
|
5940
6166
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
5941
6167
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
5942
6168
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
6169
|
+
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
5943
6170
|
};
|
|
5944
6171
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
5945
6172
|
input: UpdateAppHostServiceScopesInput;
|
|
@@ -5950,6 +6177,9 @@ export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
|
5950
6177
|
export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
5951
6178
|
input: UpdateUserInstallationRulesInput;
|
|
5952
6179
|
};
|
|
6180
|
+
export declare type EcosystemMutationForgeAlertsArgs = {
|
|
6181
|
+
appId: Scalars['ID'];
|
|
6182
|
+
};
|
|
5953
6183
|
export declare type EcosystemQuery = {
|
|
5954
6184
|
__typename?: 'EcosystemQuery';
|
|
5955
6185
|
userGrants?: Maybe<UserGrantConnection>;
|
|
@@ -5959,6 +6189,7 @@ export declare type EcosystemQuery = {
|
|
|
5959
6189
|
marketplaceAppsByCurrentUserPartnerContactPermissions: Array<FortifiedMarketplaceApp>;
|
|
5960
6190
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
5961
6191
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
6192
|
+
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
5962
6193
|
};
|
|
5963
6194
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
5964
6195
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -5984,6 +6215,9 @@ export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
|
5984
6215
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
5985
6216
|
appId: Scalars['ID'];
|
|
5986
6217
|
};
|
|
6218
|
+
export declare type EcosystemQueryForgeAlertsArgs = {
|
|
6219
|
+
appId: Scalars['ID'];
|
|
6220
|
+
};
|
|
5987
6221
|
export declare type EditSprintInput = {
|
|
5988
6222
|
boardId: Scalars['ID'];
|
|
5989
6223
|
sprintId: Scalars['ID'];
|
|
@@ -6106,6 +6340,74 @@ export declare type FilterQuery = {
|
|
|
6106
6340
|
sanitisedJql: Scalars['String'];
|
|
6107
6341
|
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
6108
6342
|
};
|
|
6343
|
+
export declare type ForgeAlertsConfigData = {
|
|
6344
|
+
__typename?: 'ForgeAlertsConfigData';
|
|
6345
|
+
alertName: Scalars['String'];
|
|
6346
|
+
description?: Maybe<Scalars['String']>;
|
|
6347
|
+
environment: Scalars['String'];
|
|
6348
|
+
isMuted: Scalars['Boolean'];
|
|
6349
|
+
lastTriggeredAt?: Maybe<Scalars['Int']>;
|
|
6350
|
+
metricName: Scalars['String'];
|
|
6351
|
+
status: ForgeAlertsStatus;
|
|
6352
|
+
triggerValue: Scalars['Float'];
|
|
6353
|
+
};
|
|
6354
|
+
export declare type ForgeAlertsConfigQueryInput = {
|
|
6355
|
+
environment: Scalars['String'];
|
|
6356
|
+
};
|
|
6357
|
+
export declare type ForgeAlertsConfigResult = ForgeAlertsConfigData | QueryError;
|
|
6358
|
+
export declare type ForgeAlertsCreateAlertPayload = Payload & {
|
|
6359
|
+
__typename?: 'ForgeAlertsCreateAlertPayload';
|
|
6360
|
+
alertConfig?: Maybe<ForgeAlertsConfigData>;
|
|
6361
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6362
|
+
success: Scalars['Boolean'];
|
|
6363
|
+
};
|
|
6364
|
+
export declare type ForgeAlertsCreateConfigInput = {
|
|
6365
|
+
alertName?: Maybe<Scalars['String']>;
|
|
6366
|
+
description?: Maybe<Scalars['String']>;
|
|
6367
|
+
environment: Scalars['String'];
|
|
6368
|
+
isMuted?: Maybe<Scalars['Boolean']>;
|
|
6369
|
+
metricName?: Maybe<Scalars['String']>;
|
|
6370
|
+
triggerValue?: Maybe<Scalars['Float']>;
|
|
6371
|
+
};
|
|
6372
|
+
export declare type ForgeAlertsMutation = {
|
|
6373
|
+
__typename?: 'ForgeAlertsMutation';
|
|
6374
|
+
appId: Scalars['ID'];
|
|
6375
|
+
createAlertConfig?: Maybe<ForgeAlertsCreateAlertPayload>;
|
|
6376
|
+
modifyAlertConfig?: Maybe<ForgeAlertsUpdateAlertPayload>;
|
|
6377
|
+
updateAlertConfig?: Maybe<ForgeAlertsConfigResult>;
|
|
6378
|
+
};
|
|
6379
|
+
export declare type ForgeAlertsMutationCreateAlertConfigArgs = {
|
|
6380
|
+
input: ForgeAlertsCreateConfigInput;
|
|
6381
|
+
};
|
|
6382
|
+
export declare type ForgeAlertsMutationModifyAlertConfigArgs = {
|
|
6383
|
+
input: ForgeAlertsUpdateConfigInput;
|
|
6384
|
+
};
|
|
6385
|
+
export declare type ForgeAlertsMutationUpdateAlertConfigArgs = {
|
|
6386
|
+
input: ForgeAlertsUpdateConfigInput;
|
|
6387
|
+
};
|
|
6388
|
+
export declare type ForgeAlertsQuery = {
|
|
6389
|
+
__typename?: 'ForgeAlertsQuery';
|
|
6390
|
+
alertConfig?: Maybe<ForgeAlertsConfigResult>;
|
|
6391
|
+
appId: Scalars['ID'];
|
|
6392
|
+
};
|
|
6393
|
+
export declare type ForgeAlertsQueryAlertConfigArgs = {
|
|
6394
|
+
input: ForgeAlertsConfigQueryInput;
|
|
6395
|
+
};
|
|
6396
|
+
export declare enum ForgeAlertsStatus {
|
|
6397
|
+
Firing = "FIRING",
|
|
6398
|
+
Resolved = "RESOLVED"
|
|
6399
|
+
}
|
|
6400
|
+
export declare type ForgeAlertsUpdateAlertPayload = Payload & {
|
|
6401
|
+
__typename?: 'ForgeAlertsUpdateAlertPayload';
|
|
6402
|
+
alertConfig?: Maybe<ForgeAlertsConfigData>;
|
|
6403
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6404
|
+
success: Scalars['Boolean'];
|
|
6405
|
+
};
|
|
6406
|
+
export declare type ForgeAlertsUpdateConfigInput = {
|
|
6407
|
+
description?: Maybe<Scalars['String']>;
|
|
6408
|
+
environment: Scalars['String'];
|
|
6409
|
+
isMuted?: Maybe<Scalars['Boolean']>;
|
|
6410
|
+
};
|
|
6109
6411
|
export declare type ForgeContextToken = {
|
|
6110
6412
|
__typename?: 'ForgeContextToken';
|
|
6111
6413
|
jwt: Scalars['String'];
|
|
@@ -6115,7 +6417,6 @@ export declare type ForgeMetricsData = {
|
|
|
6115
6417
|
name: Scalars['String'];
|
|
6116
6418
|
type: ForgeMetricsDataType;
|
|
6117
6419
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
6118
|
-
resolution: ForgeMetricsResolution;
|
|
6119
6420
|
};
|
|
6120
6421
|
export declare enum ForgeMetricsDataType {
|
|
6121
6422
|
DateTime = "DATE_TIME",
|
|
@@ -6141,11 +6442,19 @@ export declare type ForgeMetricsErrorsSeries = ForgeMetricsSeries & {
|
|
|
6141
6442
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
6142
6443
|
data: Array<ForgeMetricsErrorsDataPoint>;
|
|
6143
6444
|
};
|
|
6445
|
+
export declare type ForgeMetricsErrorsValueData = ForgeMetricsData & {
|
|
6446
|
+
__typename?: 'ForgeMetricsErrorsValueData';
|
|
6447
|
+
name: Scalars['String'];
|
|
6448
|
+
type: ForgeMetricsDataType;
|
|
6449
|
+
series: Array<ForgeMetricsErrorsSeries>;
|
|
6450
|
+
};
|
|
6451
|
+
export declare type ForgeMetricsErrorsValueResult = ForgeMetricsErrorsValueData | QueryError;
|
|
6144
6452
|
export declare enum ForgeMetricsGroupByDimensions {
|
|
6145
6453
|
UserTier = "USER_TIER",
|
|
6146
6454
|
EnvironmentId = "ENVIRONMENT_ID",
|
|
6147
6455
|
ErrorType = "ERROR_TYPE",
|
|
6148
|
-
Version = "VERSION"
|
|
6456
|
+
Version = "VERSION",
|
|
6457
|
+
ContextAri = "CONTEXT_ARI"
|
|
6149
6458
|
}
|
|
6150
6459
|
export declare type ForgeMetricsInstallationContext = {
|
|
6151
6460
|
__typename?: 'ForgeMetricsInstallationContext';
|
|
@@ -6180,6 +6489,13 @@ export declare type ForgeMetricsInvocationSeries = ForgeMetricsSeries & {
|
|
|
6180
6489
|
data: Array<ForgeMetricsInvocationDataPoint>;
|
|
6181
6490
|
};
|
|
6182
6491
|
export declare type ForgeMetricsInvocationsResult = ForgeMetricsInvocationData | QueryError;
|
|
6492
|
+
export declare type ForgeMetricsInvocationsValueData = ForgeMetricsData & {
|
|
6493
|
+
__typename?: 'ForgeMetricsInvocationsValueData';
|
|
6494
|
+
name: Scalars['String'];
|
|
6495
|
+
type: ForgeMetricsDataType;
|
|
6496
|
+
series: Array<ForgeMetricsInvocationSeries>;
|
|
6497
|
+
};
|
|
6498
|
+
export declare type ForgeMetricsInvocationsValueResult = ForgeMetricsInvocationsValueData | QueryError;
|
|
6183
6499
|
export declare type ForgeMetricsLabelGroup = {
|
|
6184
6500
|
__typename?: 'ForgeMetricsLabelGroup';
|
|
6185
6501
|
key: Scalars['String'];
|
|
@@ -6191,7 +6507,9 @@ export declare type ForgeMetricsQuery = {
|
|
|
6191
6507
|
successRate: ForgeMetricsSuccessRateResult;
|
|
6192
6508
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
6193
6509
|
invocations: ForgeMetricsInvocationsResult;
|
|
6510
|
+
invocationsValue: ForgeMetricsInvocationsValueResult;
|
|
6194
6511
|
errors: ForgeMetricsErrorsResult;
|
|
6512
|
+
errorsValue: ForgeMetricsErrorsValueResult;
|
|
6195
6513
|
sites: ForgeMetricsSitesResult;
|
|
6196
6514
|
};
|
|
6197
6515
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
@@ -6203,9 +6521,15 @@ export declare type ForgeMetricsQuerySuccessRateValueArgs = {
|
|
|
6203
6521
|
export declare type ForgeMetricsQueryInvocationsArgs = {
|
|
6204
6522
|
query: ForgeMetricsQueryInput;
|
|
6205
6523
|
};
|
|
6524
|
+
export declare type ForgeMetricsQueryInvocationsValueArgs = {
|
|
6525
|
+
query: ForgeMetricsQueryInput;
|
|
6526
|
+
};
|
|
6206
6527
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
6207
6528
|
query: ForgeMetricsQueryInput;
|
|
6208
6529
|
};
|
|
6530
|
+
export declare type ForgeMetricsQueryErrorsValueArgs = {
|
|
6531
|
+
query: ForgeMetricsQueryInput;
|
|
6532
|
+
};
|
|
6209
6533
|
export declare type ForgeMetricsQuerySitesArgs = {
|
|
6210
6534
|
query: ForgeMetricsQueryInput;
|
|
6211
6535
|
};
|
|
@@ -6271,7 +6595,6 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
6271
6595
|
name: Scalars['String'];
|
|
6272
6596
|
type: ForgeMetricsDataType;
|
|
6273
6597
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
6274
|
-
resolution: ForgeMetricsResolution;
|
|
6275
6598
|
};
|
|
6276
6599
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
6277
6600
|
export declare type FortifiedMarketplaceApp = {
|
|
@@ -6431,7 +6754,7 @@ export declare type HelpCenterCollectionItemsArgs = {
|
|
|
6431
6754
|
before?: Maybe<Scalars['String']>;
|
|
6432
6755
|
};
|
|
6433
6756
|
export declare type HelpCenterCollectionDeleteInput = {
|
|
6434
|
-
|
|
6757
|
+
productName: Scalars['String'];
|
|
6435
6758
|
collectionId: Scalars['ID'];
|
|
6436
6759
|
};
|
|
6437
6760
|
export declare type HelpCenterCollectionItem = {
|
|
@@ -6456,7 +6779,7 @@ export declare type HelpCenterCollectionItemInput = {
|
|
|
6456
6779
|
};
|
|
6457
6780
|
export declare type HelpCenterCollectionResult = HelpCenterCollection | QueryError;
|
|
6458
6781
|
export declare type HelpCenterCreateCollectionInput = {
|
|
6459
|
-
|
|
6782
|
+
productName: Scalars['String'];
|
|
6460
6783
|
items: Array<HelpCenterCollectionItemInput>;
|
|
6461
6784
|
name: Scalars['String'];
|
|
6462
6785
|
description?: Maybe<Scalars['String']>;
|
|
@@ -6518,7 +6841,7 @@ export declare type HelpCenterSuccessfullyDeletedUpdatedCollectionIds = {
|
|
|
6518
6841
|
collectionIds: Scalars['ID'];
|
|
6519
6842
|
};
|
|
6520
6843
|
export declare type HelpCenterUpdateCollectionInput = {
|
|
6521
|
-
|
|
6844
|
+
productName: Scalars['String'];
|
|
6522
6845
|
collectionId: Scalars['ID'];
|
|
6523
6846
|
items: Array<HelpCenterCollectionItemInput>;
|
|
6524
6847
|
name: Scalars['String'];
|
|
@@ -6526,7 +6849,7 @@ export declare type HelpCenterUpdateCollectionInput = {
|
|
|
6526
6849
|
properties?: Maybe<Scalars['JSON']>;
|
|
6527
6850
|
};
|
|
6528
6851
|
export declare type HelpCenterUpdateCollectionsOrderInput = {
|
|
6529
|
-
|
|
6852
|
+
productName: Scalars['String'];
|
|
6530
6853
|
collectionIds: Array<Scalars['ID']>;
|
|
6531
6854
|
};
|
|
6532
6855
|
export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
@@ -6537,6 +6860,7 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
6537
6860
|
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
6538
6861
|
__typename?: 'HelpObjectStoreArticle';
|
|
6539
6862
|
id: Scalars['ID'];
|
|
6863
|
+
ari: Scalars['ID'];
|
|
6540
6864
|
title?: Maybe<Scalars['String']>;
|
|
6541
6865
|
description?: Maybe<Scalars['String']>;
|
|
6542
6866
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6561,6 +6885,7 @@ export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
|
|
|
6561
6885
|
};
|
|
6562
6886
|
export declare type HelpObjectStoreHelpObject = {
|
|
6563
6887
|
id: Scalars['ID'];
|
|
6888
|
+
ari: Scalars['ID'];
|
|
6564
6889
|
title?: Maybe<Scalars['String']>;
|
|
6565
6890
|
description?: Maybe<Scalars['String']>;
|
|
6566
6891
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6598,13 +6923,14 @@ export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
6598
6923
|
};
|
|
6599
6924
|
export declare type HelpObjectStoreQueryError = {
|
|
6600
6925
|
__typename?: 'HelpObjectStoreQueryError';
|
|
6601
|
-
|
|
6926
|
+
ari: Scalars['ID'];
|
|
6602
6927
|
message?: Maybe<Scalars['String']>;
|
|
6603
6928
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
6604
6929
|
};
|
|
6605
6930
|
export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
|
|
6606
6931
|
__typename?: 'HelpObjectStoreRequestForm';
|
|
6607
6932
|
id: Scalars['ID'];
|
|
6933
|
+
ari: Scalars['ID'];
|
|
6608
6934
|
title?: Maybe<Scalars['String']>;
|
|
6609
6935
|
description?: Maybe<Scalars['String']>;
|
|
6610
6936
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6615,7 +6941,7 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
|
|
|
6615
6941
|
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | HelpObjectStoreQueryError;
|
|
6616
6942
|
export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
6617
6943
|
__typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
|
|
6618
|
-
|
|
6944
|
+
ari: Scalars['ID'];
|
|
6619
6945
|
entityId: Scalars['String'];
|
|
6620
6946
|
projectId: Scalars['String'];
|
|
6621
6947
|
};
|
|
@@ -7045,7 +7371,8 @@ export declare type JiraAddRelatedWorkToVersionPayload = Payload & {
|
|
|
7045
7371
|
};
|
|
7046
7372
|
export declare type JiraAffectedService = {
|
|
7047
7373
|
__typename?: 'JiraAffectedService';
|
|
7048
|
-
serviceId
|
|
7374
|
+
serviceId: Scalars['ID'];
|
|
7375
|
+
name?: Maybe<Scalars['String']>;
|
|
7049
7376
|
};
|
|
7050
7377
|
export declare type JiraAffectedServiceConnection = {
|
|
7051
7378
|
__typename?: 'JiraAffectedServiceConnection';
|
|
@@ -7233,6 +7560,12 @@ export declare type JiraAvatar = {
|
|
|
7233
7560
|
medium?: Maybe<Scalars['String']>;
|
|
7234
7561
|
large?: Maybe<Scalars['String']>;
|
|
7235
7562
|
};
|
|
7563
|
+
export declare type JiraBitbucketDevOpsProvider = JiraDevOpsProvider & {
|
|
7564
|
+
__typename?: 'JiraBitbucketDevOpsProvider';
|
|
7565
|
+
displayName?: Maybe<Scalars['String']>;
|
|
7566
|
+
webUrl?: Maybe<Scalars['URL']>;
|
|
7567
|
+
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
7568
|
+
};
|
|
7236
7569
|
export declare type JiraBooleanField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7237
7570
|
__typename?: 'JiraBooleanField';
|
|
7238
7571
|
id: Scalars['ID'];
|
|
@@ -7257,6 +7590,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
7257
7590
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7258
7591
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
7259
7592
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
7593
|
+
wasInsightRequestSuccessful?: Maybe<Scalars['Boolean']>;
|
|
7260
7594
|
isInsightAvailable?: Maybe<Scalars['Boolean']>;
|
|
7261
7595
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
7262
7596
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -7360,8 +7694,18 @@ export declare type JiraChildIssuesWithinLimitIssuesArgs = {
|
|
|
7360
7694
|
last?: Maybe<Scalars['Int']>;
|
|
7361
7695
|
before?: Maybe<Scalars['String']>;
|
|
7362
7696
|
};
|
|
7697
|
+
export declare type JiraClassicConnectDevOpsProvider = JiraDevOpsProvider & {
|
|
7698
|
+
__typename?: 'JiraClassicConnectDevOpsProvider';
|
|
7699
|
+
displayName?: Maybe<Scalars['String']>;
|
|
7700
|
+
webUrl?: Maybe<Scalars['URL']>;
|
|
7701
|
+
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
7702
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
7703
|
+
connectAppId?: Maybe<Scalars['ID']>;
|
|
7704
|
+
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
7705
|
+
};
|
|
7363
7706
|
export declare type JiraCmdbAttribute = {
|
|
7364
7707
|
__typename?: 'JiraCmdbAttribute';
|
|
7708
|
+
attributeId?: Maybe<Scalars['String']>;
|
|
7365
7709
|
objectTypeAttributeId?: Maybe<Scalars['String']>;
|
|
7366
7710
|
objectTypeAttribute?: Maybe<JiraCmdbObjectTypeAttribute>;
|
|
7367
7711
|
objectAttributeValues?: Maybe<JiraCmdbObjectAttributeValueConnection>;
|
|
@@ -7816,6 +8160,15 @@ export declare type JiraDevOpsBranchDetails = {
|
|
|
7816
8160
|
name?: Maybe<Scalars['String']>;
|
|
7817
8161
|
scmRepository?: Maybe<JiraScmRepository>;
|
|
7818
8162
|
};
|
|
8163
|
+
export declare enum JiraDevOpsCapability {
|
|
8164
|
+
Commit = "COMMIT",
|
|
8165
|
+
Branch = "BRANCH",
|
|
8166
|
+
PullRequest = "PULL_REQUEST",
|
|
8167
|
+
Build = "BUILD",
|
|
8168
|
+
Deployment = "DEPLOYMENT",
|
|
8169
|
+
FeatureFlag = "FEATURE_FLAG",
|
|
8170
|
+
Review = "REVIEW"
|
|
8171
|
+
}
|
|
7819
8172
|
export declare type JiraDevOpsCommitDetails = {
|
|
7820
8173
|
__typename?: 'JiraDevOpsCommitDetails';
|
|
7821
8174
|
providerCommitId?: Maybe<Scalars['String']>;
|
|
@@ -7858,6 +8211,11 @@ export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateA
|
|
|
7858
8211
|
export declare type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
7859
8212
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
7860
8213
|
};
|
|
8214
|
+
export declare type JiraDevOpsProvider = {
|
|
8215
|
+
displayName?: Maybe<Scalars['String']>;
|
|
8216
|
+
webUrl?: Maybe<Scalars['URL']>;
|
|
8217
|
+
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
8218
|
+
};
|
|
7861
8219
|
export declare type JiraDevOpsPullRequestDetails = {
|
|
7862
8220
|
__typename?: 'JiraDevOpsPullRequestDetails';
|
|
7863
8221
|
providerPullRequestId?: Maybe<Scalars['String']>;
|
|
@@ -7942,6 +8300,23 @@ export declare type JiraEstimate = {
|
|
|
7942
8300
|
__typename?: 'JiraEstimate';
|
|
7943
8301
|
timeInSeconds?: Maybe<Scalars['Long']>;
|
|
7944
8302
|
};
|
|
8303
|
+
export declare type JiraFavourite = JiraProject;
|
|
8304
|
+
export declare type JiraFavouriteConnection = {
|
|
8305
|
+
__typename?: 'JiraFavouriteConnection';
|
|
8306
|
+
edges?: Maybe<Array<Maybe<JiraFavouriteEdge>>>;
|
|
8307
|
+
pageInfo: PageInfo;
|
|
8308
|
+
};
|
|
8309
|
+
export declare type JiraFavouriteEdge = {
|
|
8310
|
+
__typename?: 'JiraFavouriteEdge';
|
|
8311
|
+
node?: Maybe<JiraFavourite>;
|
|
8312
|
+
cursor: Scalars['String'];
|
|
8313
|
+
};
|
|
8314
|
+
export declare type JiraFavouriteFilter = {
|
|
8315
|
+
type: JiraFavouriteType;
|
|
8316
|
+
};
|
|
8317
|
+
export declare enum JiraFavouriteType {
|
|
8318
|
+
Project = "PROJECT"
|
|
8319
|
+
}
|
|
7945
8320
|
export declare type JiraFieldConfig = {
|
|
7946
8321
|
__typename?: 'JiraFieldConfig';
|
|
7947
8322
|
isRequired?: Maybe<Scalars['Boolean']>;
|
|
@@ -8308,6 +8683,9 @@ export declare type JiraIssue = Node & {
|
|
|
8308
8683
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
8309
8684
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
8310
8685
|
errorRetrievingData?: Maybe<Scalars['Boolean']>;
|
|
8686
|
+
storyPointsField?: Maybe<JiraNumberField>;
|
|
8687
|
+
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
8688
|
+
screenId?: Maybe<Scalars['Long']>;
|
|
8311
8689
|
};
|
|
8312
8690
|
export declare type JiraIssueFieldsArgs = {
|
|
8313
8691
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9837,6 +10215,16 @@ export declare type JiraOAuthAppsUrlTemplate = {
|
|
|
9837
10215
|
export declare type JiraOAuthAppsUrlTemplateInput = {
|
|
9838
10216
|
urlTemplate: Scalars['String'];
|
|
9839
10217
|
};
|
|
10218
|
+
export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
|
|
10219
|
+
__typename?: 'JiraOAuthDevOpsProvider';
|
|
10220
|
+
displayName?: Maybe<Scalars['String']>;
|
|
10221
|
+
webUrl?: Maybe<Scalars['URL']>;
|
|
10222
|
+
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
10223
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
10224
|
+
oauthAppId?: Maybe<Scalars['ID']>;
|
|
10225
|
+
marketplaceAppKey?: Maybe<Scalars['String']>;
|
|
10226
|
+
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
10227
|
+
};
|
|
9840
10228
|
export declare type JiraOption = Node & {
|
|
9841
10229
|
__typename?: 'JiraOption';
|
|
9842
10230
|
id: Scalars['ID'];
|
|
@@ -9900,10 +10288,16 @@ export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFiel
|
|
|
9900
10288
|
name: Scalars['String'];
|
|
9901
10289
|
description?: Maybe<Scalars['String']>;
|
|
9902
10290
|
parentIssue?: Maybe<JiraIssue>;
|
|
10291
|
+
parentVisibility?: Maybe<JiraParentVisibility>;
|
|
9903
10292
|
searchUrl?: Maybe<Scalars['String']>;
|
|
9904
10293
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9905
10294
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9906
10295
|
};
|
|
10296
|
+
export declare type JiraParentVisibility = {
|
|
10297
|
+
__typename?: 'JiraParentVisibility';
|
|
10298
|
+
hasEpicLinkFieldDependency?: Maybe<Scalars['Boolean']>;
|
|
10299
|
+
canUseParentLinkField?: Maybe<Scalars['Boolean']>;
|
|
10300
|
+
};
|
|
9907
10301
|
export declare type JiraPeopleField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9908
10302
|
__typename?: 'JiraPeopleField';
|
|
9909
10303
|
id: Scalars['ID'];
|
|
@@ -10152,17 +10546,18 @@ export declare type JiraProject = Node & {
|
|
|
10152
10546
|
status?: Maybe<JiraProjectStatus>;
|
|
10153
10547
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
10154
10548
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
10549
|
+
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
10155
10550
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
10156
|
-
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
10157
10551
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
10158
10552
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
10159
10553
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
10160
10554
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
10161
10555
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
10556
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
10162
10557
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
10163
10558
|
};
|
|
10164
10559
|
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
10165
|
-
|
|
10560
|
+
first?: Maybe<Scalars['Int']>;
|
|
10166
10561
|
after?: Maybe<Scalars['String']>;
|
|
10167
10562
|
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
10168
10563
|
};
|
|
@@ -10403,6 +10798,7 @@ export declare type JiraProjectFilterInput = {
|
|
|
10403
10798
|
keyword?: Maybe<Scalars['String']>;
|
|
10404
10799
|
sortBy?: Maybe<JiraProjectSortInput>;
|
|
10405
10800
|
};
|
|
10801
|
+
export declare type JiraProjectNavigationMetadata = JiraSoftwareProjectNavigationMetadata | JiraServiceManagementProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
10406
10802
|
export declare type JiraProjectPermission = {
|
|
10407
10803
|
__typename?: 'JiraProjectPermission';
|
|
10408
10804
|
key: Scalars['String'];
|
|
@@ -10472,9 +10868,11 @@ export declare type JiraQuery = {
|
|
|
10472
10868
|
filter?: Maybe<JiraFilter>;
|
|
10473
10869
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
10474
10870
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
10871
|
+
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
10475
10872
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
10476
10873
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
10477
10874
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
10875
|
+
favourites?: Maybe<JiraFavouriteConnection>;
|
|
10478
10876
|
issueByKey?: Maybe<JiraIssue>;
|
|
10479
10877
|
issueById?: Maybe<JiraIssue>;
|
|
10480
10878
|
issue?: Maybe<JiraIssue>;
|
|
@@ -10503,6 +10901,7 @@ export declare type JiraQuery = {
|
|
|
10503
10901
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
10504
10902
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
10505
10903
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10904
|
+
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10506
10905
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
10507
10906
|
};
|
|
10508
10907
|
export declare type JiraQueryJiraProjectArgs = {
|
|
@@ -10541,6 +10940,10 @@ export declare type JiraQuerySystemFiltersArgs = {
|
|
|
10541
10940
|
last?: Maybe<Scalars['Int']>;
|
|
10542
10941
|
before?: Maybe<Scalars['String']>;
|
|
10543
10942
|
};
|
|
10943
|
+
export declare type JiraQueryDevOpsProvidersArgs = {
|
|
10944
|
+
cloudId: Scalars['ID'];
|
|
10945
|
+
filter?: Maybe<Array<JiraDevOpsCapability>>;
|
|
10946
|
+
};
|
|
10544
10947
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
10545
10948
|
cloudId: Scalars['ID'];
|
|
10546
10949
|
keys: Array<Scalars['String']>;
|
|
@@ -10551,6 +10954,14 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
10551
10954
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
10552
10955
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
10553
10956
|
};
|
|
10957
|
+
export declare type JiraQueryFavouritesArgs = {
|
|
10958
|
+
cloudId: Scalars['ID'];
|
|
10959
|
+
filter: JiraFavouriteFilter;
|
|
10960
|
+
first?: Maybe<Scalars['Int']>;
|
|
10961
|
+
after?: Maybe<Scalars['String']>;
|
|
10962
|
+
last?: Maybe<Scalars['Int']>;
|
|
10963
|
+
before?: Maybe<Scalars['String']>;
|
|
10964
|
+
};
|
|
10554
10965
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
10555
10966
|
key: Scalars['String'];
|
|
10556
10967
|
cloudId: Scalars['ID'];
|
|
@@ -10666,6 +11077,10 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
10666
11077
|
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
10667
11078
|
projectId: Scalars['ID'];
|
|
10668
11079
|
};
|
|
11080
|
+
export declare type JiraQueryDeploymentsFeaturePreconditionByProjectKeyArgs = {
|
|
11081
|
+
cloudId: Scalars['ID'];
|
|
11082
|
+
projectKey: Scalars['String'];
|
|
11083
|
+
};
|
|
10669
11084
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
10670
11085
|
projectId: Scalars['ID'];
|
|
10671
11086
|
};
|
|
@@ -10963,6 +11378,7 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
10963
11378
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
10964
11379
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
10965
11380
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
11381
|
+
approvalState?: Maybe<JiraServiceManagementApprovalState>;
|
|
10966
11382
|
};
|
|
10967
11383
|
export declare type JiraServiceManagementActiveApprovalApproversArgs = {
|
|
10968
11384
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -11023,6 +11439,10 @@ export declare type JiraServiceManagementApprovalFieldCompletedApprovalsConnecti
|
|
|
11023
11439
|
last?: Maybe<Scalars['Int']>;
|
|
11024
11440
|
before?: Maybe<Scalars['String']>;
|
|
11025
11441
|
};
|
|
11442
|
+
export declare enum JiraServiceManagementApprovalState {
|
|
11443
|
+
InsufficientApprovers = "INSUFFICIENT_APPROVERS",
|
|
11444
|
+
Ok = "OK"
|
|
11445
|
+
}
|
|
11026
11446
|
export declare type JiraServiceManagementApprovalStatus = {
|
|
11027
11447
|
__typename?: 'JiraServiceManagementApprovalStatus';
|
|
11028
11448
|
id?: Maybe<Scalars['String']>;
|
|
@@ -11309,6 +11729,11 @@ export declare enum JiraServiceManagementPractice {
|
|
|
11309
11729
|
ChangeManagement = "CHANGE_MANAGEMENT",
|
|
11310
11730
|
PostIncidentReview = "POST_INCIDENT_REVIEW"
|
|
11311
11731
|
}
|
|
11732
|
+
export declare type JiraServiceManagementProjectNavigationMetadata = {
|
|
11733
|
+
__typename?: 'JiraServiceManagementProjectNavigationMetadata';
|
|
11734
|
+
queueId: Scalars['ID'];
|
|
11735
|
+
queueName: Scalars['String'];
|
|
11736
|
+
};
|
|
11312
11737
|
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
11313
11738
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
11314
11739
|
id: Scalars['ID'];
|
|
@@ -11638,6 +12063,13 @@ export declare type JiraSingleVersionPickerFieldVersionsArgs = {
|
|
|
11638
12063
|
before?: Maybe<Scalars['String']>;
|
|
11639
12064
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
11640
12065
|
};
|
|
12066
|
+
export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
12067
|
+
__typename?: 'JiraSoftwareProjectNavigationMetadata';
|
|
12068
|
+
id: Scalars['ID'];
|
|
12069
|
+
boardId: Scalars['ID'];
|
|
12070
|
+
boardName: Scalars['String'];
|
|
12071
|
+
isSimpleBoard: Scalars['Boolean'];
|
|
12072
|
+
};
|
|
11641
12073
|
export declare type JiraSprint = Node & {
|
|
11642
12074
|
__typename?: 'JiraSprint';
|
|
11643
12075
|
id: Scalars['ID'];
|
|
@@ -11786,6 +12218,7 @@ export declare type JiraTeam = Node & {
|
|
|
11786
12218
|
description?: Maybe<Scalars['String']>;
|
|
11787
12219
|
avatar?: Maybe<JiraAvatar>;
|
|
11788
12220
|
members?: Maybe<JiraUserConnection>;
|
|
12221
|
+
isShared?: Maybe<Scalars['Boolean']>;
|
|
11789
12222
|
};
|
|
11790
12223
|
export declare type JiraTeamConnection = {
|
|
11791
12224
|
__typename?: 'JiraTeamConnection';
|
|
@@ -11938,6 +12371,7 @@ export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfigu
|
|
|
11938
12371
|
name: Scalars['String'];
|
|
11939
12372
|
description?: Maybe<Scalars['String']>;
|
|
11940
12373
|
url?: Maybe<Scalars['URL']>;
|
|
12374
|
+
urlValue?: Maybe<Scalars['String']>;
|
|
11941
12375
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
11942
12376
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
11943
12377
|
};
|
|
@@ -12162,6 +12596,10 @@ export declare type JiraWorkLogEdge = {
|
|
|
12162
12596
|
node?: Maybe<JiraWorklog>;
|
|
12163
12597
|
cursor: Scalars['String'];
|
|
12164
12598
|
};
|
|
12599
|
+
export declare type JiraWorkManagementProjectNavigationMetadata = {
|
|
12600
|
+
__typename?: 'JiraWorkManagementProjectNavigationMetadata';
|
|
12601
|
+
boardName: Scalars['String'];
|
|
12602
|
+
};
|
|
12165
12603
|
export declare type JiraWorklog = Node & {
|
|
12166
12604
|
__typename?: 'JiraWorklog';
|
|
12167
12605
|
id: Scalars['ID'];
|
|
@@ -12639,44 +13077,9 @@ export declare type Mutation = {
|
|
|
12639
13077
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
12640
13078
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
12641
13079
|
deleteDevOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload>;
|
|
12642
|
-
shepherd?: Maybe<ShepherdMutation>;
|
|
12643
|
-
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
12644
|
-
jsw?: Maybe<JswMutation>;
|
|
12645
|
-
createColumn?: Maybe<CreateColumnOutput>;
|
|
12646
|
-
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
12647
|
-
rankColumn?: Maybe<RankColumnOutput>;
|
|
12648
|
-
setColumnLimit?: Maybe<SetColumnLimitOutput>;
|
|
12649
|
-
deleteColumn?: Maybe<DeleteColumnOutput>;
|
|
12650
|
-
startSprint?: Maybe<SprintResponse>;
|
|
12651
|
-
createSprint?: Maybe<CreateSprintResponse>;
|
|
12652
|
-
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
12653
|
-
deleteSprint?: Maybe<MutationResponse>;
|
|
12654
|
-
moveSprintUp?: Maybe<MoveSprintUpResponse>;
|
|
12655
|
-
moveSprintDown?: Maybe<MoveSprintDownResponse>;
|
|
12656
|
-
editSprint?: Maybe<SprintResponse>;
|
|
12657
|
-
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
12658
|
-
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
12659
|
-
setEstimationType?: Maybe<GenericMutationResponse>;
|
|
12660
|
-
createCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
12661
|
-
updateCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
12662
|
-
deleteCustomFilter?: Maybe<GenericMutationResponse>;
|
|
12663
|
-
boardCardMove?: Maybe<MoveCardOutput>;
|
|
12664
|
-
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
12665
|
-
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
12666
|
-
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
12667
|
-
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
12668
|
-
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
12669
|
-
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
12670
|
-
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
12671
|
-
createApp?: Maybe<CreateAppResponse>;
|
|
12672
|
-
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
12673
|
-
deleteApp?: Maybe<DeleteAppResponse>;
|
|
12674
|
-
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
12675
|
-
ecosystem?: Maybe<EcosystemMutation>;
|
|
12676
13080
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
12677
13081
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
12678
13082
|
updateReleaseNote: ContentPlatformReleaseNote;
|
|
12679
|
-
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
12680
13083
|
devOps?: Maybe<DevOpsMutation>;
|
|
12681
13084
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
12682
13085
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -12696,16 +13099,6 @@ export declare type Mutation = {
|
|
|
12696
13099
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
12697
13100
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
12698
13101
|
jira?: Maybe<JiraMutation>;
|
|
12699
|
-
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
12700
|
-
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
12701
|
-
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
12702
|
-
createDevOpsServiceRelationship?: Maybe<CreateDevOpsServiceRelationshipPayload>;
|
|
12703
|
-
updateDevOpsServiceRelationship?: Maybe<UpdateDevOpsServiceRelationshipPayload>;
|
|
12704
|
-
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
12705
|
-
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
12706
|
-
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
12707
|
-
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
12708
|
-
roadmaps?: Maybe<RoadmapsMutation>;
|
|
12709
13102
|
appStorage?: Maybe<AppStorageMutation>;
|
|
12710
13103
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
12711
13104
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
@@ -12760,11 +13153,57 @@ export declare type Mutation = {
|
|
|
12760
13153
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
12761
13154
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
12762
13155
|
invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
|
|
12763
|
-
userAuthTokenForExtension
|
|
13156
|
+
userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
|
|
12764
13157
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
12765
13158
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
12766
13159
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
12767
13160
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
13161
|
+
compass?: Maybe<CompassCatalogMutationApi>;
|
|
13162
|
+
shepherd?: Maybe<ShepherdMutation>;
|
|
13163
|
+
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
13164
|
+
jsw?: Maybe<JswMutation>;
|
|
13165
|
+
createColumn?: Maybe<CreateColumnOutput>;
|
|
13166
|
+
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
13167
|
+
rankColumn?: Maybe<RankColumnOutput>;
|
|
13168
|
+
setColumnLimit?: Maybe<SetColumnLimitOutput>;
|
|
13169
|
+
deleteColumn?: Maybe<DeleteColumnOutput>;
|
|
13170
|
+
startSprint?: Maybe<SprintResponse>;
|
|
13171
|
+
createSprint?: Maybe<CreateSprintResponse>;
|
|
13172
|
+
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
13173
|
+
deleteSprint?: Maybe<MutationResponse>;
|
|
13174
|
+
moveSprintUp?: Maybe<MoveSprintUpResponse>;
|
|
13175
|
+
moveSprintDown?: Maybe<MoveSprintDownResponse>;
|
|
13176
|
+
editSprint?: Maybe<SprintResponse>;
|
|
13177
|
+
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
13178
|
+
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
13179
|
+
setEstimationType?: Maybe<GenericMutationResponse>;
|
|
13180
|
+
createCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
13181
|
+
updateCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
13182
|
+
deleteCustomFilter?: Maybe<GenericMutationResponse>;
|
|
13183
|
+
boardCardMove?: Maybe<MoveCardOutput>;
|
|
13184
|
+
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
13185
|
+
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
13186
|
+
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
13187
|
+
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
13188
|
+
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
13189
|
+
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
13190
|
+
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
13191
|
+
createApp?: Maybe<CreateAppResponse>;
|
|
13192
|
+
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
13193
|
+
deleteApp?: Maybe<DeleteAppResponse>;
|
|
13194
|
+
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
13195
|
+
ecosystem?: Maybe<EcosystemMutation>;
|
|
13196
|
+
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
13197
|
+
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
13198
|
+
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
13199
|
+
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
13200
|
+
createDevOpsServiceRelationship?: Maybe<CreateDevOpsServiceRelationshipPayload>;
|
|
13201
|
+
updateDevOpsServiceRelationship?: Maybe<UpdateDevOpsServiceRelationshipPayload>;
|
|
13202
|
+
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
13203
|
+
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
13204
|
+
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
13205
|
+
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
13206
|
+
roadmaps?: Maybe<RoadmapsMutation>;
|
|
12768
13207
|
installApp?: Maybe<AppInstallationResponse>;
|
|
12769
13208
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
12770
13209
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
@@ -12778,7 +13217,6 @@ export declare type Mutation = {
|
|
|
12778
13217
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
12779
13218
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
12780
13219
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
12781
|
-
compass?: Maybe<CompassCatalogMutationApi>;
|
|
12782
13220
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
12783
13221
|
};
|
|
12784
13222
|
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
@@ -12790,99 +13228,6 @@ export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
|
12790
13228
|
export declare type MutationDeleteDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
12791
13229
|
input: JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput;
|
|
12792
13230
|
};
|
|
12793
|
-
export declare type MutationHelpObjectStoreArgs = {
|
|
12794
|
-
cloudId: Scalars['ID'];
|
|
12795
|
-
};
|
|
12796
|
-
export declare type MutationCreateColumnArgs = {
|
|
12797
|
-
input?: Maybe<CreateColumnInput>;
|
|
12798
|
-
};
|
|
12799
|
-
export declare type MutationSetColumnNameArgs = {
|
|
12800
|
-
input?: Maybe<SetColumnNameInput>;
|
|
12801
|
-
};
|
|
12802
|
-
export declare type MutationRankColumnArgs = {
|
|
12803
|
-
input?: Maybe<RankColumnInput>;
|
|
12804
|
-
};
|
|
12805
|
-
export declare type MutationSetColumnLimitArgs = {
|
|
12806
|
-
input?: Maybe<SetColumnLimitInput>;
|
|
12807
|
-
};
|
|
12808
|
-
export declare type MutationDeleteColumnArgs = {
|
|
12809
|
-
input?: Maybe<DeleteColumnInput>;
|
|
12810
|
-
};
|
|
12811
|
-
export declare type MutationStartSprintArgs = {
|
|
12812
|
-
input?: Maybe<StartSprintInput>;
|
|
12813
|
-
};
|
|
12814
|
-
export declare type MutationCreateSprintArgs = {
|
|
12815
|
-
input?: Maybe<CreateSprintInput>;
|
|
12816
|
-
};
|
|
12817
|
-
export declare type MutationCompleteSprintArgs = {
|
|
12818
|
-
input?: Maybe<CompleteSprintInput>;
|
|
12819
|
-
};
|
|
12820
|
-
export declare type MutationDeleteSprintArgs = {
|
|
12821
|
-
input?: Maybe<DeleteSprintInput>;
|
|
12822
|
-
};
|
|
12823
|
-
export declare type MutationMoveSprintUpArgs = {
|
|
12824
|
-
input?: Maybe<MoveSprintUpInput>;
|
|
12825
|
-
};
|
|
12826
|
-
export declare type MutationMoveSprintDownArgs = {
|
|
12827
|
-
input?: Maybe<MoveSprintDownInput>;
|
|
12828
|
-
};
|
|
12829
|
-
export declare type MutationEditSprintArgs = {
|
|
12830
|
-
input?: Maybe<EditSprintInput>;
|
|
12831
|
-
};
|
|
12832
|
-
export declare type MutationSetUserSwimlaneStrategyArgs = {
|
|
12833
|
-
input?: Maybe<SetSwimlaneStrategyInput>;
|
|
12834
|
-
};
|
|
12835
|
-
export declare type MutationSetSwimlaneStrategyArgs = {
|
|
12836
|
-
input?: Maybe<SetSwimlaneStrategyInput>;
|
|
12837
|
-
};
|
|
12838
|
-
export declare type MutationSetEstimationTypeArgs = {
|
|
12839
|
-
input?: Maybe<SetEstimationTypeInput>;
|
|
12840
|
-
};
|
|
12841
|
-
export declare type MutationCreateCustomFilterArgs = {
|
|
12842
|
-
input?: Maybe<CreateCustomFilterInput>;
|
|
12843
|
-
};
|
|
12844
|
-
export declare type MutationUpdateCustomFilterArgs = {
|
|
12845
|
-
input?: Maybe<UpdateCustomFilterInput>;
|
|
12846
|
-
};
|
|
12847
|
-
export declare type MutationDeleteCustomFilterArgs = {
|
|
12848
|
-
input?: Maybe<DeleteCustomFilterInput>;
|
|
12849
|
-
};
|
|
12850
|
-
export declare type MutationBoardCardMoveArgs = {
|
|
12851
|
-
input?: Maybe<BoardCardMoveInput>;
|
|
12852
|
-
};
|
|
12853
|
-
export declare type MutationAssignIssueParentArgs = {
|
|
12854
|
-
input?: Maybe<AssignIssueParentInput>;
|
|
12855
|
-
};
|
|
12856
|
-
export declare type MutationUnassignIssueParentArgs = {
|
|
12857
|
-
input?: Maybe<UnassignIssueParentInput>;
|
|
12858
|
-
};
|
|
12859
|
-
export declare type MutationCreateCardParentArgs = {
|
|
12860
|
-
input: CardParentCreateInput;
|
|
12861
|
-
};
|
|
12862
|
-
export declare type MutationRankCardParentArgs = {
|
|
12863
|
-
input: CardParentRankInput;
|
|
12864
|
-
};
|
|
12865
|
-
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
12866
|
-
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
12867
|
-
};
|
|
12868
|
-
export declare type MutationToggleBoardFeatureArgs = {
|
|
12869
|
-
input?: Maybe<ToggleBoardFeatureInput>;
|
|
12870
|
-
};
|
|
12871
|
-
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
12872
|
-
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
12873
|
-
};
|
|
12874
|
-
export declare type MutationCreateAppArgs = {
|
|
12875
|
-
input: CreateAppInput;
|
|
12876
|
-
};
|
|
12877
|
-
export declare type MutationUpdateAppDetailsArgs = {
|
|
12878
|
-
input: UpdateAppDetailsInput;
|
|
12879
|
-
};
|
|
12880
|
-
export declare type MutationDeleteAppArgs = {
|
|
12881
|
-
input: DeleteAppInput;
|
|
12882
|
-
};
|
|
12883
|
-
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
12884
|
-
input: UpdateAtlassianOAuthClientInput;
|
|
12885
|
-
};
|
|
12886
13231
|
export declare type MutationCreateReleaseNoteArgs = {
|
|
12887
13232
|
changeStatus?: Maybe<Scalars['String']>;
|
|
12888
13233
|
title?: Maybe<Scalars['String']>;
|
|
@@ -12919,9 +13264,6 @@ export declare type MutationUpdateReleaseNoteArgs = {
|
|
|
12919
13264
|
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
12920
13265
|
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
12921
13266
|
};
|
|
12922
|
-
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
12923
|
-
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
12924
|
-
};
|
|
12925
13267
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
12926
13268
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
12927
13269
|
};
|
|
@@ -12973,33 +13315,6 @@ export declare type MutationUpdateJiraProjectAndRepositoryRelationshipArgs = {
|
|
|
12973
13315
|
export declare type MutationDeleteJiraProjectAndRepositoryRelationshipArgs = {
|
|
12974
13316
|
input: DeleteJiraProjectAndRepositoryRelationshipInput;
|
|
12975
13317
|
};
|
|
12976
|
-
export declare type MutationCreateDevOpsServiceArgs = {
|
|
12977
|
-
input: CreateDevOpsServiceInput;
|
|
12978
|
-
};
|
|
12979
|
-
export declare type MutationUpdateDevOpsServiceArgs = {
|
|
12980
|
-
input: UpdateDevOpsServiceInput;
|
|
12981
|
-
};
|
|
12982
|
-
export declare type MutationDeleteDevOpsServiceArgs = {
|
|
12983
|
-
input: DeleteDevOpsServiceInput;
|
|
12984
|
-
};
|
|
12985
|
-
export declare type MutationCreateDevOpsServiceRelationshipArgs = {
|
|
12986
|
-
input: CreateDevOpsServiceRelationshipInput;
|
|
12987
|
-
};
|
|
12988
|
-
export declare type MutationUpdateDevOpsServiceRelationshipArgs = {
|
|
12989
|
-
input: UpdateDevOpsServiceRelationshipInput;
|
|
12990
|
-
};
|
|
12991
|
-
export declare type MutationDeleteDevOpsServiceRelationshipArgs = {
|
|
12992
|
-
input: DeleteDevOpsServiceRelationshipInput;
|
|
12993
|
-
};
|
|
12994
|
-
export declare type MutationUpdateDevOpsServiceEntityPropertiesArgs = {
|
|
12995
|
-
input: UpdateDevOpsServiceEntityPropertiesInput;
|
|
12996
|
-
};
|
|
12997
|
-
export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
12998
|
-
input: DeleteDevOpsServiceEntityPropertiesInput;
|
|
12999
|
-
};
|
|
13000
|
-
export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
13001
|
-
input: UpdateDeveloperLogAccessInput;
|
|
13002
|
-
};
|
|
13003
13318
|
export declare type MutationUpdatePolarisTermsConsentArgs = {
|
|
13004
13319
|
input: UpdatePolarisTermsConsentInput;
|
|
13005
13320
|
};
|
|
@@ -13180,6 +13495,129 @@ export declare type MutationWatchMarketplaceAppArgs = {
|
|
|
13180
13495
|
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
13181
13496
|
id: Scalars['ID'];
|
|
13182
13497
|
};
|
|
13498
|
+
export declare type MutationHelpObjectStoreArgs = {
|
|
13499
|
+
cloudId: Scalars['ID'];
|
|
13500
|
+
};
|
|
13501
|
+
export declare type MutationCreateColumnArgs = {
|
|
13502
|
+
input?: Maybe<CreateColumnInput>;
|
|
13503
|
+
};
|
|
13504
|
+
export declare type MutationSetColumnNameArgs = {
|
|
13505
|
+
input?: Maybe<SetColumnNameInput>;
|
|
13506
|
+
};
|
|
13507
|
+
export declare type MutationRankColumnArgs = {
|
|
13508
|
+
input?: Maybe<RankColumnInput>;
|
|
13509
|
+
};
|
|
13510
|
+
export declare type MutationSetColumnLimitArgs = {
|
|
13511
|
+
input?: Maybe<SetColumnLimitInput>;
|
|
13512
|
+
};
|
|
13513
|
+
export declare type MutationDeleteColumnArgs = {
|
|
13514
|
+
input?: Maybe<DeleteColumnInput>;
|
|
13515
|
+
};
|
|
13516
|
+
export declare type MutationStartSprintArgs = {
|
|
13517
|
+
input?: Maybe<StartSprintInput>;
|
|
13518
|
+
};
|
|
13519
|
+
export declare type MutationCreateSprintArgs = {
|
|
13520
|
+
input?: Maybe<CreateSprintInput>;
|
|
13521
|
+
};
|
|
13522
|
+
export declare type MutationCompleteSprintArgs = {
|
|
13523
|
+
input?: Maybe<CompleteSprintInput>;
|
|
13524
|
+
};
|
|
13525
|
+
export declare type MutationDeleteSprintArgs = {
|
|
13526
|
+
input?: Maybe<DeleteSprintInput>;
|
|
13527
|
+
};
|
|
13528
|
+
export declare type MutationMoveSprintUpArgs = {
|
|
13529
|
+
input?: Maybe<MoveSprintUpInput>;
|
|
13530
|
+
};
|
|
13531
|
+
export declare type MutationMoveSprintDownArgs = {
|
|
13532
|
+
input?: Maybe<MoveSprintDownInput>;
|
|
13533
|
+
};
|
|
13534
|
+
export declare type MutationEditSprintArgs = {
|
|
13535
|
+
input?: Maybe<EditSprintInput>;
|
|
13536
|
+
};
|
|
13537
|
+
export declare type MutationSetUserSwimlaneStrategyArgs = {
|
|
13538
|
+
input?: Maybe<SetSwimlaneStrategyInput>;
|
|
13539
|
+
};
|
|
13540
|
+
export declare type MutationSetSwimlaneStrategyArgs = {
|
|
13541
|
+
input?: Maybe<SetSwimlaneStrategyInput>;
|
|
13542
|
+
};
|
|
13543
|
+
export declare type MutationSetEstimationTypeArgs = {
|
|
13544
|
+
input?: Maybe<SetEstimationTypeInput>;
|
|
13545
|
+
};
|
|
13546
|
+
export declare type MutationCreateCustomFilterArgs = {
|
|
13547
|
+
input?: Maybe<CreateCustomFilterInput>;
|
|
13548
|
+
};
|
|
13549
|
+
export declare type MutationUpdateCustomFilterArgs = {
|
|
13550
|
+
input?: Maybe<UpdateCustomFilterInput>;
|
|
13551
|
+
};
|
|
13552
|
+
export declare type MutationDeleteCustomFilterArgs = {
|
|
13553
|
+
input?: Maybe<DeleteCustomFilterInput>;
|
|
13554
|
+
};
|
|
13555
|
+
export declare type MutationBoardCardMoveArgs = {
|
|
13556
|
+
input?: Maybe<BoardCardMoveInput>;
|
|
13557
|
+
};
|
|
13558
|
+
export declare type MutationAssignIssueParentArgs = {
|
|
13559
|
+
input?: Maybe<AssignIssueParentInput>;
|
|
13560
|
+
};
|
|
13561
|
+
export declare type MutationUnassignIssueParentArgs = {
|
|
13562
|
+
input?: Maybe<UnassignIssueParentInput>;
|
|
13563
|
+
};
|
|
13564
|
+
export declare type MutationCreateCardParentArgs = {
|
|
13565
|
+
input: CardParentCreateInput;
|
|
13566
|
+
};
|
|
13567
|
+
export declare type MutationRankCardParentArgs = {
|
|
13568
|
+
input: CardParentRankInput;
|
|
13569
|
+
};
|
|
13570
|
+
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
13571
|
+
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
13572
|
+
};
|
|
13573
|
+
export declare type MutationToggleBoardFeatureArgs = {
|
|
13574
|
+
input?: Maybe<ToggleBoardFeatureInput>;
|
|
13575
|
+
};
|
|
13576
|
+
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
13577
|
+
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
13578
|
+
};
|
|
13579
|
+
export declare type MutationCreateAppArgs = {
|
|
13580
|
+
input: CreateAppInput;
|
|
13581
|
+
};
|
|
13582
|
+
export declare type MutationUpdateAppDetailsArgs = {
|
|
13583
|
+
input: UpdateAppDetailsInput;
|
|
13584
|
+
};
|
|
13585
|
+
export declare type MutationDeleteAppArgs = {
|
|
13586
|
+
input: DeleteAppInput;
|
|
13587
|
+
};
|
|
13588
|
+
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
13589
|
+
input: UpdateAtlassianOAuthClientInput;
|
|
13590
|
+
};
|
|
13591
|
+
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
13592
|
+
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
13593
|
+
};
|
|
13594
|
+
export declare type MutationCreateDevOpsServiceArgs = {
|
|
13595
|
+
input: CreateDevOpsServiceInput;
|
|
13596
|
+
};
|
|
13597
|
+
export declare type MutationUpdateDevOpsServiceArgs = {
|
|
13598
|
+
input: UpdateDevOpsServiceInput;
|
|
13599
|
+
};
|
|
13600
|
+
export declare type MutationDeleteDevOpsServiceArgs = {
|
|
13601
|
+
input: DeleteDevOpsServiceInput;
|
|
13602
|
+
};
|
|
13603
|
+
export declare type MutationCreateDevOpsServiceRelationshipArgs = {
|
|
13604
|
+
input: CreateDevOpsServiceRelationshipInput;
|
|
13605
|
+
};
|
|
13606
|
+
export declare type MutationUpdateDevOpsServiceRelationshipArgs = {
|
|
13607
|
+
input: UpdateDevOpsServiceRelationshipInput;
|
|
13608
|
+
};
|
|
13609
|
+
export declare type MutationDeleteDevOpsServiceRelationshipArgs = {
|
|
13610
|
+
input: DeleteDevOpsServiceRelationshipInput;
|
|
13611
|
+
};
|
|
13612
|
+
export declare type MutationUpdateDevOpsServiceEntityPropertiesArgs = {
|
|
13613
|
+
input: UpdateDevOpsServiceEntityPropertiesInput;
|
|
13614
|
+
};
|
|
13615
|
+
export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
13616
|
+
input: DeleteDevOpsServiceEntityPropertiesInput;
|
|
13617
|
+
};
|
|
13618
|
+
export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
13619
|
+
input: UpdateDeveloperLogAccessInput;
|
|
13620
|
+
};
|
|
13183
13621
|
export declare type MutationInstallAppArgs = {
|
|
13184
13622
|
input: AppInstallationInput;
|
|
13185
13623
|
};
|
|
@@ -14469,36 +14907,16 @@ export declare type ProjectAvatars = {
|
|
|
14469
14907
|
};
|
|
14470
14908
|
export declare type Query = {
|
|
14471
14909
|
__typename?: 'Query';
|
|
14472
|
-
echo?: Maybe<Scalars['String']>;
|
|
14473
|
-
diagnostics?: Maybe<Scalars['JSON']>;
|
|
14474
|
-
node?: Maybe<Node>;
|
|
14475
14910
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
14476
14911
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
14477
|
-
activities?: Maybe<Activities>;
|
|
14478
|
-
activity?: Maybe<Activity>;
|
|
14479
|
-
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
14480
|
-
shepherd?: Maybe<ShepherdQuery>;
|
|
14481
14912
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
14482
14913
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
14483
|
-
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
14484
|
-
jsw?: Maybe<JswQuery>;
|
|
14485
|
-
boardScope?: Maybe<BoardScope>;
|
|
14486
|
-
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
14487
|
-
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
14488
|
-
apps?: Maybe<AppConnection>;
|
|
14489
|
-
app?: Maybe<App>;
|
|
14490
|
-
appHostServices?: Maybe<Array<AppHostService>>;
|
|
14491
14914
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
14492
14915
|
releaseNote: ContentPlatformReleaseNote;
|
|
14493
14916
|
practicePages: ContentPlatformPracticePagesConnection;
|
|
14494
14917
|
practicePage: ContentPlatformPracticePage;
|
|
14495
14918
|
smarts?: Maybe<SmartsQueryApi>;
|
|
14496
|
-
devOpsTools?: Maybe<DevOpsTools>;
|
|
14497
|
-
search?: Maybe<SearchQueryApi>;
|
|
14498
14919
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
14499
|
-
me: AuthenticationContext;
|
|
14500
|
-
user?: Maybe<User>;
|
|
14501
|
-
users?: Maybe<Array<User>>;
|
|
14502
14920
|
devOps?: Maybe<DevOps>;
|
|
14503
14921
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
14504
14922
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -14517,20 +14935,8 @@ export declare type Query = {
|
|
|
14517
14935
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
14518
14936
|
codeInJira?: Maybe<CodeInJira>;
|
|
14519
14937
|
jira?: Maybe<JiraQuery>;
|
|
14520
|
-
devOpsService?: Maybe<DevOpsService>;
|
|
14521
|
-
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
14522
|
-
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
14523
|
-
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
14524
|
-
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
14525
|
-
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
14526
14938
|
avocado?: Maybe<Avocado>;
|
|
14527
|
-
appLogs?: Maybe<AppLogConnection>;
|
|
14528
|
-
appLogLines?: Maybe<AppLogLineConnection>;
|
|
14529
|
-
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
14530
|
-
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
14531
14939
|
team?: Maybe<TeamQuery>;
|
|
14532
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
14533
|
-
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
14534
14940
|
testing?: Maybe<Testing>;
|
|
14535
14941
|
movie?: Maybe<TestingMovie>;
|
|
14536
14942
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
@@ -14563,45 +14969,52 @@ export declare type Query = {
|
|
|
14563
14969
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
14564
14970
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
14565
14971
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
14972
|
+
compass?: Maybe<CompassCatalogQueryApi>;
|
|
14973
|
+
extensionsEcho?: Maybe<Scalars['String']>;
|
|
14974
|
+
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
14975
|
+
extensionByKey?: Maybe<Extension>;
|
|
14976
|
+
echo?: Maybe<Scalars['String']>;
|
|
14977
|
+
diagnostics?: Maybe<Scalars['JSON']>;
|
|
14978
|
+
node?: Maybe<Node>;
|
|
14979
|
+
activities?: Maybe<Activities>;
|
|
14980
|
+
activity?: Maybe<Activity>;
|
|
14981
|
+
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
14982
|
+
shepherd?: Maybe<ShepherdQuery>;
|
|
14983
|
+
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
14984
|
+
jsw?: Maybe<JswQuery>;
|
|
14985
|
+
boardScope?: Maybe<BoardScope>;
|
|
14986
|
+
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
14987
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
14988
|
+
apps?: Maybe<AppConnection>;
|
|
14989
|
+
app?: Maybe<App>;
|
|
14990
|
+
appHostServices?: Maybe<Array<AppHostService>>;
|
|
14991
|
+
devOpsTools?: Maybe<DevOpsTools>;
|
|
14992
|
+
search?: Maybe<SearchQueryApi>;
|
|
14993
|
+
me: AuthenticationContext;
|
|
14994
|
+
user?: Maybe<User>;
|
|
14995
|
+
users?: Maybe<Array<User>>;
|
|
14996
|
+
devOpsService?: Maybe<DevOpsService>;
|
|
14997
|
+
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
14998
|
+
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
14999
|
+
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
15000
|
+
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
15001
|
+
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
15002
|
+
appLogs?: Maybe<AppLogConnection>;
|
|
15003
|
+
appLogLines?: Maybe<AppLogLineConnection>;
|
|
15004
|
+
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
15005
|
+
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
15006
|
+
roadmaps?: Maybe<RoadmapsQuery>;
|
|
15007
|
+
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
14566
15008
|
jiraReleases?: Maybe<JiraReleases>;
|
|
14567
15009
|
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
14568
15010
|
ecosystem?: Maybe<EcosystemQuery>;
|
|
14569
15011
|
appDeployment?: Maybe<AppDeployment>;
|
|
14570
15012
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
14571
15013
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
14572
|
-
compass?: Maybe<CompassCatalogQueryApi>;
|
|
14573
|
-
extensionsEcho?: Maybe<Scalars['String']>;
|
|
14574
|
-
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
14575
|
-
extensionByKey?: Maybe<Extension>;
|
|
14576
|
-
};
|
|
14577
|
-
export declare type QueryNodeArgs = {
|
|
14578
|
-
id: Scalars['ID'];
|
|
14579
15014
|
};
|
|
14580
15015
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
14581
15016
|
id: Scalars['ID'];
|
|
14582
15017
|
};
|
|
14583
|
-
export declare type QueryBoardScopeArgs = {
|
|
14584
|
-
boardId: Scalars['ID'];
|
|
14585
|
-
};
|
|
14586
|
-
export declare type QueryDevelopmentInformationArgs = {
|
|
14587
|
-
issueId: Scalars['ID'];
|
|
14588
|
-
};
|
|
14589
|
-
export declare type QuerySoftwareBoardsArgs = {
|
|
14590
|
-
projectAri: Scalars['ID'];
|
|
14591
|
-
};
|
|
14592
|
-
export declare type QueryAppsArgs = {
|
|
14593
|
-
first?: Maybe<Scalars['Int']>;
|
|
14594
|
-
after?: Maybe<Scalars['String']>;
|
|
14595
|
-
last?: Maybe<Scalars['Int']>;
|
|
14596
|
-
before?: Maybe<Scalars['String']>;
|
|
14597
|
-
filter?: Maybe<AppsFilter>;
|
|
14598
|
-
};
|
|
14599
|
-
export declare type QueryAppArgs = {
|
|
14600
|
-
id: Scalars['ID'];
|
|
14601
|
-
};
|
|
14602
|
-
export declare type QueryAppHostServicesArgs = {
|
|
14603
|
-
filter?: Maybe<AppServicesFilter>;
|
|
14604
|
-
};
|
|
14605
15018
|
export declare type QueryReleaseNotesArgs = {
|
|
14606
15019
|
after?: Maybe<Scalars['String']>;
|
|
14607
15020
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14620,12 +15033,6 @@ export declare type QueryPracticePagesArgs = {
|
|
|
14620
15033
|
export declare type QueryPracticePageArgs = {
|
|
14621
15034
|
id: Scalars['String'];
|
|
14622
15035
|
};
|
|
14623
|
-
export declare type QueryUserArgs = {
|
|
14624
|
-
accountId: Scalars['ID'];
|
|
14625
|
-
};
|
|
14626
|
-
export declare type QueryUsersArgs = {
|
|
14627
|
-
accountIds: Array<Scalars['ID']>;
|
|
14628
|
-
};
|
|
14629
15036
|
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
14630
15037
|
id: Scalars['ID'];
|
|
14631
15038
|
cloudId: Scalars['ID'];
|
|
@@ -14703,56 +15110,6 @@ export declare type QueryJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
|
14703
15110
|
export declare type QueryCodeInJiraArgs = {
|
|
14704
15111
|
cloudId: Scalars['ID'];
|
|
14705
15112
|
};
|
|
14706
|
-
export declare type QueryDevOpsServiceArgs = {
|
|
14707
|
-
id: Scalars['ID'];
|
|
14708
|
-
};
|
|
14709
|
-
export declare type QueryDevOpsServiceTiersArgs = {
|
|
14710
|
-
cloudId: Scalars['String'];
|
|
14711
|
-
};
|
|
14712
|
-
export declare type QueryDevOpsServicesArgs = {
|
|
14713
|
-
cloudId: Scalars['String'];
|
|
14714
|
-
first?: Maybe<Scalars['Int']>;
|
|
14715
|
-
after?: Maybe<Scalars['String']>;
|
|
14716
|
-
filter?: Maybe<DevOpsServicesFilterInput>;
|
|
14717
|
-
};
|
|
14718
|
-
export declare type QueryDevOpsServicesByIdArgs = {
|
|
14719
|
-
ids: Array<Scalars['ID']>;
|
|
14720
|
-
};
|
|
14721
|
-
export declare type QueryDevOpsServiceRelationshipArgs = {
|
|
14722
|
-
id: Scalars['ID'];
|
|
14723
|
-
};
|
|
14724
|
-
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
14725
|
-
cloudId: Scalars['ID'];
|
|
14726
|
-
first?: Maybe<Scalars['Int']>;
|
|
14727
|
-
after?: Maybe<Scalars['String']>;
|
|
14728
|
-
nameFilter?: Maybe<Scalars['String']>;
|
|
14729
|
-
};
|
|
14730
|
-
export declare type QueryAppLogsArgs = {
|
|
14731
|
-
last?: Maybe<Scalars['Int']>;
|
|
14732
|
-
first?: Maybe<Scalars['Int']>;
|
|
14733
|
-
before?: Maybe<Scalars['String']>;
|
|
14734
|
-
after?: Maybe<Scalars['String']>;
|
|
14735
|
-
appId: Scalars['ID'];
|
|
14736
|
-
environmentId: Array<Scalars['ID']>;
|
|
14737
|
-
query?: Maybe<LogQueryInput>;
|
|
14738
|
-
};
|
|
14739
|
-
export declare type QueryAppLogLinesArgs = {
|
|
14740
|
-
first?: Maybe<Scalars['Int']>;
|
|
14741
|
-
after?: Maybe<Scalars['String']>;
|
|
14742
|
-
invocation: Scalars['ID'];
|
|
14743
|
-
};
|
|
14744
|
-
export declare type QueryDeveloperLogAccessArgs = {
|
|
14745
|
-
contextIds: Array<Scalars['ID']>;
|
|
14746
|
-
appId: Scalars['ID'];
|
|
14747
|
-
environmentType: AppEnvironmentType;
|
|
14748
|
-
};
|
|
14749
|
-
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
14750
|
-
appId: Scalars['ID'];
|
|
14751
|
-
};
|
|
14752
|
-
export declare type QueryTenantContextsArgs = {
|
|
14753
|
-
cloudIds?: Maybe<Array<Scalars['ID']>>;
|
|
14754
|
-
hostNames?: Maybe<Array<Scalars['String']>>;
|
|
14755
|
-
};
|
|
14756
15113
|
export declare type QueryMovieArgs = {
|
|
14757
15114
|
id: Scalars['ID'];
|
|
14758
15115
|
};
|
|
@@ -14852,17 +15209,6 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
14852
15209
|
hostingType: AtlassianProductHostingType;
|
|
14853
15210
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
14854
15211
|
};
|
|
14855
|
-
export declare type QueryAppInstallationTaskArgs = {
|
|
14856
|
-
id: Scalars['ID'];
|
|
14857
|
-
};
|
|
14858
|
-
export declare type QueryAppDeploymentArgs = {
|
|
14859
|
-
appId: Scalars['ID'];
|
|
14860
|
-
environmentKey: Scalars['String'];
|
|
14861
|
-
id: Scalars['ID'];
|
|
14862
|
-
};
|
|
14863
|
-
export declare type QueryHelpCenterArgs = {
|
|
14864
|
-
cloudId: Scalars['ID'];
|
|
14865
|
-
};
|
|
14866
15212
|
export declare type QueryExtensionsEchoArgs = {
|
|
14867
15213
|
text: Scalars['String'];
|
|
14868
15214
|
};
|
|
@@ -14874,6 +15220,98 @@ export declare type QueryExtensionByKeyArgs = {
|
|
|
14874
15220
|
definitionId: Scalars['ID'];
|
|
14875
15221
|
extensionKey: Scalars['String'];
|
|
14876
15222
|
};
|
|
15223
|
+
export declare type QueryNodeArgs = {
|
|
15224
|
+
id: Scalars['ID'];
|
|
15225
|
+
};
|
|
15226
|
+
export declare type QueryBoardScopeArgs = {
|
|
15227
|
+
boardId: Scalars['ID'];
|
|
15228
|
+
};
|
|
15229
|
+
export declare type QueryDevelopmentInformationArgs = {
|
|
15230
|
+
issueId: Scalars['ID'];
|
|
15231
|
+
};
|
|
15232
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
15233
|
+
projectAri: Scalars['ID'];
|
|
15234
|
+
};
|
|
15235
|
+
export declare type QueryAppsArgs = {
|
|
15236
|
+
first?: Maybe<Scalars['Int']>;
|
|
15237
|
+
after?: Maybe<Scalars['String']>;
|
|
15238
|
+
last?: Maybe<Scalars['Int']>;
|
|
15239
|
+
before?: Maybe<Scalars['String']>;
|
|
15240
|
+
filter?: Maybe<AppsFilter>;
|
|
15241
|
+
};
|
|
15242
|
+
export declare type QueryAppArgs = {
|
|
15243
|
+
id: Scalars['ID'];
|
|
15244
|
+
};
|
|
15245
|
+
export declare type QueryAppHostServicesArgs = {
|
|
15246
|
+
filter?: Maybe<AppServicesFilter>;
|
|
15247
|
+
};
|
|
15248
|
+
export declare type QueryUserArgs = {
|
|
15249
|
+
accountId: Scalars['ID'];
|
|
15250
|
+
};
|
|
15251
|
+
export declare type QueryUsersArgs = {
|
|
15252
|
+
accountIds: Array<Scalars['ID']>;
|
|
15253
|
+
};
|
|
15254
|
+
export declare type QueryDevOpsServiceArgs = {
|
|
15255
|
+
id: Scalars['ID'];
|
|
15256
|
+
};
|
|
15257
|
+
export declare type QueryDevOpsServiceTiersArgs = {
|
|
15258
|
+
cloudId: Scalars['String'];
|
|
15259
|
+
};
|
|
15260
|
+
export declare type QueryDevOpsServicesArgs = {
|
|
15261
|
+
cloudId: Scalars['String'];
|
|
15262
|
+
first?: Maybe<Scalars['Int']>;
|
|
15263
|
+
after?: Maybe<Scalars['String']>;
|
|
15264
|
+
filter?: Maybe<DevOpsServicesFilterInput>;
|
|
15265
|
+
};
|
|
15266
|
+
export declare type QueryDevOpsServicesByIdArgs = {
|
|
15267
|
+
ids: Array<Scalars['ID']>;
|
|
15268
|
+
};
|
|
15269
|
+
export declare type QueryDevOpsServiceRelationshipArgs = {
|
|
15270
|
+
id: Scalars['ID'];
|
|
15271
|
+
};
|
|
15272
|
+
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
15273
|
+
cloudId: Scalars['ID'];
|
|
15274
|
+
first?: Maybe<Scalars['Int']>;
|
|
15275
|
+
after?: Maybe<Scalars['String']>;
|
|
15276
|
+
nameFilter?: Maybe<Scalars['String']>;
|
|
15277
|
+
};
|
|
15278
|
+
export declare type QueryAppLogsArgs = {
|
|
15279
|
+
last?: Maybe<Scalars['Int']>;
|
|
15280
|
+
first?: Maybe<Scalars['Int']>;
|
|
15281
|
+
before?: Maybe<Scalars['String']>;
|
|
15282
|
+
after?: Maybe<Scalars['String']>;
|
|
15283
|
+
appId: Scalars['ID'];
|
|
15284
|
+
environmentId: Array<Scalars['ID']>;
|
|
15285
|
+
query?: Maybe<LogQueryInput>;
|
|
15286
|
+
};
|
|
15287
|
+
export declare type QueryAppLogLinesArgs = {
|
|
15288
|
+
first?: Maybe<Scalars['Int']>;
|
|
15289
|
+
after?: Maybe<Scalars['String']>;
|
|
15290
|
+
invocation: Scalars['ID'];
|
|
15291
|
+
};
|
|
15292
|
+
export declare type QueryDeveloperLogAccessArgs = {
|
|
15293
|
+
contextIds: Array<Scalars['ID']>;
|
|
15294
|
+
appId: Scalars['ID'];
|
|
15295
|
+
environmentType: AppEnvironmentType;
|
|
15296
|
+
};
|
|
15297
|
+
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
15298
|
+
appId: Scalars['ID'];
|
|
15299
|
+
};
|
|
15300
|
+
export declare type QueryTenantContextsArgs = {
|
|
15301
|
+
cloudIds?: Maybe<Array<Scalars['ID']>>;
|
|
15302
|
+
hostNames?: Maybe<Array<Scalars['String']>>;
|
|
15303
|
+
};
|
|
15304
|
+
export declare type QueryAppInstallationTaskArgs = {
|
|
15305
|
+
id: Scalars['ID'];
|
|
15306
|
+
};
|
|
15307
|
+
export declare type QueryAppDeploymentArgs = {
|
|
15308
|
+
appId: Scalars['ID'];
|
|
15309
|
+
environmentKey: Scalars['String'];
|
|
15310
|
+
id: Scalars['ID'];
|
|
15311
|
+
};
|
|
15312
|
+
export declare type QueryHelpCenterArgs = {
|
|
15313
|
+
cloudId: Scalars['ID'];
|
|
15314
|
+
};
|
|
14877
15315
|
export declare type QueryError = {
|
|
14878
15316
|
__typename?: 'QueryError';
|
|
14879
15317
|
identifier?: Maybe<Scalars['ID']>;
|
|
@@ -14911,12 +15349,14 @@ export declare enum RateLimitingCurrency {
|
|
|
14911
15349
|
TestingService = "TESTING_SERVICE",
|
|
14912
15350
|
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
14913
15351
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
15352
|
+
TeamsCurrency = "TEAMS_CURRENCY",
|
|
15353
|
+
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
15354
|
+
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
|
|
15355
|
+
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
14914
15356
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
14915
15357
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
14916
15358
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
14917
|
-
|
|
14918
|
-
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
14919
|
-
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
15359
|
+
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY"
|
|
14920
15360
|
}
|
|
14921
15361
|
export declare type RawStatus = {
|
|
14922
15362
|
__typename?: 'RawStatus';
|
|
@@ -15415,6 +15855,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
15415
15855
|
creationPreferences: RoadmapCreationPreferences;
|
|
15416
15856
|
isDependenciesVisible: Scalars['Boolean'];
|
|
15417
15857
|
isProgressVisible: Scalars['Boolean'];
|
|
15858
|
+
isWarningsVisible: Scalars['Boolean'];
|
|
15418
15859
|
listWidth: Scalars['Long'];
|
|
15419
15860
|
timelineMode: RoadmapTimelineMode;
|
|
15420
15861
|
epicView: RoadmapEpicView;
|
|
@@ -15860,9 +16301,15 @@ export declare type SearchAnalyticsInput = {
|
|
|
15860
16301
|
searchReferrerId?: Maybe<Scalars['String']>;
|
|
15861
16302
|
};
|
|
15862
16303
|
export declare type SearchBoardFilter = {
|
|
15863
|
-
projectARI
|
|
16304
|
+
projectARI?: Maybe<Scalars['ID']>;
|
|
16305
|
+
userARI?: Maybe<Scalars['ID']>;
|
|
15864
16306
|
negateProjectFilter?: Maybe<Scalars['Boolean']>;
|
|
16307
|
+
boardTypes?: Maybe<Array<SearchBoardProductType>>;
|
|
15865
16308
|
};
|
|
16309
|
+
export declare enum SearchBoardProductType {
|
|
16310
|
+
Software = "SOFTWARE",
|
|
16311
|
+
Business = "BUSINESS"
|
|
16312
|
+
}
|
|
15866
16313
|
export declare type SearchConfluenceFilter = {
|
|
15867
16314
|
spacesFilter?: Maybe<Array<Scalars['String']>>;
|
|
15868
16315
|
contributorsFilter?: Maybe<Array<Scalars['String']>>;
|
|
@@ -15977,8 +16424,10 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
15977
16424
|
type: SearchResultType;
|
|
15978
16425
|
description: Scalars['String'];
|
|
15979
16426
|
favourite: Scalars['Boolean'];
|
|
15980
|
-
boardId
|
|
16427
|
+
boardId?: Maybe<Scalars['ID']>;
|
|
15981
16428
|
container?: Maybe<SearchResultJiraBoardContainer>;
|
|
16429
|
+
product: SearchBoardProductType;
|
|
16430
|
+
isSimpleBoard: Scalars['Boolean'];
|
|
15982
16431
|
};
|
|
15983
16432
|
export declare type SearchResultJiraBoardContainer = SearchResultJiraBoardProjectContainer | SearchResultJiraBoardUserContainer;
|
|
15984
16433
|
export declare type SearchResultJiraBoardProjectContainer = {
|
|
@@ -16006,7 +16455,22 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
16006
16455
|
type: SearchResultType;
|
|
16007
16456
|
description: Scalars['String'];
|
|
16008
16457
|
favourite: Scalars['Boolean'];
|
|
16458
|
+
canView: Scalars['Boolean'];
|
|
16009
16459
|
simplified: Scalars['Boolean'];
|
|
16460
|
+
landingPageInfo?: Maybe<SearchResultProjectLandingPageInfo>;
|
|
16461
|
+
};
|
|
16462
|
+
export declare type SearchResultProjectLandingPageInfo = SearchResultSoftwareProjectLandingPageInfo | SearchResultServiceDeskProjectLandingPageInfo | SearchResultWorkManagementProjectLandingPageInfo;
|
|
16463
|
+
export declare type SearchResultServiceDeskProjectLandingPageInfo = {
|
|
16464
|
+
__typename?: 'SearchResultServiceDeskProjectLandingPageInfo';
|
|
16465
|
+
id: Scalars['ID'];
|
|
16466
|
+
queueId: Scalars['Int'];
|
|
16467
|
+
queueName: Scalars['String'];
|
|
16468
|
+
};
|
|
16469
|
+
export declare type SearchResultSoftwareProjectLandingPageInfo = {
|
|
16470
|
+
__typename?: 'SearchResultSoftwareProjectLandingPageInfo';
|
|
16471
|
+
id: Scalars['ID'];
|
|
16472
|
+
boardId: Scalars['Int'];
|
|
16473
|
+
boardName: Scalars['String'];
|
|
16010
16474
|
};
|
|
16011
16475
|
export declare enum SearchResultType {
|
|
16012
16476
|
Blogpost = "blogpost",
|
|
@@ -16017,6 +16481,10 @@ export declare enum SearchResultType {
|
|
|
16017
16481
|
Plan = "plan",
|
|
16018
16482
|
Project = "project"
|
|
16019
16483
|
}
|
|
16484
|
+
export declare type SearchResultWorkManagementProjectLandingPageInfo = {
|
|
16485
|
+
__typename?: 'SearchResultWorkManagementProjectLandingPageInfo';
|
|
16486
|
+
boardName: Scalars['String'];
|
|
16487
|
+
};
|
|
16020
16488
|
export declare type SearchSpace = {
|
|
16021
16489
|
__typename?: 'SearchSpace';
|
|
16022
16490
|
key: Scalars['String'];
|
|
@@ -16141,7 +16609,7 @@ export declare type ShepherdAlert = {
|
|
|
16141
16609
|
assignee?: Maybe<ShepherdUser>;
|
|
16142
16610
|
cloudId?: Maybe<Scalars['ID']>;
|
|
16143
16611
|
createdOn: Scalars['DateTime'];
|
|
16144
|
-
description?: Maybe<
|
|
16612
|
+
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
16145
16613
|
id: Scalars['ID'];
|
|
16146
16614
|
orgId: Scalars['ID'];
|
|
16147
16615
|
status: ShepherdAlertStatus;
|
|
@@ -16191,6 +16659,11 @@ export declare type ShepherdAppInfo = {
|
|
|
16191
16659
|
env: Scalars['String'];
|
|
16192
16660
|
loginUrl: Scalars['String'];
|
|
16193
16661
|
};
|
|
16662
|
+
export declare type ShepherdConfig = {
|
|
16663
|
+
__typename?: 'ShepherdConfig';
|
|
16664
|
+
descriptionTemplates?: Maybe<Array<Maybe<ShepherdDescriptionTemplate>>>;
|
|
16665
|
+
};
|
|
16666
|
+
export declare type ShepherdConfigResult = QueryError | ShepherdConfig;
|
|
16194
16667
|
export declare type ShepherdCreateAlertInput = {
|
|
16195
16668
|
assignee?: Maybe<Scalars['ID']>;
|
|
16196
16669
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -16250,6 +16723,11 @@ export declare type ShepherdDescriptionSection = {
|
|
|
16250
16723
|
text?: Maybe<Scalars['JSON']>;
|
|
16251
16724
|
type?: Maybe<ShepherdAlertDescriptionType>;
|
|
16252
16725
|
};
|
|
16726
|
+
export declare type ShepherdDescriptionTemplate = {
|
|
16727
|
+
__typename?: 'ShepherdDescriptionTemplate';
|
|
16728
|
+
text?: Maybe<Scalars['JSON']>;
|
|
16729
|
+
type?: Maybe<ShepherdAlertTemplateType>;
|
|
16730
|
+
};
|
|
16253
16731
|
export declare type ShepherdEmailConnection = {
|
|
16254
16732
|
__typename?: 'ShepherdEmailConnection';
|
|
16255
16733
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -16327,6 +16805,7 @@ export declare type ShepherdQuery = {
|
|
|
16327
16805
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
16328
16806
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
16329
16807
|
shepherdAppInfo: ShepherdAppInfo;
|
|
16808
|
+
shepherdConfig?: Maybe<ShepherdConfigResult>;
|
|
16330
16809
|
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
16331
16810
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
16332
16811
|
};
|
|
@@ -16705,8 +17184,11 @@ export declare type Storage = {
|
|
|
16705
17184
|
};
|
|
16706
17185
|
export declare type Subscription = {
|
|
16707
17186
|
__typename?: 'Subscription';
|
|
16708
|
-
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
16709
17187
|
onTestingActivityItemUpdate?: Maybe<Node>;
|
|
17188
|
+
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
17189
|
+
};
|
|
17190
|
+
export declare type SubscriptionOnTestingActivityItemUpdateArgs = {
|
|
17191
|
+
issueId: Scalars['ID'];
|
|
16710
17192
|
};
|
|
16711
17193
|
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
16712
17194
|
cloudId: Scalars['ID'];
|
|
@@ -16714,9 +17196,6 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
16714
17196
|
projectType?: JiraProjectType;
|
|
16715
17197
|
filter?: JiraProjectFilterInput;
|
|
16716
17198
|
};
|
|
16717
|
-
export declare type SubscriptionOnTestingActivityItemUpdateArgs = {
|
|
16718
|
-
issueId: Scalars['ID'];
|
|
16719
|
-
};
|
|
16720
17199
|
export declare type SupportRequest = {
|
|
16721
17200
|
__typename?: 'SupportRequest';
|
|
16722
17201
|
id: Scalars['ID'];
|
|
@@ -16766,8 +17245,11 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
16766
17245
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
16767
17246
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
16768
17247
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
17248
|
+
removeSupportRequestOrganizations?: Maybe<Array<SupportRequestOrganization>>;
|
|
17249
|
+
addSupportRequestOrganizations?: Maybe<Array<SupportRequestOrganization>>;
|
|
16769
17250
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
16770
17251
|
updateSupportRequest?: Maybe<SupportRequest>;
|
|
17252
|
+
supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
|
|
16771
17253
|
};
|
|
16772
17254
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
16773
17255
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -16781,6 +17263,12 @@ export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArg
|
|
|
16781
17263
|
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
16782
17264
|
input: SupportRequestParticipantsInput;
|
|
16783
17265
|
};
|
|
17266
|
+
export declare type SupportRequestCatalogMutationApiRemoveSupportRequestOrganizationsArgs = {
|
|
17267
|
+
input: SupportRequestOrganizationsInput;
|
|
17268
|
+
};
|
|
17269
|
+
export declare type SupportRequestCatalogMutationApiAddSupportRequestOrganizationsArgs = {
|
|
17270
|
+
input: SupportRequestOrganizationsInput;
|
|
17271
|
+
};
|
|
16784
17272
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
16785
17273
|
emails: Array<Scalars['String']>;
|
|
16786
17274
|
organizationId?: Maybe<Scalars['String']>;
|
|
@@ -16795,6 +17283,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
16795
17283
|
me?: Maybe<SupportRequestPage>;
|
|
16796
17284
|
supportRequest?: Maybe<SupportRequest>;
|
|
16797
17285
|
users?: Maybe<SupportRequestUsers>;
|
|
17286
|
+
supportRequestContext?: Maybe<SupportRequestContextQueryApi>;
|
|
16798
17287
|
};
|
|
16799
17288
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
16800
17289
|
key: Scalars['ID'];
|
|
@@ -16819,6 +17308,24 @@ export declare type SupportRequestContactRelation = {
|
|
|
16819
17308
|
openRequest?: Maybe<SupportRequestTicket>;
|
|
16820
17309
|
contact?: Maybe<SupportRequestUser>;
|
|
16821
17310
|
};
|
|
17311
|
+
export declare type SupportRequestContextMutationApi = {
|
|
17312
|
+
__typename?: 'SupportRequestContextMutationApi';
|
|
17313
|
+
setNotifications: SupportRequestNotification;
|
|
17314
|
+
};
|
|
17315
|
+
export declare type SupportRequestContextMutationApiSetNotificationsArgs = {
|
|
17316
|
+
input: SupportRequestContextSetNotificationInput;
|
|
17317
|
+
};
|
|
17318
|
+
export declare type SupportRequestContextQueryApi = {
|
|
17319
|
+
__typename?: 'SupportRequestContextQueryApi';
|
|
17320
|
+
getNotificationStatus?: Maybe<SupportRequestNotification>;
|
|
17321
|
+
};
|
|
17322
|
+
export declare type SupportRequestContextQueryApiGetNotificationStatusArgs = {
|
|
17323
|
+
key: Scalars['ID'];
|
|
17324
|
+
};
|
|
17325
|
+
export declare type SupportRequestContextSetNotificationInput = {
|
|
17326
|
+
requestKey: Scalars['String'];
|
|
17327
|
+
status: Scalars['Boolean'];
|
|
17328
|
+
};
|
|
16822
17329
|
export declare type SupportRequestDisplayableDateTime = {
|
|
16823
17330
|
__typename?: 'SupportRequestDisplayableDateTime';
|
|
16824
17331
|
dateTime: Scalars['String'];
|
|
@@ -16883,6 +17390,19 @@ export declare type SupportRequestNamedContactRelations = {
|
|
|
16883
17390
|
cloudEnterpriseRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
16884
17391
|
premierSupportRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
16885
17392
|
};
|
|
17393
|
+
export declare type SupportRequestNotification = {
|
|
17394
|
+
__typename?: 'SupportRequestNotification';
|
|
17395
|
+
status?: Maybe<Scalars['Boolean']>;
|
|
17396
|
+
};
|
|
17397
|
+
export declare type SupportRequestOrganization = {
|
|
17398
|
+
__typename?: 'SupportRequestOrganization';
|
|
17399
|
+
id: Scalars['Int'];
|
|
17400
|
+
name: Scalars['String'];
|
|
17401
|
+
};
|
|
17402
|
+
export declare type SupportRequestOrganizationsInput = {
|
|
17403
|
+
requestKey: Scalars['String'];
|
|
17404
|
+
orgIds?: Maybe<Array<Scalars['Int']>>;
|
|
17405
|
+
};
|
|
16886
17406
|
export declare type SupportRequestPage = {
|
|
16887
17407
|
__typename?: 'SupportRequestPage';
|
|
16888
17408
|
profile?: Maybe<SupportRequestUser>;
|
|
@@ -16993,11 +17513,16 @@ export declare enum SupportRequestUserType {
|
|
|
16993
17513
|
export declare type SupportRequestUsers = {
|
|
16994
17514
|
__typename?: 'SupportRequestUsers';
|
|
16995
17515
|
searchUsers: Array<SupportRequestUser>;
|
|
17516
|
+
searchOrganizations: Array<SupportRequestOrganization>;
|
|
16996
17517
|
};
|
|
16997
17518
|
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
16998
17519
|
query?: Maybe<Scalars['String']>;
|
|
16999
17520
|
requestKey?: Maybe<Scalars['String']>;
|
|
17000
17521
|
};
|
|
17522
|
+
export declare type SupportRequestUsersSearchOrganizationsArgs = {
|
|
17523
|
+
query?: Maybe<Scalars['String']>;
|
|
17524
|
+
requestKey?: Maybe<Scalars['String']>;
|
|
17525
|
+
};
|
|
17001
17526
|
export declare type SupportRequests = {
|
|
17002
17527
|
__typename?: 'SupportRequests';
|
|
17003
17528
|
total: Scalars['Int'];
|
|
@@ -17558,6 +18083,16 @@ export declare type UpdateCompassComponentPayload = Payload & {
|
|
|
17558
18083
|
errors?: Maybe<Array<MutationError>>;
|
|
17559
18084
|
componentDetails?: Maybe<CompassComponent>;
|
|
17560
18085
|
};
|
|
18086
|
+
export declare type UpdateCompassComponentTypeInput = {
|
|
18087
|
+
id: Scalars['ID'];
|
|
18088
|
+
type: CompassComponentType;
|
|
18089
|
+
};
|
|
18090
|
+
export declare type UpdateCompassComponentTypePayload = Payload & {
|
|
18091
|
+
__typename?: 'UpdateCompassComponentTypePayload';
|
|
18092
|
+
success: Scalars['Boolean'];
|
|
18093
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18094
|
+
componentDetails?: Maybe<CompassComponent>;
|
|
18095
|
+
};
|
|
17561
18096
|
export declare type UpdateCompassFieldInput = {
|
|
17562
18097
|
definition: Scalars['ID'];
|
|
17563
18098
|
value: CompassFieldValueInput;
|