@forge/cli-shared 0.0.0-experimental-e3032d7 → 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 +107 -4
- package/out/app-logs/view-logs.d.ts +2 -1
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +4 -1
- package/out/ari/ari.d.ts +4 -3
- package/out/ari/ari.d.ts.map +1 -1
- package/out/ari/ari.js +11 -2
- package/out/graphql/graphql-types.d.ts +791 -379
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +55 -6
- 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 +4 -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']>;
|
|
@@ -3416,13 +3491,23 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
3416
3491
|
errors?: Maybe<Array<MutationError>>;
|
|
3417
3492
|
success: Scalars['Boolean'];
|
|
3418
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
|
+
};
|
|
3419
3504
|
export declare type ConfluenceCreateFooterCommentOnPageInput = {
|
|
3420
3505
|
body: ConfluenceContentBodyInput;
|
|
3421
3506
|
pageId: Scalars['ID'];
|
|
3422
3507
|
};
|
|
3423
|
-
export declare type ConfluenceCreateFooterCommentOnPagePayload = {
|
|
3508
|
+
export declare type ConfluenceCreateFooterCommentOnPagePayload = Payload & {
|
|
3424
3509
|
__typename?: 'ConfluenceCreateFooterCommentOnPagePayload';
|
|
3425
|
-
comment?: Maybe<
|
|
3510
|
+
comment?: Maybe<ConfluenceFooterComment>;
|
|
3426
3511
|
errors?: Maybe<Array<MutationError>>;
|
|
3427
3512
|
success: Scalars['Boolean'];
|
|
3428
3513
|
};
|
|
@@ -3521,6 +3606,33 @@ export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
|
3521
3606
|
errors?: Maybe<Array<MutationError>>;
|
|
3522
3607
|
success: Scalars['Boolean'];
|
|
3523
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
|
+
}
|
|
3524
3636
|
export declare type ConfluenceInlineTask = {
|
|
3525
3637
|
__typename?: 'ConfluenceInlineTask';
|
|
3526
3638
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -3528,13 +3640,13 @@ export declare type ConfluenceInlineTask = {
|
|
|
3528
3640
|
completedBy?: Maybe<ConfluenceUserInfo>;
|
|
3529
3641
|
container?: Maybe<ConfluenceInlineTaskContainer>;
|
|
3530
3642
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3531
|
-
|
|
3532
|
-
|
|
3643
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
3644
|
+
dueAt?: Maybe<Scalars['DateTime']>;
|
|
3533
3645
|
globalId?: Maybe<Scalars['ID']>;
|
|
3534
3646
|
id: Scalars['ID'];
|
|
3535
3647
|
status?: Maybe<ConfluenceInlineTaskStatus>;
|
|
3536
3648
|
taskId?: Maybe<Scalars['ID']>;
|
|
3537
|
-
|
|
3649
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
3538
3650
|
};
|
|
3539
3651
|
export declare type ConfluenceInlineTaskContainer = ConfluenceBlogPost | ConfluencePage;
|
|
3540
3652
|
export declare enum ConfluenceInlineTaskStatus {
|
|
@@ -3551,6 +3663,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
3551
3663
|
__typename?: 'ConfluenceMutationApi';
|
|
3552
3664
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3553
3665
|
createBlogPostProperty?: Maybe<ConfluenceCreateBlogPostPropertyPayload>;
|
|
3666
|
+
createFooterCommentOnBlogPost?: Maybe<ConfluenceCreateFooterCommentOnBlogPostPayload>;
|
|
3554
3667
|
createFooterCommentOnPage?: Maybe<ConfluenceCreateFooterCommentOnPagePayload>;
|
|
3555
3668
|
createPage?: Maybe<ConfluenceCreatePagePayload>;
|
|
3556
3669
|
createPageProperty?: Maybe<ConfluenceCreatePagePropertyPayload>;
|
|
@@ -3564,7 +3677,9 @@ export declare type ConfluenceMutationApi = {
|
|
|
3564
3677
|
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
3565
3678
|
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
3566
3679
|
purgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3680
|
+
reopenInlineComment?: Maybe<ConfluenceReopenInlineCommentPayload>;
|
|
3567
3681
|
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
3682
|
+
resolveInlineComment?: Maybe<ConfluenceResolveInlineCommentPayload>;
|
|
3568
3683
|
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3569
3684
|
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
3570
3685
|
updateComment?: Maybe<ConfluenceUpdateCommentPayload>;
|
|
@@ -3580,12 +3695,14 @@ export declare type ConfluenceMutationApi = {
|
|
|
3580
3695
|
deleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
3581
3696
|
};
|
|
3582
3697
|
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
3583
|
-
cloudId: Scalars['ID'];
|
|
3584
3698
|
input: ConfluenceCreateBlogPostInput;
|
|
3585
3699
|
};
|
|
3586
3700
|
export declare type ConfluenceMutationApiCreateBlogPostPropertyArgs = {
|
|
3587
3701
|
input: ConfluenceCreateBlogPostPropertyInput;
|
|
3588
3702
|
};
|
|
3703
|
+
export declare type ConfluenceMutationApiCreateFooterCommentOnBlogPostArgs = {
|
|
3704
|
+
input: ConfluenceCreateFooterCommentOnBlogPostInput;
|
|
3705
|
+
};
|
|
3589
3706
|
export declare type ConfluenceMutationApiCreateFooterCommentOnPageArgs = {
|
|
3590
3707
|
input: ConfluenceCreateFooterCommentOnPageInput;
|
|
3591
3708
|
};
|
|
@@ -3626,9 +3743,15 @@ export declare type ConfluenceMutationApiPurgeBlogPostArgs = {
|
|
|
3626
3743
|
export declare type ConfluenceMutationApiPurgePageArgs = {
|
|
3627
3744
|
input: ConfluencePurgePageInput;
|
|
3628
3745
|
};
|
|
3746
|
+
export declare type ConfluenceMutationApiReopenInlineCommentArgs = {
|
|
3747
|
+
input: ConfluenceReopenInlineCommentInput;
|
|
3748
|
+
};
|
|
3629
3749
|
export declare type ConfluenceMutationApiReplyToCommentArgs = {
|
|
3630
3750
|
input: ConfluenceReplyToCommentInput;
|
|
3631
3751
|
};
|
|
3752
|
+
export declare type ConfluenceMutationApiResolveInlineCommentArgs = {
|
|
3753
|
+
input: ConfluenceResolveInlineCommentInput;
|
|
3754
|
+
};
|
|
3632
3755
|
export declare type ConfluenceMutationApiTrashBlogPostArgs = {
|
|
3633
3756
|
input: ConfluenceTrashBlogPostInput;
|
|
3634
3757
|
};
|
|
@@ -3707,6 +3830,8 @@ export declare enum ConfluenceOperationTarget {
|
|
|
3707
3830
|
export declare type ConfluencePage = {
|
|
3708
3831
|
__typename?: 'ConfluencePage';
|
|
3709
3832
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3833
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3834
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3710
3835
|
id: Scalars['ID'];
|
|
3711
3836
|
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
3712
3837
|
links?: Maybe<ConfluencePageLinks>;
|
|
@@ -3719,6 +3844,9 @@ export declare type ConfluencePage = {
|
|
|
3719
3844
|
type?: Maybe<ConfluenceContentType>;
|
|
3720
3845
|
viewer?: Maybe<ConfluencePageViewerSummary>;
|
|
3721
3846
|
};
|
|
3847
|
+
export declare type ConfluencePageCommentsArgs = {
|
|
3848
|
+
commentType?: Maybe<ConfluenceCommentType>;
|
|
3849
|
+
};
|
|
3722
3850
|
export declare type ConfluencePagePropertiesArgs = {
|
|
3723
3851
|
keys: Array<Maybe<Scalars['String']>>;
|
|
3724
3852
|
};
|
|
@@ -3748,13 +3876,13 @@ export declare enum ConfluencePageStatus {
|
|
|
3748
3876
|
export declare type ConfluencePageVersion = {
|
|
3749
3877
|
__typename?: 'ConfluencePageVersion';
|
|
3750
3878
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3751
|
-
createdAt?: Maybe<Scalars['
|
|
3879
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
3752
3880
|
number?: Maybe<Scalars['Int']>;
|
|
3753
3881
|
};
|
|
3754
3882
|
export declare type ConfluencePageViewerSummary = {
|
|
3755
3883
|
__typename?: 'ConfluencePageViewerSummary';
|
|
3756
3884
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3757
|
-
lastSeenAt?: Maybe<Scalars['
|
|
3885
|
+
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
3758
3886
|
};
|
|
3759
3887
|
export declare type ConfluencePublishBlogPostInput = {
|
|
3760
3888
|
id: Scalars['ID'];
|
|
@@ -3846,6 +3974,15 @@ export declare type ConfluenceQueryApiUserPropertyArgs = {
|
|
|
3846
3974
|
export declare type ConfluenceQueryApiUserPropertiesArgs = {
|
|
3847
3975
|
ids: Array<Scalars['ID']>;
|
|
3848
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
|
+
};
|
|
3849
3986
|
export declare type ConfluenceReplyToCommentInput = {
|
|
3850
3987
|
body: ConfluenceContentBodyInput;
|
|
3851
3988
|
parentCommentId: Scalars['ID'];
|
|
@@ -3856,6 +3993,15 @@ export declare type ConfluenceReplyToCommentPayload = {
|
|
|
3856
3993
|
errors?: Maybe<Array<MutationError>>;
|
|
3857
3994
|
success: Scalars['Boolean'];
|
|
3858
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
|
+
};
|
|
3859
4005
|
export declare type ConfluenceSpace = {
|
|
3860
4006
|
__typename?: 'ConfluenceSpace';
|
|
3861
4007
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
@@ -4036,7 +4182,6 @@ export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
|
4036
4182
|
export declare type ConfluenceUserInfo = {
|
|
4037
4183
|
__typename?: 'ConfluenceUserInfo';
|
|
4038
4184
|
user?: Maybe<User>;
|
|
4039
|
-
personalSpace?: Maybe<ConfluenceSpace>;
|
|
4040
4185
|
};
|
|
4041
4186
|
export declare type ConfluenceUserProperty = {
|
|
4042
4187
|
__typename?: 'ConfluenceUserProperty';
|
|
@@ -5042,7 +5187,6 @@ export declare type DeleteEventSourceInput = {
|
|
|
5042
5187
|
cloudId: Scalars['ID'];
|
|
5043
5188
|
externalEventSourceId: Scalars['ID'];
|
|
5044
5189
|
eventType: CompassEventType;
|
|
5045
|
-
deleteIfAttachedToComponents?: Maybe<Scalars['Boolean']>;
|
|
5046
5190
|
};
|
|
5047
5191
|
export declare type DeleteEventSourcePayload = Payload & {
|
|
5048
5192
|
__typename?: 'DeleteEventSourcePayload';
|
|
@@ -5674,11 +5818,12 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
5674
5818
|
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5675
5819
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
5676
5820
|
};
|
|
5677
|
-
export declare type DevOpsThirdPartyRepository = {
|
|
5821
|
+
export declare type DevOpsThirdPartyRepository = CodeRepository & {
|
|
5678
5822
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
5679
5823
|
id: Scalars['ID'];
|
|
5680
5824
|
webUrl?: Maybe<Scalars['URL']>;
|
|
5681
|
-
|
|
5825
|
+
href?: Maybe<Scalars['URL']>;
|
|
5826
|
+
name: Scalars['String'];
|
|
5682
5827
|
avatar?: Maybe<DevOpsAvatar>;
|
|
5683
5828
|
};
|
|
5684
5829
|
export declare type DevOpsTool = Node & {
|
|
@@ -5904,6 +6049,7 @@ export declare type DevOpsToolSort = {
|
|
|
5904
6049
|
name?: Maybe<DevOpsToolSortOrder>;
|
|
5905
6050
|
supportsContainers?: Maybe<DevOpsToolSortOrder>;
|
|
5906
6051
|
integration?: Maybe<DevOpsToolSortOrder>;
|
|
6052
|
+
recommended?: Maybe<DevOpsToolSortOrder>;
|
|
5907
6053
|
};
|
|
5908
6054
|
export declare enum DevOpsToolSortOrder {
|
|
5909
6055
|
Asc = "ASC",
|
|
@@ -6020,6 +6166,7 @@ export declare type EcosystemMutation = {
|
|
|
6020
6166
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
6021
6167
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
6022
6168
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
6169
|
+
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
6023
6170
|
};
|
|
6024
6171
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
6025
6172
|
input: UpdateAppHostServiceScopesInput;
|
|
@@ -6030,6 +6177,9 @@ export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
|
6030
6177
|
export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
6031
6178
|
input: UpdateUserInstallationRulesInput;
|
|
6032
6179
|
};
|
|
6180
|
+
export declare type EcosystemMutationForgeAlertsArgs = {
|
|
6181
|
+
appId: Scalars['ID'];
|
|
6182
|
+
};
|
|
6033
6183
|
export declare type EcosystemQuery = {
|
|
6034
6184
|
__typename?: 'EcosystemQuery';
|
|
6035
6185
|
userGrants?: Maybe<UserGrantConnection>;
|
|
@@ -6039,6 +6189,7 @@ export declare type EcosystemQuery = {
|
|
|
6039
6189
|
marketplaceAppsByCurrentUserPartnerContactPermissions: Array<FortifiedMarketplaceApp>;
|
|
6040
6190
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
6041
6191
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
6192
|
+
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
6042
6193
|
};
|
|
6043
6194
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
6044
6195
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6064,6 +6215,9 @@ export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
|
6064
6215
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
6065
6216
|
appId: Scalars['ID'];
|
|
6066
6217
|
};
|
|
6218
|
+
export declare type EcosystemQueryForgeAlertsArgs = {
|
|
6219
|
+
appId: Scalars['ID'];
|
|
6220
|
+
};
|
|
6067
6221
|
export declare type EditSprintInput = {
|
|
6068
6222
|
boardId: Scalars['ID'];
|
|
6069
6223
|
sprintId: Scalars['ID'];
|
|
@@ -6186,6 +6340,74 @@ export declare type FilterQuery = {
|
|
|
6186
6340
|
sanitisedJql: Scalars['String'];
|
|
6187
6341
|
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
6188
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
|
+
};
|
|
6189
6411
|
export declare type ForgeContextToken = {
|
|
6190
6412
|
__typename?: 'ForgeContextToken';
|
|
6191
6413
|
jwt: Scalars['String'];
|
|
@@ -6195,7 +6417,6 @@ export declare type ForgeMetricsData = {
|
|
|
6195
6417
|
name: Scalars['String'];
|
|
6196
6418
|
type: ForgeMetricsDataType;
|
|
6197
6419
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
6198
|
-
resolution: ForgeMetricsResolution;
|
|
6199
6420
|
};
|
|
6200
6421
|
export declare enum ForgeMetricsDataType {
|
|
6201
6422
|
DateTime = "DATE_TIME",
|
|
@@ -6221,11 +6442,19 @@ export declare type ForgeMetricsErrorsSeries = ForgeMetricsSeries & {
|
|
|
6221
6442
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
6222
6443
|
data: Array<ForgeMetricsErrorsDataPoint>;
|
|
6223
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;
|
|
6224
6452
|
export declare enum ForgeMetricsGroupByDimensions {
|
|
6225
6453
|
UserTier = "USER_TIER",
|
|
6226
6454
|
EnvironmentId = "ENVIRONMENT_ID",
|
|
6227
6455
|
ErrorType = "ERROR_TYPE",
|
|
6228
|
-
Version = "VERSION"
|
|
6456
|
+
Version = "VERSION",
|
|
6457
|
+
ContextAri = "CONTEXT_ARI"
|
|
6229
6458
|
}
|
|
6230
6459
|
export declare type ForgeMetricsInstallationContext = {
|
|
6231
6460
|
__typename?: 'ForgeMetricsInstallationContext';
|
|
@@ -6260,6 +6489,13 @@ export declare type ForgeMetricsInvocationSeries = ForgeMetricsSeries & {
|
|
|
6260
6489
|
data: Array<ForgeMetricsInvocationDataPoint>;
|
|
6261
6490
|
};
|
|
6262
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;
|
|
6263
6499
|
export declare type ForgeMetricsLabelGroup = {
|
|
6264
6500
|
__typename?: 'ForgeMetricsLabelGroup';
|
|
6265
6501
|
key: Scalars['String'];
|
|
@@ -6271,7 +6507,9 @@ export declare type ForgeMetricsQuery = {
|
|
|
6271
6507
|
successRate: ForgeMetricsSuccessRateResult;
|
|
6272
6508
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
6273
6509
|
invocations: ForgeMetricsInvocationsResult;
|
|
6510
|
+
invocationsValue: ForgeMetricsInvocationsValueResult;
|
|
6274
6511
|
errors: ForgeMetricsErrorsResult;
|
|
6512
|
+
errorsValue: ForgeMetricsErrorsValueResult;
|
|
6275
6513
|
sites: ForgeMetricsSitesResult;
|
|
6276
6514
|
};
|
|
6277
6515
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
@@ -6283,9 +6521,15 @@ export declare type ForgeMetricsQuerySuccessRateValueArgs = {
|
|
|
6283
6521
|
export declare type ForgeMetricsQueryInvocationsArgs = {
|
|
6284
6522
|
query: ForgeMetricsQueryInput;
|
|
6285
6523
|
};
|
|
6524
|
+
export declare type ForgeMetricsQueryInvocationsValueArgs = {
|
|
6525
|
+
query: ForgeMetricsQueryInput;
|
|
6526
|
+
};
|
|
6286
6527
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
6287
6528
|
query: ForgeMetricsQueryInput;
|
|
6288
6529
|
};
|
|
6530
|
+
export declare type ForgeMetricsQueryErrorsValueArgs = {
|
|
6531
|
+
query: ForgeMetricsQueryInput;
|
|
6532
|
+
};
|
|
6289
6533
|
export declare type ForgeMetricsQuerySitesArgs = {
|
|
6290
6534
|
query: ForgeMetricsQueryInput;
|
|
6291
6535
|
};
|
|
@@ -6351,7 +6595,6 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
6351
6595
|
name: Scalars['String'];
|
|
6352
6596
|
type: ForgeMetricsDataType;
|
|
6353
6597
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
6354
|
-
resolution: ForgeMetricsResolution;
|
|
6355
6598
|
};
|
|
6356
6599
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
6357
6600
|
export declare type FortifiedMarketplaceApp = {
|
|
@@ -6511,7 +6754,7 @@ export declare type HelpCenterCollectionItemsArgs = {
|
|
|
6511
6754
|
before?: Maybe<Scalars['String']>;
|
|
6512
6755
|
};
|
|
6513
6756
|
export declare type HelpCenterCollectionDeleteInput = {
|
|
6514
|
-
|
|
6757
|
+
productName: Scalars['String'];
|
|
6515
6758
|
collectionId: Scalars['ID'];
|
|
6516
6759
|
};
|
|
6517
6760
|
export declare type HelpCenterCollectionItem = {
|
|
@@ -6536,7 +6779,7 @@ export declare type HelpCenterCollectionItemInput = {
|
|
|
6536
6779
|
};
|
|
6537
6780
|
export declare type HelpCenterCollectionResult = HelpCenterCollection | QueryError;
|
|
6538
6781
|
export declare type HelpCenterCreateCollectionInput = {
|
|
6539
|
-
|
|
6782
|
+
productName: Scalars['String'];
|
|
6540
6783
|
items: Array<HelpCenterCollectionItemInput>;
|
|
6541
6784
|
name: Scalars['String'];
|
|
6542
6785
|
description?: Maybe<Scalars['String']>;
|
|
@@ -6598,7 +6841,7 @@ export declare type HelpCenterSuccessfullyDeletedUpdatedCollectionIds = {
|
|
|
6598
6841
|
collectionIds: Scalars['ID'];
|
|
6599
6842
|
};
|
|
6600
6843
|
export declare type HelpCenterUpdateCollectionInput = {
|
|
6601
|
-
|
|
6844
|
+
productName: Scalars['String'];
|
|
6602
6845
|
collectionId: Scalars['ID'];
|
|
6603
6846
|
items: Array<HelpCenterCollectionItemInput>;
|
|
6604
6847
|
name: Scalars['String'];
|
|
@@ -6606,7 +6849,7 @@ export declare type HelpCenterUpdateCollectionInput = {
|
|
|
6606
6849
|
properties?: Maybe<Scalars['JSON']>;
|
|
6607
6850
|
};
|
|
6608
6851
|
export declare type HelpCenterUpdateCollectionsOrderInput = {
|
|
6609
|
-
|
|
6852
|
+
productName: Scalars['String'];
|
|
6610
6853
|
collectionIds: Array<Scalars['ID']>;
|
|
6611
6854
|
};
|
|
6612
6855
|
export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
@@ -6617,6 +6860,7 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
6617
6860
|
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
6618
6861
|
__typename?: 'HelpObjectStoreArticle';
|
|
6619
6862
|
id: Scalars['ID'];
|
|
6863
|
+
ari: Scalars['ID'];
|
|
6620
6864
|
title?: Maybe<Scalars['String']>;
|
|
6621
6865
|
description?: Maybe<Scalars['String']>;
|
|
6622
6866
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6641,6 +6885,7 @@ export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
|
|
|
6641
6885
|
};
|
|
6642
6886
|
export declare type HelpObjectStoreHelpObject = {
|
|
6643
6887
|
id: Scalars['ID'];
|
|
6888
|
+
ari: Scalars['ID'];
|
|
6644
6889
|
title?: Maybe<Scalars['String']>;
|
|
6645
6890
|
description?: Maybe<Scalars['String']>;
|
|
6646
6891
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6678,13 +6923,14 @@ export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
6678
6923
|
};
|
|
6679
6924
|
export declare type HelpObjectStoreQueryError = {
|
|
6680
6925
|
__typename?: 'HelpObjectStoreQueryError';
|
|
6681
|
-
|
|
6926
|
+
ari: Scalars['ID'];
|
|
6682
6927
|
message?: Maybe<Scalars['String']>;
|
|
6683
6928
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
6684
6929
|
};
|
|
6685
6930
|
export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
|
|
6686
6931
|
__typename?: 'HelpObjectStoreRequestForm';
|
|
6687
6932
|
id: Scalars['ID'];
|
|
6933
|
+
ari: Scalars['ID'];
|
|
6688
6934
|
title?: Maybe<Scalars['String']>;
|
|
6689
6935
|
description?: Maybe<Scalars['String']>;
|
|
6690
6936
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6695,7 +6941,7 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
|
|
|
6695
6941
|
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | HelpObjectStoreQueryError;
|
|
6696
6942
|
export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
6697
6943
|
__typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
|
|
6698
|
-
|
|
6944
|
+
ari: Scalars['ID'];
|
|
6699
6945
|
entityId: Scalars['String'];
|
|
6700
6946
|
projectId: Scalars['String'];
|
|
6701
6947
|
};
|
|
@@ -7125,7 +7371,8 @@ export declare type JiraAddRelatedWorkToVersionPayload = Payload & {
|
|
|
7125
7371
|
};
|
|
7126
7372
|
export declare type JiraAffectedService = {
|
|
7127
7373
|
__typename?: 'JiraAffectedService';
|
|
7128
|
-
serviceId
|
|
7374
|
+
serviceId: Scalars['ID'];
|
|
7375
|
+
name?: Maybe<Scalars['String']>;
|
|
7129
7376
|
};
|
|
7130
7377
|
export declare type JiraAffectedServiceConnection = {
|
|
7131
7378
|
__typename?: 'JiraAffectedServiceConnection';
|
|
@@ -7343,6 +7590,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
7343
7590
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7344
7591
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
7345
7592
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
7593
|
+
wasInsightRequestSuccessful?: Maybe<Scalars['Boolean']>;
|
|
7346
7594
|
isInsightAvailable?: Maybe<Scalars['Boolean']>;
|
|
7347
7595
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
7348
7596
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -7457,6 +7705,7 @@ export declare type JiraClassicConnectDevOpsProvider = JiraDevOpsProvider & {
|
|
|
7457
7705
|
};
|
|
7458
7706
|
export declare type JiraCmdbAttribute = {
|
|
7459
7707
|
__typename?: 'JiraCmdbAttribute';
|
|
7708
|
+
attributeId?: Maybe<Scalars['String']>;
|
|
7460
7709
|
objectTypeAttributeId?: Maybe<Scalars['String']>;
|
|
7461
7710
|
objectTypeAttribute?: Maybe<JiraCmdbObjectTypeAttribute>;
|
|
7462
7711
|
objectAttributeValues?: Maybe<JiraCmdbObjectAttributeValueConnection>;
|
|
@@ -8051,6 +8300,23 @@ export declare type JiraEstimate = {
|
|
|
8051
8300
|
__typename?: 'JiraEstimate';
|
|
8052
8301
|
timeInSeconds?: Maybe<Scalars['Long']>;
|
|
8053
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
|
+
}
|
|
8054
8320
|
export declare type JiraFieldConfig = {
|
|
8055
8321
|
__typename?: 'JiraFieldConfig';
|
|
8056
8322
|
isRequired?: Maybe<Scalars['Boolean']>;
|
|
@@ -8417,6 +8683,9 @@ export declare type JiraIssue = Node & {
|
|
|
8417
8683
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
8418
8684
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
8419
8685
|
errorRetrievingData?: Maybe<Scalars['Boolean']>;
|
|
8686
|
+
storyPointsField?: Maybe<JiraNumberField>;
|
|
8687
|
+
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
8688
|
+
screenId?: Maybe<Scalars['Long']>;
|
|
8420
8689
|
};
|
|
8421
8690
|
export declare type JiraIssueFieldsArgs = {
|
|
8422
8691
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9953,6 +10222,7 @@ export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
|
|
|
9953
10222
|
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
9954
10223
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
9955
10224
|
oauthAppId?: Maybe<Scalars['ID']>;
|
|
10225
|
+
marketplaceAppKey?: Maybe<Scalars['String']>;
|
|
9956
10226
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
9957
10227
|
};
|
|
9958
10228
|
export declare type JiraOption = Node & {
|
|
@@ -10018,10 +10288,16 @@ export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFiel
|
|
|
10018
10288
|
name: Scalars['String'];
|
|
10019
10289
|
description?: Maybe<Scalars['String']>;
|
|
10020
10290
|
parentIssue?: Maybe<JiraIssue>;
|
|
10291
|
+
parentVisibility?: Maybe<JiraParentVisibility>;
|
|
10021
10292
|
searchUrl?: Maybe<Scalars['String']>;
|
|
10022
10293
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
10023
10294
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
10024
10295
|
};
|
|
10296
|
+
export declare type JiraParentVisibility = {
|
|
10297
|
+
__typename?: 'JiraParentVisibility';
|
|
10298
|
+
hasEpicLinkFieldDependency?: Maybe<Scalars['Boolean']>;
|
|
10299
|
+
canUseParentLinkField?: Maybe<Scalars['Boolean']>;
|
|
10300
|
+
};
|
|
10025
10301
|
export declare type JiraPeopleField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10026
10302
|
__typename?: 'JiraPeopleField';
|
|
10027
10303
|
id: Scalars['ID'];
|
|
@@ -10270,13 +10546,14 @@ export declare type JiraProject = Node & {
|
|
|
10270
10546
|
status?: Maybe<JiraProjectStatus>;
|
|
10271
10547
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
10272
10548
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
10549
|
+
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
10273
10550
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
10274
|
-
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
10275
10551
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
10276
10552
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
10277
10553
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
10278
10554
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
10279
10555
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
10556
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
10280
10557
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
10281
10558
|
};
|
|
10282
10559
|
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
@@ -10521,6 +10798,7 @@ export declare type JiraProjectFilterInput = {
|
|
|
10521
10798
|
keyword?: Maybe<Scalars['String']>;
|
|
10522
10799
|
sortBy?: Maybe<JiraProjectSortInput>;
|
|
10523
10800
|
};
|
|
10801
|
+
export declare type JiraProjectNavigationMetadata = JiraSoftwareProjectNavigationMetadata | JiraServiceManagementProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
10524
10802
|
export declare type JiraProjectPermission = {
|
|
10525
10803
|
__typename?: 'JiraProjectPermission';
|
|
10526
10804
|
key: Scalars['String'];
|
|
@@ -10594,6 +10872,7 @@ export declare type JiraQuery = {
|
|
|
10594
10872
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
10595
10873
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
10596
10874
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
10875
|
+
favourites?: Maybe<JiraFavouriteConnection>;
|
|
10597
10876
|
issueByKey?: Maybe<JiraIssue>;
|
|
10598
10877
|
issueById?: Maybe<JiraIssue>;
|
|
10599
10878
|
issue?: Maybe<JiraIssue>;
|
|
@@ -10622,6 +10901,7 @@ export declare type JiraQuery = {
|
|
|
10622
10901
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
10623
10902
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
10624
10903
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10904
|
+
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10625
10905
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
10626
10906
|
};
|
|
10627
10907
|
export declare type JiraQueryJiraProjectArgs = {
|
|
@@ -10674,6 +10954,14 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
10674
10954
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
10675
10955
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
10676
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
|
+
};
|
|
10677
10965
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
10678
10966
|
key: Scalars['String'];
|
|
10679
10967
|
cloudId: Scalars['ID'];
|
|
@@ -10789,6 +11077,10 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
10789
11077
|
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
10790
11078
|
projectId: Scalars['ID'];
|
|
10791
11079
|
};
|
|
11080
|
+
export declare type JiraQueryDeploymentsFeaturePreconditionByProjectKeyArgs = {
|
|
11081
|
+
cloudId: Scalars['ID'];
|
|
11082
|
+
projectKey: Scalars['String'];
|
|
11083
|
+
};
|
|
10792
11084
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
10793
11085
|
projectId: Scalars['ID'];
|
|
10794
11086
|
};
|
|
@@ -11086,6 +11378,7 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
11086
11378
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
11087
11379
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
11088
11380
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
11381
|
+
approvalState?: Maybe<JiraServiceManagementApprovalState>;
|
|
11089
11382
|
};
|
|
11090
11383
|
export declare type JiraServiceManagementActiveApprovalApproversArgs = {
|
|
11091
11384
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -11146,6 +11439,10 @@ export declare type JiraServiceManagementApprovalFieldCompletedApprovalsConnecti
|
|
|
11146
11439
|
last?: Maybe<Scalars['Int']>;
|
|
11147
11440
|
before?: Maybe<Scalars['String']>;
|
|
11148
11441
|
};
|
|
11442
|
+
export declare enum JiraServiceManagementApprovalState {
|
|
11443
|
+
InsufficientApprovers = "INSUFFICIENT_APPROVERS",
|
|
11444
|
+
Ok = "OK"
|
|
11445
|
+
}
|
|
11149
11446
|
export declare type JiraServiceManagementApprovalStatus = {
|
|
11150
11447
|
__typename?: 'JiraServiceManagementApprovalStatus';
|
|
11151
11448
|
id?: Maybe<Scalars['String']>;
|
|
@@ -11432,6 +11729,11 @@ export declare enum JiraServiceManagementPractice {
|
|
|
11432
11729
|
ChangeManagement = "CHANGE_MANAGEMENT",
|
|
11433
11730
|
PostIncidentReview = "POST_INCIDENT_REVIEW"
|
|
11434
11731
|
}
|
|
11732
|
+
export declare type JiraServiceManagementProjectNavigationMetadata = {
|
|
11733
|
+
__typename?: 'JiraServiceManagementProjectNavigationMetadata';
|
|
11734
|
+
queueId: Scalars['ID'];
|
|
11735
|
+
queueName: Scalars['String'];
|
|
11736
|
+
};
|
|
11435
11737
|
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
11436
11738
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
11437
11739
|
id: Scalars['ID'];
|
|
@@ -11761,6 +12063,13 @@ export declare type JiraSingleVersionPickerFieldVersionsArgs = {
|
|
|
11761
12063
|
before?: Maybe<Scalars['String']>;
|
|
11762
12064
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
11763
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
|
+
};
|
|
11764
12073
|
export declare type JiraSprint = Node & {
|
|
11765
12074
|
__typename?: 'JiraSprint';
|
|
11766
12075
|
id: Scalars['ID'];
|
|
@@ -11909,6 +12218,7 @@ export declare type JiraTeam = Node & {
|
|
|
11909
12218
|
description?: Maybe<Scalars['String']>;
|
|
11910
12219
|
avatar?: Maybe<JiraAvatar>;
|
|
11911
12220
|
members?: Maybe<JiraUserConnection>;
|
|
12221
|
+
isShared?: Maybe<Scalars['Boolean']>;
|
|
11912
12222
|
};
|
|
11913
12223
|
export declare type JiraTeamConnection = {
|
|
11914
12224
|
__typename?: 'JiraTeamConnection';
|
|
@@ -12061,6 +12371,7 @@ export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfigu
|
|
|
12061
12371
|
name: Scalars['String'];
|
|
12062
12372
|
description?: Maybe<Scalars['String']>;
|
|
12063
12373
|
url?: Maybe<Scalars['URL']>;
|
|
12374
|
+
urlValue?: Maybe<Scalars['String']>;
|
|
12064
12375
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
12065
12376
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
12066
12377
|
};
|
|
@@ -12285,6 +12596,10 @@ export declare type JiraWorkLogEdge = {
|
|
|
12285
12596
|
node?: Maybe<JiraWorklog>;
|
|
12286
12597
|
cursor: Scalars['String'];
|
|
12287
12598
|
};
|
|
12599
|
+
export declare type JiraWorkManagementProjectNavigationMetadata = {
|
|
12600
|
+
__typename?: 'JiraWorkManagementProjectNavigationMetadata';
|
|
12601
|
+
boardName: Scalars['String'];
|
|
12602
|
+
};
|
|
12288
12603
|
export declare type JiraWorklog = Node & {
|
|
12289
12604
|
__typename?: 'JiraWorklog';
|
|
12290
12605
|
id: Scalars['ID'];
|
|
@@ -12762,44 +13077,9 @@ export declare type Mutation = {
|
|
|
12762
13077
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
12763
13078
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
12764
13079
|
deleteDevOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload>;
|
|
12765
|
-
shepherd?: Maybe<ShepherdMutation>;
|
|
12766
|
-
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
12767
|
-
jsw?: Maybe<JswMutation>;
|
|
12768
|
-
createColumn?: Maybe<CreateColumnOutput>;
|
|
12769
|
-
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
12770
|
-
rankColumn?: Maybe<RankColumnOutput>;
|
|
12771
|
-
setColumnLimit?: Maybe<SetColumnLimitOutput>;
|
|
12772
|
-
deleteColumn?: Maybe<DeleteColumnOutput>;
|
|
12773
|
-
startSprint?: Maybe<SprintResponse>;
|
|
12774
|
-
createSprint?: Maybe<CreateSprintResponse>;
|
|
12775
|
-
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
12776
|
-
deleteSprint?: Maybe<MutationResponse>;
|
|
12777
|
-
moveSprintUp?: Maybe<MoveSprintUpResponse>;
|
|
12778
|
-
moveSprintDown?: Maybe<MoveSprintDownResponse>;
|
|
12779
|
-
editSprint?: Maybe<SprintResponse>;
|
|
12780
|
-
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
12781
|
-
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
12782
|
-
setEstimationType?: Maybe<GenericMutationResponse>;
|
|
12783
|
-
createCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
12784
|
-
updateCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
12785
|
-
deleteCustomFilter?: Maybe<GenericMutationResponse>;
|
|
12786
|
-
boardCardMove?: Maybe<MoveCardOutput>;
|
|
12787
|
-
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
12788
|
-
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
12789
|
-
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
12790
|
-
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
12791
|
-
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
12792
|
-
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
12793
|
-
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
12794
|
-
createApp?: Maybe<CreateAppResponse>;
|
|
12795
|
-
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
12796
|
-
deleteApp?: Maybe<DeleteAppResponse>;
|
|
12797
|
-
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
12798
|
-
ecosystem?: Maybe<EcosystemMutation>;
|
|
12799
13080
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
12800
13081
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
12801
13082
|
updateReleaseNote: ContentPlatformReleaseNote;
|
|
12802
|
-
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
12803
13083
|
devOps?: Maybe<DevOpsMutation>;
|
|
12804
13084
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
12805
13085
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -12819,16 +13099,6 @@ export declare type Mutation = {
|
|
|
12819
13099
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
12820
13100
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
12821
13101
|
jira?: Maybe<JiraMutation>;
|
|
12822
|
-
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
12823
|
-
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
12824
|
-
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
12825
|
-
createDevOpsServiceRelationship?: Maybe<CreateDevOpsServiceRelationshipPayload>;
|
|
12826
|
-
updateDevOpsServiceRelationship?: Maybe<UpdateDevOpsServiceRelationshipPayload>;
|
|
12827
|
-
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
12828
|
-
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
12829
|
-
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
12830
|
-
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
12831
|
-
roadmaps?: Maybe<RoadmapsMutation>;
|
|
12832
13102
|
appStorage?: Maybe<AppStorageMutation>;
|
|
12833
13103
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
12834
13104
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
@@ -12888,123 +13158,75 @@ export declare type Mutation = {
|
|
|
12888
13158
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
12889
13159
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
12890
13160
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
12891
|
-
installApp?: Maybe<AppInstallationResponse>;
|
|
12892
|
-
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
12893
|
-
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
12894
|
-
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
12895
|
-
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
12896
|
-
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
12897
|
-
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
12898
|
-
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
12899
|
-
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
12900
|
-
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
12901
|
-
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
12902
|
-
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
12903
|
-
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
12904
13161
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
12905
|
-
|
|
12906
|
-
|
|
12907
|
-
|
|
12908
|
-
|
|
12909
|
-
|
|
12910
|
-
|
|
12911
|
-
|
|
12912
|
-
|
|
12913
|
-
|
|
12914
|
-
|
|
12915
|
-
|
|
12916
|
-
|
|
12917
|
-
|
|
12918
|
-
|
|
12919
|
-
|
|
12920
|
-
|
|
12921
|
-
|
|
12922
|
-
|
|
12923
|
-
|
|
12924
|
-
|
|
12925
|
-
|
|
12926
|
-
|
|
12927
|
-
|
|
12928
|
-
|
|
12929
|
-
|
|
12930
|
-
|
|
12931
|
-
|
|
12932
|
-
|
|
12933
|
-
|
|
12934
|
-
|
|
12935
|
-
|
|
12936
|
-
|
|
12937
|
-
|
|
12938
|
-
|
|
12939
|
-
|
|
12940
|
-
|
|
12941
|
-
|
|
12942
|
-
|
|
12943
|
-
|
|
12944
|
-
|
|
12945
|
-
|
|
12946
|
-
|
|
12947
|
-
|
|
12948
|
-
|
|
12949
|
-
|
|
12950
|
-
|
|
12951
|
-
|
|
12952
|
-
|
|
12953
|
-
|
|
12954
|
-
|
|
12955
|
-
|
|
12956
|
-
|
|
12957
|
-
|
|
12958
|
-
|
|
12959
|
-
|
|
12960
|
-
|
|
12961
|
-
|
|
12962
|
-
|
|
12963
|
-
|
|
12964
|
-
export declare type MutationCreateCustomFilterArgs = {
|
|
12965
|
-
input?: Maybe<CreateCustomFilterInput>;
|
|
12966
|
-
};
|
|
12967
|
-
export declare type MutationUpdateCustomFilterArgs = {
|
|
12968
|
-
input?: Maybe<UpdateCustomFilterInput>;
|
|
12969
|
-
};
|
|
12970
|
-
export declare type MutationDeleteCustomFilterArgs = {
|
|
12971
|
-
input?: Maybe<DeleteCustomFilterInput>;
|
|
12972
|
-
};
|
|
12973
|
-
export declare type MutationBoardCardMoveArgs = {
|
|
12974
|
-
input?: Maybe<BoardCardMoveInput>;
|
|
12975
|
-
};
|
|
12976
|
-
export declare type MutationAssignIssueParentArgs = {
|
|
12977
|
-
input?: Maybe<AssignIssueParentInput>;
|
|
12978
|
-
};
|
|
12979
|
-
export declare type MutationUnassignIssueParentArgs = {
|
|
12980
|
-
input?: Maybe<UnassignIssueParentInput>;
|
|
12981
|
-
};
|
|
12982
|
-
export declare type MutationCreateCardParentArgs = {
|
|
12983
|
-
input: CardParentCreateInput;
|
|
12984
|
-
};
|
|
12985
|
-
export declare type MutationRankCardParentArgs = {
|
|
12986
|
-
input: CardParentRankInput;
|
|
12987
|
-
};
|
|
12988
|
-
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
12989
|
-
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
12990
|
-
};
|
|
12991
|
-
export declare type MutationToggleBoardFeatureArgs = {
|
|
12992
|
-
input?: Maybe<ToggleBoardFeatureInput>;
|
|
12993
|
-
};
|
|
12994
|
-
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
12995
|
-
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
12996
|
-
};
|
|
12997
|
-
export declare type MutationCreateAppArgs = {
|
|
12998
|
-
input: CreateAppInput;
|
|
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>;
|
|
13207
|
+
installApp?: Maybe<AppInstallationResponse>;
|
|
13208
|
+
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
13209
|
+
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
13210
|
+
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
13211
|
+
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
13212
|
+
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
13213
|
+
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
13214
|
+
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
13215
|
+
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
13216
|
+
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
13217
|
+
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
13218
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
13219
|
+
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
13220
|
+
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
12999
13221
|
};
|
|
13000
|
-
export declare type
|
|
13001
|
-
input:
|
|
13222
|
+
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13223
|
+
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
13002
13224
|
};
|
|
13003
|
-
export declare type
|
|
13004
|
-
input:
|
|
13225
|
+
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13226
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
13005
13227
|
};
|
|
13006
|
-
export declare type
|
|
13007
|
-
input:
|
|
13228
|
+
export declare type MutationDeleteDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
13229
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput;
|
|
13008
13230
|
};
|
|
13009
13231
|
export declare type MutationCreateReleaseNoteArgs = {
|
|
13010
13232
|
changeStatus?: Maybe<Scalars['String']>;
|
|
@@ -13042,9 +13264,6 @@ export declare type MutationUpdateReleaseNoteArgs = {
|
|
|
13042
13264
|
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
13043
13265
|
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
13044
13266
|
};
|
|
13045
|
-
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
13046
|
-
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
13047
|
-
};
|
|
13048
13267
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
13049
13268
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
13050
13269
|
};
|
|
@@ -13096,33 +13315,6 @@ export declare type MutationUpdateJiraProjectAndRepositoryRelationshipArgs = {
|
|
|
13096
13315
|
export declare type MutationDeleteJiraProjectAndRepositoryRelationshipArgs = {
|
|
13097
13316
|
input: DeleteJiraProjectAndRepositoryRelationshipInput;
|
|
13098
13317
|
};
|
|
13099
|
-
export declare type MutationCreateDevOpsServiceArgs = {
|
|
13100
|
-
input: CreateDevOpsServiceInput;
|
|
13101
|
-
};
|
|
13102
|
-
export declare type MutationUpdateDevOpsServiceArgs = {
|
|
13103
|
-
input: UpdateDevOpsServiceInput;
|
|
13104
|
-
};
|
|
13105
|
-
export declare type MutationDeleteDevOpsServiceArgs = {
|
|
13106
|
-
input: DeleteDevOpsServiceInput;
|
|
13107
|
-
};
|
|
13108
|
-
export declare type MutationCreateDevOpsServiceRelationshipArgs = {
|
|
13109
|
-
input: CreateDevOpsServiceRelationshipInput;
|
|
13110
|
-
};
|
|
13111
|
-
export declare type MutationUpdateDevOpsServiceRelationshipArgs = {
|
|
13112
|
-
input: UpdateDevOpsServiceRelationshipInput;
|
|
13113
|
-
};
|
|
13114
|
-
export declare type MutationDeleteDevOpsServiceRelationshipArgs = {
|
|
13115
|
-
input: DeleteDevOpsServiceRelationshipInput;
|
|
13116
|
-
};
|
|
13117
|
-
export declare type MutationUpdateDevOpsServiceEntityPropertiesArgs = {
|
|
13118
|
-
input: UpdateDevOpsServiceEntityPropertiesInput;
|
|
13119
|
-
};
|
|
13120
|
-
export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
13121
|
-
input: DeleteDevOpsServiceEntityPropertiesInput;
|
|
13122
|
-
};
|
|
13123
|
-
export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
13124
|
-
input: UpdateDeveloperLogAccessInput;
|
|
13125
|
-
};
|
|
13126
13318
|
export declare type MutationUpdatePolarisTermsConsentArgs = {
|
|
13127
13319
|
input: UpdatePolarisTermsConsentInput;
|
|
13128
13320
|
};
|
|
@@ -13303,6 +13495,129 @@ export declare type MutationWatchMarketplaceAppArgs = {
|
|
|
13303
13495
|
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
13304
13496
|
id: Scalars['ID'];
|
|
13305
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
|
+
};
|
|
13306
13621
|
export declare type MutationInstallAppArgs = {
|
|
13307
13622
|
input: AppInstallationInput;
|
|
13308
13623
|
};
|
|
@@ -14592,36 +14907,16 @@ export declare type ProjectAvatars = {
|
|
|
14592
14907
|
};
|
|
14593
14908
|
export declare type Query = {
|
|
14594
14909
|
__typename?: 'Query';
|
|
14595
|
-
echo?: Maybe<Scalars['String']>;
|
|
14596
|
-
diagnostics?: Maybe<Scalars['JSON']>;
|
|
14597
|
-
node?: Maybe<Node>;
|
|
14598
14910
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
14599
14911
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
14600
|
-
activities?: Maybe<Activities>;
|
|
14601
|
-
activity?: Maybe<Activity>;
|
|
14602
|
-
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
14603
|
-
shepherd?: Maybe<ShepherdQuery>;
|
|
14604
14912
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
14605
14913
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
14606
|
-
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
14607
|
-
jsw?: Maybe<JswQuery>;
|
|
14608
|
-
boardScope?: Maybe<BoardScope>;
|
|
14609
|
-
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
14610
|
-
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
14611
|
-
apps?: Maybe<AppConnection>;
|
|
14612
|
-
app?: Maybe<App>;
|
|
14613
|
-
appHostServices?: Maybe<Array<AppHostService>>;
|
|
14614
14914
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
14615
14915
|
releaseNote: ContentPlatformReleaseNote;
|
|
14616
14916
|
practicePages: ContentPlatformPracticePagesConnection;
|
|
14617
14917
|
practicePage: ContentPlatformPracticePage;
|
|
14618
14918
|
smarts?: Maybe<SmartsQueryApi>;
|
|
14619
|
-
devOpsTools?: Maybe<DevOpsTools>;
|
|
14620
|
-
search?: Maybe<SearchQueryApi>;
|
|
14621
14919
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
14622
|
-
me: AuthenticationContext;
|
|
14623
|
-
user?: Maybe<User>;
|
|
14624
|
-
users?: Maybe<Array<User>>;
|
|
14625
14920
|
devOps?: Maybe<DevOps>;
|
|
14626
14921
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
14627
14922
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -14640,20 +14935,8 @@ export declare type Query = {
|
|
|
14640
14935
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
14641
14936
|
codeInJira?: Maybe<CodeInJira>;
|
|
14642
14937
|
jira?: Maybe<JiraQuery>;
|
|
14643
|
-
devOpsService?: Maybe<DevOpsService>;
|
|
14644
|
-
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
14645
|
-
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
14646
|
-
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
14647
|
-
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
14648
|
-
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
14649
14938
|
avocado?: Maybe<Avocado>;
|
|
14650
|
-
appLogs?: Maybe<AppLogConnection>;
|
|
14651
|
-
appLogLines?: Maybe<AppLogLineConnection>;
|
|
14652
|
-
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
14653
|
-
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
14654
14939
|
team?: Maybe<TeamQuery>;
|
|
14655
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
14656
|
-
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
14657
14940
|
testing?: Maybe<Testing>;
|
|
14658
14941
|
movie?: Maybe<TestingMovie>;
|
|
14659
14942
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
@@ -14686,45 +14969,52 @@ export declare type Query = {
|
|
|
14686
14969
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
14687
14970
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
14688
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>>>;
|
|
14689
15008
|
jiraReleases?: Maybe<JiraReleases>;
|
|
14690
15009
|
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
14691
15010
|
ecosystem?: Maybe<EcosystemQuery>;
|
|
14692
15011
|
appDeployment?: Maybe<AppDeployment>;
|
|
14693
15012
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
14694
15013
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
14695
|
-
compass?: Maybe<CompassCatalogQueryApi>;
|
|
14696
|
-
extensionsEcho?: Maybe<Scalars['String']>;
|
|
14697
|
-
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
14698
|
-
extensionByKey?: Maybe<Extension>;
|
|
14699
|
-
};
|
|
14700
|
-
export declare type QueryNodeArgs = {
|
|
14701
|
-
id: Scalars['ID'];
|
|
14702
15014
|
};
|
|
14703
15015
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
14704
15016
|
id: Scalars['ID'];
|
|
14705
15017
|
};
|
|
14706
|
-
export declare type QueryBoardScopeArgs = {
|
|
14707
|
-
boardId: Scalars['ID'];
|
|
14708
|
-
};
|
|
14709
|
-
export declare type QueryDevelopmentInformationArgs = {
|
|
14710
|
-
issueId: Scalars['ID'];
|
|
14711
|
-
};
|
|
14712
|
-
export declare type QuerySoftwareBoardsArgs = {
|
|
14713
|
-
projectAri: Scalars['ID'];
|
|
14714
|
-
};
|
|
14715
|
-
export declare type QueryAppsArgs = {
|
|
14716
|
-
first?: Maybe<Scalars['Int']>;
|
|
14717
|
-
after?: Maybe<Scalars['String']>;
|
|
14718
|
-
last?: Maybe<Scalars['Int']>;
|
|
14719
|
-
before?: Maybe<Scalars['String']>;
|
|
14720
|
-
filter?: Maybe<AppsFilter>;
|
|
14721
|
-
};
|
|
14722
|
-
export declare type QueryAppArgs = {
|
|
14723
|
-
id: Scalars['ID'];
|
|
14724
|
-
};
|
|
14725
|
-
export declare type QueryAppHostServicesArgs = {
|
|
14726
|
-
filter?: Maybe<AppServicesFilter>;
|
|
14727
|
-
};
|
|
14728
15018
|
export declare type QueryReleaseNotesArgs = {
|
|
14729
15019
|
after?: Maybe<Scalars['String']>;
|
|
14730
15020
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14743,12 +15033,6 @@ export declare type QueryPracticePagesArgs = {
|
|
|
14743
15033
|
export declare type QueryPracticePageArgs = {
|
|
14744
15034
|
id: Scalars['String'];
|
|
14745
15035
|
};
|
|
14746
|
-
export declare type QueryUserArgs = {
|
|
14747
|
-
accountId: Scalars['ID'];
|
|
14748
|
-
};
|
|
14749
|
-
export declare type QueryUsersArgs = {
|
|
14750
|
-
accountIds: Array<Scalars['ID']>;
|
|
14751
|
-
};
|
|
14752
15036
|
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
14753
15037
|
id: Scalars['ID'];
|
|
14754
15038
|
cloudId: Scalars['ID'];
|
|
@@ -14826,56 +15110,6 @@ export declare type QueryJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
|
14826
15110
|
export declare type QueryCodeInJiraArgs = {
|
|
14827
15111
|
cloudId: Scalars['ID'];
|
|
14828
15112
|
};
|
|
14829
|
-
export declare type QueryDevOpsServiceArgs = {
|
|
14830
|
-
id: Scalars['ID'];
|
|
14831
|
-
};
|
|
14832
|
-
export declare type QueryDevOpsServiceTiersArgs = {
|
|
14833
|
-
cloudId: Scalars['String'];
|
|
14834
|
-
};
|
|
14835
|
-
export declare type QueryDevOpsServicesArgs = {
|
|
14836
|
-
cloudId: Scalars['String'];
|
|
14837
|
-
first?: Maybe<Scalars['Int']>;
|
|
14838
|
-
after?: Maybe<Scalars['String']>;
|
|
14839
|
-
filter?: Maybe<DevOpsServicesFilterInput>;
|
|
14840
|
-
};
|
|
14841
|
-
export declare type QueryDevOpsServicesByIdArgs = {
|
|
14842
|
-
ids: Array<Scalars['ID']>;
|
|
14843
|
-
};
|
|
14844
|
-
export declare type QueryDevOpsServiceRelationshipArgs = {
|
|
14845
|
-
id: Scalars['ID'];
|
|
14846
|
-
};
|
|
14847
|
-
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
14848
|
-
cloudId: Scalars['ID'];
|
|
14849
|
-
first?: Maybe<Scalars['Int']>;
|
|
14850
|
-
after?: Maybe<Scalars['String']>;
|
|
14851
|
-
nameFilter?: Maybe<Scalars['String']>;
|
|
14852
|
-
};
|
|
14853
|
-
export declare type QueryAppLogsArgs = {
|
|
14854
|
-
last?: Maybe<Scalars['Int']>;
|
|
14855
|
-
first?: Maybe<Scalars['Int']>;
|
|
14856
|
-
before?: Maybe<Scalars['String']>;
|
|
14857
|
-
after?: Maybe<Scalars['String']>;
|
|
14858
|
-
appId: Scalars['ID'];
|
|
14859
|
-
environmentId: Array<Scalars['ID']>;
|
|
14860
|
-
query?: Maybe<LogQueryInput>;
|
|
14861
|
-
};
|
|
14862
|
-
export declare type QueryAppLogLinesArgs = {
|
|
14863
|
-
first?: Maybe<Scalars['Int']>;
|
|
14864
|
-
after?: Maybe<Scalars['String']>;
|
|
14865
|
-
invocation: Scalars['ID'];
|
|
14866
|
-
};
|
|
14867
|
-
export declare type QueryDeveloperLogAccessArgs = {
|
|
14868
|
-
contextIds: Array<Scalars['ID']>;
|
|
14869
|
-
appId: Scalars['ID'];
|
|
14870
|
-
environmentType: AppEnvironmentType;
|
|
14871
|
-
};
|
|
14872
|
-
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
14873
|
-
appId: Scalars['ID'];
|
|
14874
|
-
};
|
|
14875
|
-
export declare type QueryTenantContextsArgs = {
|
|
14876
|
-
cloudIds?: Maybe<Array<Scalars['ID']>>;
|
|
14877
|
-
hostNames?: Maybe<Array<Scalars['String']>>;
|
|
14878
|
-
};
|
|
14879
15113
|
export declare type QueryMovieArgs = {
|
|
14880
15114
|
id: Scalars['ID'];
|
|
14881
15115
|
};
|
|
@@ -14975,17 +15209,6 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
14975
15209
|
hostingType: AtlassianProductHostingType;
|
|
14976
15210
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
14977
15211
|
};
|
|
14978
|
-
export declare type QueryAppInstallationTaskArgs = {
|
|
14979
|
-
id: Scalars['ID'];
|
|
14980
|
-
};
|
|
14981
|
-
export declare type QueryAppDeploymentArgs = {
|
|
14982
|
-
appId: Scalars['ID'];
|
|
14983
|
-
environmentKey: Scalars['String'];
|
|
14984
|
-
id: Scalars['ID'];
|
|
14985
|
-
};
|
|
14986
|
-
export declare type QueryHelpCenterArgs = {
|
|
14987
|
-
cloudId: Scalars['ID'];
|
|
14988
|
-
};
|
|
14989
15212
|
export declare type QueryExtensionsEchoArgs = {
|
|
14990
15213
|
text: Scalars['String'];
|
|
14991
15214
|
};
|
|
@@ -14997,6 +15220,98 @@ export declare type QueryExtensionByKeyArgs = {
|
|
|
14997
15220
|
definitionId: Scalars['ID'];
|
|
14998
15221
|
extensionKey: Scalars['String'];
|
|
14999
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
|
+
};
|
|
15000
15315
|
export declare type QueryError = {
|
|
15001
15316
|
__typename?: 'QueryError';
|
|
15002
15317
|
identifier?: Maybe<Scalars['ID']>;
|
|
@@ -15034,12 +15349,14 @@ export declare enum RateLimitingCurrency {
|
|
|
15034
15349
|
TestingService = "TESTING_SERVICE",
|
|
15035
15350
|
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
15036
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",
|
|
15037
15356
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
15038
15357
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
15039
15358
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
15040
|
-
|
|
15041
|
-
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
15042
|
-
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
15359
|
+
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY"
|
|
15043
15360
|
}
|
|
15044
15361
|
export declare type RawStatus = {
|
|
15045
15362
|
__typename?: 'RawStatus';
|
|
@@ -15538,6 +15855,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
15538
15855
|
creationPreferences: RoadmapCreationPreferences;
|
|
15539
15856
|
isDependenciesVisible: Scalars['Boolean'];
|
|
15540
15857
|
isProgressVisible: Scalars['Boolean'];
|
|
15858
|
+
isWarningsVisible: Scalars['Boolean'];
|
|
15541
15859
|
listWidth: Scalars['Long'];
|
|
15542
15860
|
timelineMode: RoadmapTimelineMode;
|
|
15543
15861
|
epicView: RoadmapEpicView;
|
|
@@ -15983,9 +16301,15 @@ export declare type SearchAnalyticsInput = {
|
|
|
15983
16301
|
searchReferrerId?: Maybe<Scalars['String']>;
|
|
15984
16302
|
};
|
|
15985
16303
|
export declare type SearchBoardFilter = {
|
|
15986
|
-
projectARI
|
|
16304
|
+
projectARI?: Maybe<Scalars['ID']>;
|
|
16305
|
+
userARI?: Maybe<Scalars['ID']>;
|
|
15987
16306
|
negateProjectFilter?: Maybe<Scalars['Boolean']>;
|
|
16307
|
+
boardTypes?: Maybe<Array<SearchBoardProductType>>;
|
|
15988
16308
|
};
|
|
16309
|
+
export declare enum SearchBoardProductType {
|
|
16310
|
+
Software = "SOFTWARE",
|
|
16311
|
+
Business = "BUSINESS"
|
|
16312
|
+
}
|
|
15989
16313
|
export declare type SearchConfluenceFilter = {
|
|
15990
16314
|
spacesFilter?: Maybe<Array<Scalars['String']>>;
|
|
15991
16315
|
contributorsFilter?: Maybe<Array<Scalars['String']>>;
|
|
@@ -16100,8 +16424,10 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
16100
16424
|
type: SearchResultType;
|
|
16101
16425
|
description: Scalars['String'];
|
|
16102
16426
|
favourite: Scalars['Boolean'];
|
|
16103
|
-
boardId
|
|
16427
|
+
boardId?: Maybe<Scalars['ID']>;
|
|
16104
16428
|
container?: Maybe<SearchResultJiraBoardContainer>;
|
|
16429
|
+
product: SearchBoardProductType;
|
|
16430
|
+
isSimpleBoard: Scalars['Boolean'];
|
|
16105
16431
|
};
|
|
16106
16432
|
export declare type SearchResultJiraBoardContainer = SearchResultJiraBoardProjectContainer | SearchResultJiraBoardUserContainer;
|
|
16107
16433
|
export declare type SearchResultJiraBoardProjectContainer = {
|
|
@@ -16129,7 +16455,22 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
16129
16455
|
type: SearchResultType;
|
|
16130
16456
|
description: Scalars['String'];
|
|
16131
16457
|
favourite: Scalars['Boolean'];
|
|
16458
|
+
canView: Scalars['Boolean'];
|
|
16132
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'];
|
|
16133
16474
|
};
|
|
16134
16475
|
export declare enum SearchResultType {
|
|
16135
16476
|
Blogpost = "blogpost",
|
|
@@ -16140,6 +16481,10 @@ export declare enum SearchResultType {
|
|
|
16140
16481
|
Plan = "plan",
|
|
16141
16482
|
Project = "project"
|
|
16142
16483
|
}
|
|
16484
|
+
export declare type SearchResultWorkManagementProjectLandingPageInfo = {
|
|
16485
|
+
__typename?: 'SearchResultWorkManagementProjectLandingPageInfo';
|
|
16486
|
+
boardName: Scalars['String'];
|
|
16487
|
+
};
|
|
16143
16488
|
export declare type SearchSpace = {
|
|
16144
16489
|
__typename?: 'SearchSpace';
|
|
16145
16490
|
key: Scalars['String'];
|
|
@@ -16264,7 +16609,7 @@ export declare type ShepherdAlert = {
|
|
|
16264
16609
|
assignee?: Maybe<ShepherdUser>;
|
|
16265
16610
|
cloudId?: Maybe<Scalars['ID']>;
|
|
16266
16611
|
createdOn: Scalars['DateTime'];
|
|
16267
|
-
description?: Maybe<
|
|
16612
|
+
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
16268
16613
|
id: Scalars['ID'];
|
|
16269
16614
|
orgId: Scalars['ID'];
|
|
16270
16615
|
status: ShepherdAlertStatus;
|
|
@@ -16314,6 +16659,11 @@ export declare type ShepherdAppInfo = {
|
|
|
16314
16659
|
env: Scalars['String'];
|
|
16315
16660
|
loginUrl: Scalars['String'];
|
|
16316
16661
|
};
|
|
16662
|
+
export declare type ShepherdConfig = {
|
|
16663
|
+
__typename?: 'ShepherdConfig';
|
|
16664
|
+
descriptionTemplates?: Maybe<Array<Maybe<ShepherdDescriptionTemplate>>>;
|
|
16665
|
+
};
|
|
16666
|
+
export declare type ShepherdConfigResult = QueryError | ShepherdConfig;
|
|
16317
16667
|
export declare type ShepherdCreateAlertInput = {
|
|
16318
16668
|
assignee?: Maybe<Scalars['ID']>;
|
|
16319
16669
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -16373,6 +16723,11 @@ export declare type ShepherdDescriptionSection = {
|
|
|
16373
16723
|
text?: Maybe<Scalars['JSON']>;
|
|
16374
16724
|
type?: Maybe<ShepherdAlertDescriptionType>;
|
|
16375
16725
|
};
|
|
16726
|
+
export declare type ShepherdDescriptionTemplate = {
|
|
16727
|
+
__typename?: 'ShepherdDescriptionTemplate';
|
|
16728
|
+
text?: Maybe<Scalars['JSON']>;
|
|
16729
|
+
type?: Maybe<ShepherdAlertTemplateType>;
|
|
16730
|
+
};
|
|
16376
16731
|
export declare type ShepherdEmailConnection = {
|
|
16377
16732
|
__typename?: 'ShepherdEmailConnection';
|
|
16378
16733
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -16450,6 +16805,7 @@ export declare type ShepherdQuery = {
|
|
|
16450
16805
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
16451
16806
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
16452
16807
|
shepherdAppInfo: ShepherdAppInfo;
|
|
16808
|
+
shepherdConfig?: Maybe<ShepherdConfigResult>;
|
|
16453
16809
|
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
16454
16810
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
16455
16811
|
};
|
|
@@ -16828,8 +17184,11 @@ export declare type Storage = {
|
|
|
16828
17184
|
};
|
|
16829
17185
|
export declare type Subscription = {
|
|
16830
17186
|
__typename?: 'Subscription';
|
|
16831
|
-
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
16832
17187
|
onTestingActivityItemUpdate?: Maybe<Node>;
|
|
17188
|
+
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
17189
|
+
};
|
|
17190
|
+
export declare type SubscriptionOnTestingActivityItemUpdateArgs = {
|
|
17191
|
+
issueId: Scalars['ID'];
|
|
16833
17192
|
};
|
|
16834
17193
|
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
16835
17194
|
cloudId: Scalars['ID'];
|
|
@@ -16837,9 +17196,6 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
16837
17196
|
projectType?: JiraProjectType;
|
|
16838
17197
|
filter?: JiraProjectFilterInput;
|
|
16839
17198
|
};
|
|
16840
|
-
export declare type SubscriptionOnTestingActivityItemUpdateArgs = {
|
|
16841
|
-
issueId: Scalars['ID'];
|
|
16842
|
-
};
|
|
16843
17199
|
export declare type SupportRequest = {
|
|
16844
17200
|
__typename?: 'SupportRequest';
|
|
16845
17201
|
id: Scalars['ID'];
|
|
@@ -16889,8 +17245,11 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
16889
17245
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
16890
17246
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
16891
17247
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
17248
|
+
removeSupportRequestOrganizations?: Maybe<Array<SupportRequestOrganization>>;
|
|
17249
|
+
addSupportRequestOrganizations?: Maybe<Array<SupportRequestOrganization>>;
|
|
16892
17250
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
16893
17251
|
updateSupportRequest?: Maybe<SupportRequest>;
|
|
17252
|
+
supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
|
|
16894
17253
|
};
|
|
16895
17254
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
16896
17255
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -16904,6 +17263,12 @@ export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArg
|
|
|
16904
17263
|
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
16905
17264
|
input: SupportRequestParticipantsInput;
|
|
16906
17265
|
};
|
|
17266
|
+
export declare type SupportRequestCatalogMutationApiRemoveSupportRequestOrganizationsArgs = {
|
|
17267
|
+
input: SupportRequestOrganizationsInput;
|
|
17268
|
+
};
|
|
17269
|
+
export declare type SupportRequestCatalogMutationApiAddSupportRequestOrganizationsArgs = {
|
|
17270
|
+
input: SupportRequestOrganizationsInput;
|
|
17271
|
+
};
|
|
16907
17272
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
16908
17273
|
emails: Array<Scalars['String']>;
|
|
16909
17274
|
organizationId?: Maybe<Scalars['String']>;
|
|
@@ -16918,6 +17283,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
16918
17283
|
me?: Maybe<SupportRequestPage>;
|
|
16919
17284
|
supportRequest?: Maybe<SupportRequest>;
|
|
16920
17285
|
users?: Maybe<SupportRequestUsers>;
|
|
17286
|
+
supportRequestContext?: Maybe<SupportRequestContextQueryApi>;
|
|
16921
17287
|
};
|
|
16922
17288
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
16923
17289
|
key: Scalars['ID'];
|
|
@@ -16942,6 +17308,24 @@ export declare type SupportRequestContactRelation = {
|
|
|
16942
17308
|
openRequest?: Maybe<SupportRequestTicket>;
|
|
16943
17309
|
contact?: Maybe<SupportRequestUser>;
|
|
16944
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
|
+
};
|
|
16945
17329
|
export declare type SupportRequestDisplayableDateTime = {
|
|
16946
17330
|
__typename?: 'SupportRequestDisplayableDateTime';
|
|
16947
17331
|
dateTime: Scalars['String'];
|
|
@@ -17006,6 +17390,19 @@ export declare type SupportRequestNamedContactRelations = {
|
|
|
17006
17390
|
cloudEnterpriseRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17007
17391
|
premierSupportRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17008
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
|
+
};
|
|
17009
17406
|
export declare type SupportRequestPage = {
|
|
17010
17407
|
__typename?: 'SupportRequestPage';
|
|
17011
17408
|
profile?: Maybe<SupportRequestUser>;
|
|
@@ -17116,11 +17513,16 @@ export declare enum SupportRequestUserType {
|
|
|
17116
17513
|
export declare type SupportRequestUsers = {
|
|
17117
17514
|
__typename?: 'SupportRequestUsers';
|
|
17118
17515
|
searchUsers: Array<SupportRequestUser>;
|
|
17516
|
+
searchOrganizations: Array<SupportRequestOrganization>;
|
|
17119
17517
|
};
|
|
17120
17518
|
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
17121
17519
|
query?: Maybe<Scalars['String']>;
|
|
17122
17520
|
requestKey?: Maybe<Scalars['String']>;
|
|
17123
17521
|
};
|
|
17522
|
+
export declare type SupportRequestUsersSearchOrganizationsArgs = {
|
|
17523
|
+
query?: Maybe<Scalars['String']>;
|
|
17524
|
+
requestKey?: Maybe<Scalars['String']>;
|
|
17525
|
+
};
|
|
17124
17526
|
export declare type SupportRequests = {
|
|
17125
17527
|
__typename?: 'SupportRequests';
|
|
17126
17528
|
total: Scalars['Int'];
|
|
@@ -17681,6 +18083,16 @@ export declare type UpdateCompassComponentPayload = Payload & {
|
|
|
17681
18083
|
errors?: Maybe<Array<MutationError>>;
|
|
17682
18084
|
componentDetails?: Maybe<CompassComponent>;
|
|
17683
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
|
+
};
|
|
17684
18096
|
export declare type UpdateCompassFieldInput = {
|
|
17685
18097
|
definition: Scalars['ID'];
|
|
17686
18098
|
value: CompassFieldValueInput;
|