@forge/cli-shared 0.0.0-experimental-c3effe3 → 0.0.0-experimental-fbe27f8
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 +122 -3
- package/out/graphql/graphql-types.d.ts +993 -443
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +65 -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 +3 -3
|
@@ -251,7 +251,7 @@ export declare type ActivityObject = {
|
|
|
251
251
|
contributors?: Maybe<Array<ActivityContributor>>;
|
|
252
252
|
data?: Maybe<ActivityObjectData>;
|
|
253
253
|
};
|
|
254
|
-
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost |
|
|
254
|
+
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
255
255
|
export declare enum ActivityObjectType {
|
|
256
256
|
Site = "SITE",
|
|
257
257
|
Project = "PROJECT",
|
|
@@ -321,7 +321,8 @@ export declare enum ApiGroup {
|
|
|
321
321
|
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
322
322
|
Identity = "IDENTITY",
|
|
323
323
|
DevopsAriGraph = "DEVOPS_ARI_GRAPH",
|
|
324
|
-
Help = "HELP"
|
|
324
|
+
Help = "HELP",
|
|
325
|
+
CollaborationGraph = "COLLABORATION_GRAPH"
|
|
325
326
|
}
|
|
326
327
|
export declare type App = {
|
|
327
328
|
__typename?: 'App';
|
|
@@ -604,6 +605,7 @@ export declare type AppInstallationUpgradeInput = {
|
|
|
604
605
|
versionId?: Maybe<Scalars['ID']>;
|
|
605
606
|
environmentKey: Scalars['String'];
|
|
606
607
|
async?: Maybe<Scalars['Boolean']>;
|
|
608
|
+
sourceBillingType?: Maybe<SourceBillingType>;
|
|
607
609
|
};
|
|
608
610
|
export declare type AppInstallationUpgradeResponse = Payload & {
|
|
609
611
|
__typename?: 'AppInstallationUpgradeResponse';
|
|
@@ -877,38 +879,41 @@ export declare type AriGraphRelationshipsArgs = {
|
|
|
877
879
|
filter: AriGraphRelationshipsFilter;
|
|
878
880
|
first?: Maybe<Scalars['Int']>;
|
|
879
881
|
after?: Maybe<Scalars['String']>;
|
|
882
|
+
sort?: Maybe<AriGraphRelationshipsSort>;
|
|
880
883
|
};
|
|
881
|
-
export declare type
|
|
882
|
-
|
|
883
|
-
from: Scalars['ID'];
|
|
884
|
-
to: Scalars['ID'];
|
|
885
|
-
type: Scalars['ID'];
|
|
886
|
-
};
|
|
887
|
-
export declare type AriGraphCreateRelationshipInput = {
|
|
888
|
-
relationships: Array<AriGraphCreateRelationshipInputRelationship>;
|
|
884
|
+
export declare type AriGraphCreateRelationshipsInput = {
|
|
885
|
+
relationships: Array<AriGraphCreateRelationshipsInputRelationship>;
|
|
889
886
|
};
|
|
890
|
-
export declare type
|
|
887
|
+
export declare type AriGraphCreateRelationshipsInputRelationship = {
|
|
891
888
|
from: Scalars['ID'];
|
|
892
889
|
to: Scalars['ID'];
|
|
893
890
|
type: Scalars['ID'];
|
|
894
891
|
};
|
|
895
|
-
export declare type
|
|
896
|
-
__typename?: '
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
892
|
+
export declare type AriGraphCreateRelationshipsPayload = Payload & {
|
|
893
|
+
__typename?: 'AriGraphCreateRelationshipsPayload';
|
|
894
|
+
success: Scalars['Boolean'];
|
|
895
|
+
errors?: Maybe<Array<MutationError>>;
|
|
896
|
+
};
|
|
897
|
+
export declare type AriGraphDeleteRelationshipsInput = {
|
|
898
|
+
from?: Maybe<Scalars['ID']>;
|
|
899
|
+
to?: Maybe<Scalars['ID']>;
|
|
900
|
+
type?: Maybe<Scalars['ID']>;
|
|
900
901
|
};
|
|
901
|
-
export declare type
|
|
902
|
-
__typename?: '
|
|
902
|
+
export declare type AriGraphDeleteRelationshipsPayload = Payload & {
|
|
903
|
+
__typename?: 'AriGraphDeleteRelationshipsPayload';
|
|
903
904
|
success: Scalars['Boolean'];
|
|
904
905
|
errors?: Maybe<Array<MutationError>>;
|
|
905
906
|
};
|
|
906
907
|
export declare type AriGraphMutation = {
|
|
907
908
|
__typename?: 'AriGraphMutation';
|
|
908
|
-
|
|
909
|
+
createRelationships?: Maybe<AriGraphCreateRelationshipsPayload>;
|
|
910
|
+
deleteRelationships?: Maybe<AriGraphDeleteRelationshipsPayload>;
|
|
909
911
|
};
|
|
910
|
-
export declare type
|
|
911
|
-
input:
|
|
912
|
+
export declare type AriGraphMutationCreateRelationshipsArgs = {
|
|
913
|
+
input: AriGraphCreateRelationshipsInput;
|
|
914
|
+
};
|
|
915
|
+
export declare type AriGraphMutationDeleteRelationshipsArgs = {
|
|
916
|
+
input: AriGraphDeleteRelationshipsInput;
|
|
912
917
|
};
|
|
913
918
|
export declare type AriGraphRelationship = {
|
|
914
919
|
__typename?: 'AriGraphRelationship';
|
|
@@ -931,7 +936,14 @@ export declare type AriGraphRelationshipEdge = {
|
|
|
931
936
|
export declare type AriGraphRelationshipNode = {
|
|
932
937
|
__typename?: 'AriGraphRelationshipNode';
|
|
933
938
|
id: Scalars['ID'];
|
|
934
|
-
data?: Maybe<
|
|
939
|
+
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
940
|
+
};
|
|
941
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluenceSpace;
|
|
942
|
+
export declare type AriGraphRelationshipsErrorReference = {
|
|
943
|
+
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
944
|
+
from?: Maybe<Scalars['ID']>;
|
|
945
|
+
to?: Maybe<Scalars['ID']>;
|
|
946
|
+
type: Scalars['ID'];
|
|
935
947
|
};
|
|
936
948
|
export declare type AriGraphRelationshipsFilter = {
|
|
937
949
|
type: Scalars['ID'];
|
|
@@ -940,6 +952,19 @@ export declare type AriGraphRelationshipsFilter = {
|
|
|
940
952
|
updatedFrom?: Maybe<Scalars['DateTime']>;
|
|
941
953
|
updatedTo?: Maybe<Scalars['DateTime']>;
|
|
942
954
|
};
|
|
955
|
+
export declare type AriGraphRelationshipsMutationErrorExtension = MutationErrorExtension & {
|
|
956
|
+
__typename?: 'AriGraphRelationshipsMutationErrorExtension';
|
|
957
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
958
|
+
errorType?: Maybe<Scalars['String']>;
|
|
959
|
+
reference: AriGraphRelationshipsErrorReference;
|
|
960
|
+
};
|
|
961
|
+
export declare type AriGraphRelationshipsSort = {
|
|
962
|
+
lastUpdatedSortDirection?: Maybe<AriGraphRelationshipsSortDirection>;
|
|
963
|
+
};
|
|
964
|
+
export declare enum AriGraphRelationshipsSortDirection {
|
|
965
|
+
Asc = "ASC",
|
|
966
|
+
Desc = "DESC"
|
|
967
|
+
}
|
|
943
968
|
export declare type ArjConfiguration = {
|
|
944
969
|
__typename?: 'ArjConfiguration';
|
|
945
970
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -1151,11 +1176,12 @@ export declare type BitbucketQueryBitbucketRepositoriesArgs = {
|
|
|
1151
1176
|
export declare type BitbucketQueryBitbucketWorkspaceArgs = {
|
|
1152
1177
|
id: Scalars['ID'];
|
|
1153
1178
|
};
|
|
1154
|
-
export declare type BitbucketRepository = Node & {
|
|
1179
|
+
export declare type BitbucketRepository = CodeRepository & Node & {
|
|
1155
1180
|
__typename?: 'BitbucketRepository';
|
|
1156
1181
|
id: Scalars['ID'];
|
|
1157
1182
|
name: Scalars['String'];
|
|
1158
|
-
webUrl
|
|
1183
|
+
webUrl?: Maybe<Scalars['URL']>;
|
|
1184
|
+
href?: Maybe<Scalars['URL']>;
|
|
1159
1185
|
avatar?: Maybe<BitbucketRepositoryAvatar>;
|
|
1160
1186
|
workspace?: Maybe<BitbucketWorkspace>;
|
|
1161
1187
|
jiraProjectRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -1499,6 +1525,7 @@ export declare type CardType = {
|
|
|
1499
1525
|
iconUrl?: Maybe<Scalars['String']>;
|
|
1500
1526
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
1501
1527
|
hierarchyLevelType?: Maybe<Scalars['CardTypeHierarchyLevelType']>;
|
|
1528
|
+
hasRequiredFields?: Maybe<Scalars['Boolean']>;
|
|
1502
1529
|
};
|
|
1503
1530
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
1504
1531
|
cloudId: Scalars['ID'];
|
|
@@ -1549,6 +1576,10 @@ export declare type CodeInJiraVcsProvider = {
|
|
|
1549
1576
|
providerId?: Maybe<Scalars['String']>;
|
|
1550
1577
|
baseUrl?: Maybe<Scalars['String']>;
|
|
1551
1578
|
};
|
|
1579
|
+
export declare type CodeRepository = {
|
|
1580
|
+
name: Scalars['String'];
|
|
1581
|
+
href?: Maybe<Scalars['URL']>;
|
|
1582
|
+
};
|
|
1552
1583
|
export declare type Column = {
|
|
1553
1584
|
__typename?: 'Column';
|
|
1554
1585
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -1678,6 +1709,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1678
1709
|
__typename?: 'CompassCatalogMutationApi';
|
|
1679
1710
|
createComponent?: Maybe<CreateCompassComponentPayload>;
|
|
1680
1711
|
updateComponent?: Maybe<UpdateCompassComponentPayload>;
|
|
1712
|
+
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
1681
1713
|
deleteComponent?: Maybe<DeleteCompassComponentPayload>;
|
|
1682
1714
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
1683
1715
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
@@ -1736,6 +1768,9 @@ export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
|
1736
1768
|
export declare type CompassCatalogMutationApiUpdateComponentArgs = {
|
|
1737
1769
|
input: UpdateCompassComponentInput;
|
|
1738
1770
|
};
|
|
1771
|
+
export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
1772
|
+
input: UpdateCompassComponentTypeInput;
|
|
1773
|
+
};
|
|
1739
1774
|
export declare type CompassCatalogMutationApiDeleteComponentArgs = {
|
|
1740
1775
|
input: DeleteCompassComponentInput;
|
|
1741
1776
|
};
|
|
@@ -2072,7 +2107,6 @@ export declare type CompassCreateComponentSubscriptionInput = {
|
|
|
2072
2107
|
};
|
|
2073
2108
|
export declare type CompassCreateComponentSubscriptionPayload = Payload & {
|
|
2074
2109
|
__typename?: 'CompassCreateComponentSubscriptionPayload';
|
|
2075
|
-
component?: Maybe<CompassComponent>;
|
|
2076
2110
|
success: Scalars['Boolean'];
|
|
2077
2111
|
errors?: Maybe<Array<MutationError>>;
|
|
2078
2112
|
};
|
|
@@ -2155,6 +2189,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
2155
2189
|
weight: Scalars['Int'];
|
|
2156
2190
|
customFieldDefinitionId: Scalars['ID'];
|
|
2157
2191
|
comparator: CompassCriteriaBooleanComparatorOptions;
|
|
2192
|
+
comparatorValue: Scalars['Boolean'];
|
|
2158
2193
|
};
|
|
2159
2194
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
2160
2195
|
weight: Scalars['Int'];
|
|
@@ -2205,6 +2240,7 @@ export declare type CompassCreateMetricSourceInput = {
|
|
|
2205
2240
|
metricDefinitionId: Scalars['ID'];
|
|
2206
2241
|
externalMetricSourceId: Scalars['ID'];
|
|
2207
2242
|
url?: Maybe<Scalars['String']>;
|
|
2243
|
+
derived?: Maybe<Scalars['Boolean']>;
|
|
2208
2244
|
};
|
|
2209
2245
|
export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
2210
2246
|
__typename?: 'CompassCreateMetricSourcePayload';
|
|
@@ -2238,8 +2274,7 @@ export declare type CompassCreateTeamCheckinResponseRichText = {
|
|
|
2238
2274
|
adf?: Maybe<Scalars['String']>;
|
|
2239
2275
|
};
|
|
2240
2276
|
export declare enum CompassCriteriaBooleanComparatorOptions {
|
|
2241
|
-
|
|
2242
|
-
IsFalse = "IS_FALSE"
|
|
2277
|
+
Equals = "EQUALS"
|
|
2243
2278
|
}
|
|
2244
2279
|
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
2245
2280
|
Equals = "EQUALS",
|
|
@@ -2590,6 +2625,7 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassScore
|
|
|
2590
2625
|
weight: Scalars['Int'];
|
|
2591
2626
|
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2592
2627
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2628
|
+
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2593
2629
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2594
2630
|
};
|
|
2595
2631
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -2759,6 +2795,7 @@ export declare type CompassMetricDefinition = {
|
|
|
2759
2795
|
format?: Maybe<CompassMetricDefinitionFormat>;
|
|
2760
2796
|
type: CompassMetricDefinitionType;
|
|
2761
2797
|
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
2798
|
+
derivedEventTypes?: Maybe<Array<CompassEventType>>;
|
|
2762
2799
|
};
|
|
2763
2800
|
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
2764
2801
|
query?: Maybe<CompassMetricSourcesQuery>;
|
|
@@ -2805,6 +2842,7 @@ export declare type CompassMetricSource = {
|
|
|
2805
2842
|
forgeAppId?: Maybe<Scalars['ID']>;
|
|
2806
2843
|
values?: Maybe<CompassMetricSourceValuesQueryResult>;
|
|
2807
2844
|
component?: Maybe<CompassComponent>;
|
|
2845
|
+
derivedFrom?: Maybe<Array<EventSource>>;
|
|
2808
2846
|
};
|
|
2809
2847
|
export declare type CompassMetricSourceValuesArgs = {
|
|
2810
2848
|
query?: Maybe<CompassMetricSourceValuesQuery>;
|
|
@@ -3144,6 +3182,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
3144
3182
|
weight?: Maybe<Scalars['Int']>;
|
|
3145
3183
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3146
3184
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3185
|
+
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
3147
3186
|
};
|
|
3148
3187
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3149
3188
|
id: Scalars['ID'];
|
|
@@ -3272,6 +3311,8 @@ export declare type ConfluenceBlogPost = {
|
|
|
3272
3311
|
__typename?: 'ConfluenceBlogPost';
|
|
3273
3312
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3274
3313
|
blogPostId: Scalars['ID'];
|
|
3314
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3315
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3275
3316
|
id: Scalars['ID'];
|
|
3276
3317
|
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
3277
3318
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
@@ -3283,6 +3324,9 @@ export declare type ConfluenceBlogPost = {
|
|
|
3283
3324
|
type?: Maybe<ConfluenceContentType>;
|
|
3284
3325
|
viewer?: Maybe<ConfluenceBlogPostViewerSummary>;
|
|
3285
3326
|
};
|
|
3327
|
+
export declare type ConfluenceBlogPostCommentsArgs = {
|
|
3328
|
+
commentType?: Maybe<ConfluenceCommentType>;
|
|
3329
|
+
};
|
|
3286
3330
|
export declare type ConfluenceBlogPostPropertiesArgs = {
|
|
3287
3331
|
keys: Array<Maybe<Scalars['String']>>;
|
|
3288
3332
|
};
|
|
@@ -3307,21 +3351,49 @@ export declare enum ConfluenceBlogPostStatus {
|
|
|
3307
3351
|
export declare type ConfluenceBlogPostVersion = {
|
|
3308
3352
|
__typename?: 'ConfluenceBlogPostVersion';
|
|
3309
3353
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3310
|
-
createdAt?: Maybe<Scalars['
|
|
3354
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
3311
3355
|
number?: Maybe<Scalars['Int']>;
|
|
3312
3356
|
};
|
|
3313
3357
|
export declare type ConfluenceBlogPostViewerSummary = {
|
|
3314
3358
|
__typename?: 'ConfluenceBlogPostViewerSummary';
|
|
3315
3359
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3316
|
-
lastSeenAt?: Maybe<Scalars['
|
|
3360
|
+
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
3361
|
+
};
|
|
3362
|
+
export declare type ConfluenceBodies = {
|
|
3363
|
+
__typename?: 'ConfluenceBodies';
|
|
3364
|
+
anonymousExportView?: Maybe<ConfluenceBody>;
|
|
3365
|
+
atlasDocFormat?: Maybe<ConfluenceBody>;
|
|
3366
|
+
dynamic?: Maybe<ConfluenceBody>;
|
|
3367
|
+
editor?: Maybe<ConfluenceBody>;
|
|
3368
|
+
editor2?: Maybe<ConfluenceBody>;
|
|
3369
|
+
exportView?: Maybe<ConfluenceBody>;
|
|
3370
|
+
storage?: Maybe<ConfluenceBody>;
|
|
3371
|
+
styledView?: Maybe<ConfluenceBody>;
|
|
3372
|
+
view?: Maybe<ConfluenceBody>;
|
|
3373
|
+
};
|
|
3374
|
+
export declare type ConfluenceBody = {
|
|
3375
|
+
__typename?: 'ConfluenceBody';
|
|
3376
|
+
representation?: Maybe<ConfluenceBodyRepresentation>;
|
|
3377
|
+
value?: Maybe<Scalars['String']>;
|
|
3317
3378
|
};
|
|
3379
|
+
export declare enum ConfluenceBodyRepresentation {
|
|
3380
|
+
AnonymousExportView = "ANONYMOUS_EXPORT_VIEW",
|
|
3381
|
+
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
3382
|
+
Dynamic = "DYNAMIC",
|
|
3383
|
+
Editor = "EDITOR",
|
|
3384
|
+
Editor2 = "EDITOR2",
|
|
3385
|
+
ExportView = "EXPORT_VIEW",
|
|
3386
|
+
Storage = "STORAGE",
|
|
3387
|
+
StyledView = "STYLED_VIEW",
|
|
3388
|
+
View = "VIEW"
|
|
3389
|
+
}
|
|
3318
3390
|
export declare enum ConfluenceCollaborativeEditingService {
|
|
3319
3391
|
Ncs = "NCS",
|
|
3320
3392
|
Synchrony = "SYNCHRONY"
|
|
3321
3393
|
}
|
|
3322
3394
|
export declare type ConfluenceComment = {
|
|
3323
|
-
__typename?: 'ConfluenceComment';
|
|
3324
3395
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3396
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3325
3397
|
commentId?: Maybe<Scalars['ID']>;
|
|
3326
3398
|
container?: Maybe<ConfluenceCommentContainer>;
|
|
3327
3399
|
id: Scalars['ID'];
|
|
@@ -3339,6 +3411,10 @@ export declare enum ConfluenceCommentStatus {
|
|
|
3339
3411
|
Current = "CURRENT",
|
|
3340
3412
|
Draft = "DRAFT"
|
|
3341
3413
|
}
|
|
3414
|
+
export declare enum ConfluenceCommentType {
|
|
3415
|
+
Footer = "FOOTER",
|
|
3416
|
+
Inline = "INLINE"
|
|
3417
|
+
}
|
|
3342
3418
|
export declare type ConfluenceContentBody = {
|
|
3343
3419
|
__typename?: 'ConfluenceContentBody';
|
|
3344
3420
|
adf?: Maybe<Scalars['String']>;
|
|
@@ -3416,13 +3492,23 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
3416
3492
|
errors?: Maybe<Array<MutationError>>;
|
|
3417
3493
|
success: Scalars['Boolean'];
|
|
3418
3494
|
};
|
|
3495
|
+
export declare type ConfluenceCreateFooterCommentOnBlogPostInput = {
|
|
3496
|
+
blogPostId: Scalars['ID'];
|
|
3497
|
+
body: ConfluenceContentBodyInput;
|
|
3498
|
+
};
|
|
3499
|
+
export declare type ConfluenceCreateFooterCommentOnBlogPostPayload = Payload & {
|
|
3500
|
+
__typename?: 'ConfluenceCreateFooterCommentOnBlogPostPayload';
|
|
3501
|
+
comment?: Maybe<ConfluenceFooterComment>;
|
|
3502
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3503
|
+
success: Scalars['Boolean'];
|
|
3504
|
+
};
|
|
3419
3505
|
export declare type ConfluenceCreateFooterCommentOnPageInput = {
|
|
3420
3506
|
body: ConfluenceContentBodyInput;
|
|
3421
3507
|
pageId: Scalars['ID'];
|
|
3422
3508
|
};
|
|
3423
|
-
export declare type ConfluenceCreateFooterCommentOnPagePayload = {
|
|
3509
|
+
export declare type ConfluenceCreateFooterCommentOnPagePayload = Payload & {
|
|
3424
3510
|
__typename?: 'ConfluenceCreateFooterCommentOnPagePayload';
|
|
3425
|
-
comment?: Maybe<
|
|
3511
|
+
comment?: Maybe<ConfluenceFooterComment>;
|
|
3426
3512
|
errors?: Maybe<Array<MutationError>>;
|
|
3427
3513
|
success: Scalars['Boolean'];
|
|
3428
3514
|
};
|
|
@@ -3521,6 +3607,33 @@ export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
|
3521
3607
|
errors?: Maybe<Array<MutationError>>;
|
|
3522
3608
|
success: Scalars['Boolean'];
|
|
3523
3609
|
};
|
|
3610
|
+
export declare type ConfluenceFooterComment = ConfluenceComment & {
|
|
3611
|
+
__typename?: 'ConfluenceFooterComment';
|
|
3612
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3613
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3614
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
3615
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
3616
|
+
id: Scalars['ID'];
|
|
3617
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
3618
|
+
name?: Maybe<Scalars['String']>;
|
|
3619
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
3620
|
+
};
|
|
3621
|
+
export declare type ConfluenceInlineComment = ConfluenceComment & {
|
|
3622
|
+
__typename?: 'ConfluenceInlineComment';
|
|
3623
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3624
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3625
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
3626
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
3627
|
+
id: Scalars['ID'];
|
|
3628
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
3629
|
+
name?: Maybe<Scalars['String']>;
|
|
3630
|
+
resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
|
|
3631
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
3632
|
+
};
|
|
3633
|
+
export declare enum ConfluenceInlineCommentResolutionStatus {
|
|
3634
|
+
Resolved = "RESOLVED",
|
|
3635
|
+
Unresolved = "UNRESOLVED"
|
|
3636
|
+
}
|
|
3524
3637
|
export declare type ConfluenceInlineTask = {
|
|
3525
3638
|
__typename?: 'ConfluenceInlineTask';
|
|
3526
3639
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -3528,13 +3641,13 @@ export declare type ConfluenceInlineTask = {
|
|
|
3528
3641
|
completedBy?: Maybe<ConfluenceUserInfo>;
|
|
3529
3642
|
container?: Maybe<ConfluenceInlineTaskContainer>;
|
|
3530
3643
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3531
|
-
|
|
3532
|
-
|
|
3644
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
3645
|
+
dueAt?: Maybe<Scalars['DateTime']>;
|
|
3533
3646
|
globalId?: Maybe<Scalars['ID']>;
|
|
3534
3647
|
id: Scalars['ID'];
|
|
3535
3648
|
status?: Maybe<ConfluenceInlineTaskStatus>;
|
|
3536
3649
|
taskId?: Maybe<Scalars['ID']>;
|
|
3537
|
-
|
|
3650
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
3538
3651
|
};
|
|
3539
3652
|
export declare type ConfluenceInlineTaskContainer = ConfluenceBlogPost | ConfluencePage;
|
|
3540
3653
|
export declare enum ConfluenceInlineTaskStatus {
|
|
@@ -3551,6 +3664,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
3551
3664
|
__typename?: 'ConfluenceMutationApi';
|
|
3552
3665
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3553
3666
|
createBlogPostProperty?: Maybe<ConfluenceCreateBlogPostPropertyPayload>;
|
|
3667
|
+
createFooterCommentOnBlogPost?: Maybe<ConfluenceCreateFooterCommentOnBlogPostPayload>;
|
|
3554
3668
|
createFooterCommentOnPage?: Maybe<ConfluenceCreateFooterCommentOnPagePayload>;
|
|
3555
3669
|
createPage?: Maybe<ConfluenceCreatePagePayload>;
|
|
3556
3670
|
createPageProperty?: Maybe<ConfluenceCreatePagePropertyPayload>;
|
|
@@ -3564,7 +3678,9 @@ export declare type ConfluenceMutationApi = {
|
|
|
3564
3678
|
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
3565
3679
|
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
3566
3680
|
purgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3681
|
+
reopenInlineComment?: Maybe<ConfluenceReopenInlineCommentPayload>;
|
|
3567
3682
|
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
3683
|
+
resolveInlineComment?: Maybe<ConfluenceResolveInlineCommentPayload>;
|
|
3568
3684
|
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3569
3685
|
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
3570
3686
|
updateComment?: Maybe<ConfluenceUpdateCommentPayload>;
|
|
@@ -3580,12 +3696,14 @@ export declare type ConfluenceMutationApi = {
|
|
|
3580
3696
|
deleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
3581
3697
|
};
|
|
3582
3698
|
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
3583
|
-
cloudId: Scalars['ID'];
|
|
3584
3699
|
input: ConfluenceCreateBlogPostInput;
|
|
3585
3700
|
};
|
|
3586
3701
|
export declare type ConfluenceMutationApiCreateBlogPostPropertyArgs = {
|
|
3587
3702
|
input: ConfluenceCreateBlogPostPropertyInput;
|
|
3588
3703
|
};
|
|
3704
|
+
export declare type ConfluenceMutationApiCreateFooterCommentOnBlogPostArgs = {
|
|
3705
|
+
input: ConfluenceCreateFooterCommentOnBlogPostInput;
|
|
3706
|
+
};
|
|
3589
3707
|
export declare type ConfluenceMutationApiCreateFooterCommentOnPageArgs = {
|
|
3590
3708
|
input: ConfluenceCreateFooterCommentOnPageInput;
|
|
3591
3709
|
};
|
|
@@ -3626,9 +3744,15 @@ export declare type ConfluenceMutationApiPurgeBlogPostArgs = {
|
|
|
3626
3744
|
export declare type ConfluenceMutationApiPurgePageArgs = {
|
|
3627
3745
|
input: ConfluencePurgePageInput;
|
|
3628
3746
|
};
|
|
3747
|
+
export declare type ConfluenceMutationApiReopenInlineCommentArgs = {
|
|
3748
|
+
input: ConfluenceReopenInlineCommentInput;
|
|
3749
|
+
};
|
|
3629
3750
|
export declare type ConfluenceMutationApiReplyToCommentArgs = {
|
|
3630
3751
|
input: ConfluenceReplyToCommentInput;
|
|
3631
3752
|
};
|
|
3753
|
+
export declare type ConfluenceMutationApiResolveInlineCommentArgs = {
|
|
3754
|
+
input: ConfluenceResolveInlineCommentInput;
|
|
3755
|
+
};
|
|
3632
3756
|
export declare type ConfluenceMutationApiTrashBlogPostArgs = {
|
|
3633
3757
|
input: ConfluenceTrashBlogPostInput;
|
|
3634
3758
|
};
|
|
@@ -3707,6 +3831,8 @@ export declare enum ConfluenceOperationTarget {
|
|
|
3707
3831
|
export declare type ConfluencePage = {
|
|
3708
3832
|
__typename?: 'ConfluencePage';
|
|
3709
3833
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3834
|
+
body?: Maybe<ConfluenceBodies>;
|
|
3835
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3710
3836
|
id: Scalars['ID'];
|
|
3711
3837
|
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
3712
3838
|
links?: Maybe<ConfluencePageLinks>;
|
|
@@ -3719,6 +3845,9 @@ export declare type ConfluencePage = {
|
|
|
3719
3845
|
type?: Maybe<ConfluenceContentType>;
|
|
3720
3846
|
viewer?: Maybe<ConfluencePageViewerSummary>;
|
|
3721
3847
|
};
|
|
3848
|
+
export declare type ConfluencePageCommentsArgs = {
|
|
3849
|
+
commentType?: Maybe<ConfluenceCommentType>;
|
|
3850
|
+
};
|
|
3722
3851
|
export declare type ConfluencePagePropertiesArgs = {
|
|
3723
3852
|
keys: Array<Maybe<Scalars['String']>>;
|
|
3724
3853
|
};
|
|
@@ -3748,13 +3877,13 @@ export declare enum ConfluencePageStatus {
|
|
|
3748
3877
|
export declare type ConfluencePageVersion = {
|
|
3749
3878
|
__typename?: 'ConfluencePageVersion';
|
|
3750
3879
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3751
|
-
createdAt?: Maybe<Scalars['
|
|
3880
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
3752
3881
|
number?: Maybe<Scalars['Int']>;
|
|
3753
3882
|
};
|
|
3754
3883
|
export declare type ConfluencePageViewerSummary = {
|
|
3755
3884
|
__typename?: 'ConfluencePageViewerSummary';
|
|
3756
3885
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3757
|
-
lastSeenAt?: Maybe<Scalars['
|
|
3886
|
+
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
3758
3887
|
};
|
|
3759
3888
|
export declare type ConfluencePublishBlogPostInput = {
|
|
3760
3889
|
id: Scalars['ID'];
|
|
@@ -3846,6 +3975,15 @@ export declare type ConfluenceQueryApiUserPropertyArgs = {
|
|
|
3846
3975
|
export declare type ConfluenceQueryApiUserPropertiesArgs = {
|
|
3847
3976
|
ids: Array<Scalars['ID']>;
|
|
3848
3977
|
};
|
|
3978
|
+
export declare type ConfluenceReopenInlineCommentInput = {
|
|
3979
|
+
id: Scalars['ID'];
|
|
3980
|
+
};
|
|
3981
|
+
export declare type ConfluenceReopenInlineCommentPayload = {
|
|
3982
|
+
__typename?: 'ConfluenceReopenInlineCommentPayload';
|
|
3983
|
+
comment?: Maybe<ConfluenceInlineComment>;
|
|
3984
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3985
|
+
success: Scalars['Boolean'];
|
|
3986
|
+
};
|
|
3849
3987
|
export declare type ConfluenceReplyToCommentInput = {
|
|
3850
3988
|
body: ConfluenceContentBodyInput;
|
|
3851
3989
|
parentCommentId: Scalars['ID'];
|
|
@@ -3856,6 +3994,15 @@ export declare type ConfluenceReplyToCommentPayload = {
|
|
|
3856
3994
|
errors?: Maybe<Array<MutationError>>;
|
|
3857
3995
|
success: Scalars['Boolean'];
|
|
3858
3996
|
};
|
|
3997
|
+
export declare type ConfluenceResolveInlineCommentInput = {
|
|
3998
|
+
id: Scalars['ID'];
|
|
3999
|
+
};
|
|
4000
|
+
export declare type ConfluenceResolveInlineCommentPayload = {
|
|
4001
|
+
__typename?: 'ConfluenceResolveInlineCommentPayload';
|
|
4002
|
+
comment?: Maybe<ConfluenceInlineComment>;
|
|
4003
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4004
|
+
success: Scalars['Boolean'];
|
|
4005
|
+
};
|
|
3859
4006
|
export declare type ConfluenceSpace = {
|
|
3860
4007
|
__typename?: 'ConfluenceSpace';
|
|
3861
4008
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
@@ -4036,7 +4183,6 @@ export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
|
4036
4183
|
export declare type ConfluenceUserInfo = {
|
|
4037
4184
|
__typename?: 'ConfluenceUserInfo';
|
|
4038
4185
|
user?: Maybe<User>;
|
|
4039
|
-
personalSpace?: Maybe<ConfluenceSpace>;
|
|
4040
4186
|
};
|
|
4041
4187
|
export declare type ConfluenceUserProperty = {
|
|
4042
4188
|
__typename?: 'ConfluenceUserProperty';
|
|
@@ -5042,7 +5188,6 @@ export declare type DeleteEventSourceInput = {
|
|
|
5042
5188
|
cloudId: Scalars['ID'];
|
|
5043
5189
|
externalEventSourceId: Scalars['ID'];
|
|
5044
5190
|
eventType: CompassEventType;
|
|
5045
|
-
deleteIfAttachedToComponents?: Maybe<Scalars['Boolean']>;
|
|
5046
5191
|
};
|
|
5047
5192
|
export declare type DeleteEventSourcePayload = Payload & {
|
|
5048
5193
|
__typename?: 'DeleteEventSourcePayload';
|
|
@@ -5674,11 +5819,12 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
5674
5819
|
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5675
5820
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
5676
5821
|
};
|
|
5677
|
-
export declare type DevOpsThirdPartyRepository = {
|
|
5822
|
+
export declare type DevOpsThirdPartyRepository = CodeRepository & {
|
|
5678
5823
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
5679
5824
|
id: Scalars['ID'];
|
|
5680
5825
|
webUrl?: Maybe<Scalars['URL']>;
|
|
5681
|
-
|
|
5826
|
+
href?: Maybe<Scalars['URL']>;
|
|
5827
|
+
name: Scalars['String'];
|
|
5682
5828
|
avatar?: Maybe<DevOpsAvatar>;
|
|
5683
5829
|
};
|
|
5684
5830
|
export declare type DevOpsTool = Node & {
|
|
@@ -5904,6 +6050,7 @@ export declare type DevOpsToolSort = {
|
|
|
5904
6050
|
name?: Maybe<DevOpsToolSortOrder>;
|
|
5905
6051
|
supportsContainers?: Maybe<DevOpsToolSortOrder>;
|
|
5906
6052
|
integration?: Maybe<DevOpsToolSortOrder>;
|
|
6053
|
+
recommended?: Maybe<DevOpsToolSortOrder>;
|
|
5907
6054
|
};
|
|
5908
6055
|
export declare enum DevOpsToolSortOrder {
|
|
5909
6056
|
Asc = "ASC",
|
|
@@ -5995,6 +6142,26 @@ export declare type DeveloperLogAccessResult = {
|
|
|
5995
6142
|
developerHasAccess: Scalars['Boolean'];
|
|
5996
6143
|
contextId: Scalars['ID'];
|
|
5997
6144
|
};
|
|
6145
|
+
export declare type DirectoryMutation = {
|
|
6146
|
+
__typename?: 'DirectoryMutation';
|
|
6147
|
+
removeUserFromOrganization?: Maybe<DirectoryRemoveUserPayload>;
|
|
6148
|
+
};
|
|
6149
|
+
export declare type DirectoryMutationRemoveUserFromOrganizationArgs = {
|
|
6150
|
+
input?: Maybe<DirectoryRemoveUserInput>;
|
|
6151
|
+
};
|
|
6152
|
+
export declare type DirectoryQuery = {
|
|
6153
|
+
__typename?: 'DirectoryQuery';
|
|
6154
|
+
application?: Maybe<Scalars['String']>;
|
|
6155
|
+
};
|
|
6156
|
+
export declare type DirectoryRemoveUserInput = {
|
|
6157
|
+
orgId: Scalars['ID'];
|
|
6158
|
+
accountId: Scalars['ID'];
|
|
6159
|
+
};
|
|
6160
|
+
export declare type DirectoryRemoveUserPayload = Payload & {
|
|
6161
|
+
__typename?: 'DirectoryRemoveUserPayload';
|
|
6162
|
+
success: Scalars['Boolean'];
|
|
6163
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6164
|
+
};
|
|
5998
6165
|
export declare type DvcsBitbucketWorkspaceConnection = {
|
|
5999
6166
|
__typename?: 'DvcsBitbucketWorkspaceConnection';
|
|
6000
6167
|
edges?: Maybe<Array<Maybe<DvcsBitbucketWorkspaceEdge>>>;
|
|
@@ -6020,6 +6187,7 @@ export declare type EcosystemMutation = {
|
|
|
6020
6187
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
6021
6188
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
6022
6189
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
6190
|
+
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
6023
6191
|
};
|
|
6024
6192
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
6025
6193
|
input: UpdateAppHostServiceScopesInput;
|
|
@@ -6030,6 +6198,9 @@ export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
|
6030
6198
|
export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
6031
6199
|
input: UpdateUserInstallationRulesInput;
|
|
6032
6200
|
};
|
|
6201
|
+
export declare type EcosystemMutationForgeAlertsArgs = {
|
|
6202
|
+
appId: Scalars['ID'];
|
|
6203
|
+
};
|
|
6033
6204
|
export declare type EcosystemQuery = {
|
|
6034
6205
|
__typename?: 'EcosystemQuery';
|
|
6035
6206
|
userGrants?: Maybe<UserGrantConnection>;
|
|
@@ -6039,6 +6210,7 @@ export declare type EcosystemQuery = {
|
|
|
6039
6210
|
marketplaceAppsByCurrentUserPartnerContactPermissions: Array<FortifiedMarketplaceApp>;
|
|
6040
6211
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
6041
6212
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
6213
|
+
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
6042
6214
|
};
|
|
6043
6215
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
6044
6216
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6064,6 +6236,9 @@ export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
|
6064
6236
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
6065
6237
|
appId: Scalars['ID'];
|
|
6066
6238
|
};
|
|
6239
|
+
export declare type EcosystemQueryForgeAlertsArgs = {
|
|
6240
|
+
appId: Scalars['ID'];
|
|
6241
|
+
};
|
|
6067
6242
|
export declare type EditSprintInput = {
|
|
6068
6243
|
boardId: Scalars['ID'];
|
|
6069
6244
|
sprintId: Scalars['ID'];
|
|
@@ -6186,6 +6361,130 @@ export declare type FilterQuery = {
|
|
|
6186
6361
|
sanitisedJql: Scalars['String'];
|
|
6187
6362
|
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
6188
6363
|
};
|
|
6364
|
+
export declare type ForgeAlertsActivitiesQueryInput = {
|
|
6365
|
+
after?: Maybe<Scalars['Int']>;
|
|
6366
|
+
endTime: Scalars['String'];
|
|
6367
|
+
environment: Scalars['String'];
|
|
6368
|
+
first?: Maybe<Scalars['Int']>;
|
|
6369
|
+
startTime: Scalars['String'];
|
|
6370
|
+
};
|
|
6371
|
+
export declare type ForgeAlertsActivitiesResult = ForgeAlertsActivityConnection | QueryError;
|
|
6372
|
+
export declare type ForgeAlertsActivity = {
|
|
6373
|
+
__typename?: 'ForgeAlertsActivity';
|
|
6374
|
+
activityMessage: Scalars['String'];
|
|
6375
|
+
timestamp: Scalars['Int'];
|
|
6376
|
+
type: ForgeAlertsActivityType;
|
|
6377
|
+
};
|
|
6378
|
+
export declare type ForgeAlertsActivityConnection = {
|
|
6379
|
+
__typename?: 'ForgeAlertsActivityConnection';
|
|
6380
|
+
edges: Array<Maybe<ForgeAlertsActivityEdge>>;
|
|
6381
|
+
nodes: Array<Maybe<ForgeAlertsActivity>>;
|
|
6382
|
+
pageInfo: PageInfo;
|
|
6383
|
+
};
|
|
6384
|
+
export declare type ForgeAlertsActivityEdge = {
|
|
6385
|
+
__typename?: 'ForgeAlertsActivityEdge';
|
|
6386
|
+
cursor: Scalars['String'];
|
|
6387
|
+
node?: Maybe<ForgeAlertsActivity>;
|
|
6388
|
+
};
|
|
6389
|
+
export declare enum ForgeAlertsActivityType {
|
|
6390
|
+
AlertCreated = "ALERT_CREATED",
|
|
6391
|
+
AlertMuted = "ALERT_MUTED",
|
|
6392
|
+
AlertOpened = "ALERT_OPENED",
|
|
6393
|
+
AlertResolved = "ALERT_RESOLVED",
|
|
6394
|
+
AlertSent = "ALERT_SENT",
|
|
6395
|
+
AlertUnmuted = "ALERT_UNMUTED",
|
|
6396
|
+
AlertUpdated = "ALERT_UPDATED"
|
|
6397
|
+
}
|
|
6398
|
+
export declare type ForgeAlertsConfigData = {
|
|
6399
|
+
__typename?: 'ForgeAlertsConfigData';
|
|
6400
|
+
alertName: Scalars['String'];
|
|
6401
|
+
alertId: Scalars['String'];
|
|
6402
|
+
description?: Maybe<Scalars['String']>;
|
|
6403
|
+
environment: Scalars['String'];
|
|
6404
|
+
isMuted: Scalars['Boolean'];
|
|
6405
|
+
lastTriggeredAt?: Maybe<Scalars['Int']>;
|
|
6406
|
+
metricName: Scalars['String'];
|
|
6407
|
+
status: ForgeAlertsStatus;
|
|
6408
|
+
triggerValue: Scalars['Float'];
|
|
6409
|
+
};
|
|
6410
|
+
export declare type ForgeAlertsConfigQueryInput = {
|
|
6411
|
+
environment: Scalars['String'];
|
|
6412
|
+
};
|
|
6413
|
+
export declare type ForgeAlertsConfigResult = ForgeAlertsConfigData | QueryError;
|
|
6414
|
+
export declare type ForgeAlertsCreateAlertPayload = Payload & {
|
|
6415
|
+
__typename?: 'ForgeAlertsCreateAlertPayload';
|
|
6416
|
+
alertConfig?: Maybe<ForgeAlertsConfigData>;
|
|
6417
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6418
|
+
success: Scalars['Boolean'];
|
|
6419
|
+
};
|
|
6420
|
+
export declare type ForgeAlertsCreateConfigInput = {
|
|
6421
|
+
alertId?: Maybe<Scalars['String']>;
|
|
6422
|
+
description?: Maybe<Scalars['String']>;
|
|
6423
|
+
environment: Scalars['String'];
|
|
6424
|
+
isMuted?: Maybe<Scalars['Boolean']>;
|
|
6425
|
+
metricName?: Maybe<Scalars['String']>;
|
|
6426
|
+
triggerValue?: Maybe<Scalars['Float']>;
|
|
6427
|
+
};
|
|
6428
|
+
export declare type ForgeAlertsDeleteAlertConfigsInput = {
|
|
6429
|
+
appIds: Array<Scalars['ID']>;
|
|
6430
|
+
};
|
|
6431
|
+
export declare type ForgeAlertsFixAlertConfigsInput = {
|
|
6432
|
+
appIds: Array<Scalars['ID']>;
|
|
6433
|
+
};
|
|
6434
|
+
export declare type ForgeAlertsFixAlertPayload = Payload & {
|
|
6435
|
+
__typename?: 'ForgeAlertsFixAlertPayload';
|
|
6436
|
+
alertConfigs?: Maybe<Array<Maybe<ForgeAlertsConfigData>>>;
|
|
6437
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6438
|
+
success: Scalars['Boolean'];
|
|
6439
|
+
};
|
|
6440
|
+
export declare type ForgeAlertsMutation = {
|
|
6441
|
+
__typename?: 'ForgeAlertsMutation';
|
|
6442
|
+
appId: Scalars['ID'];
|
|
6443
|
+
createAlertConfig?: Maybe<ForgeAlertsCreateAlertPayload>;
|
|
6444
|
+
deleteAlertConfigs?: Maybe<Payload>;
|
|
6445
|
+
fixAlertConfigs?: Maybe<ForgeAlertsFixAlertPayload>;
|
|
6446
|
+
modifyAlertConfig?: Maybe<ForgeAlertsUpdateAlertPayload>;
|
|
6447
|
+
};
|
|
6448
|
+
export declare type ForgeAlertsMutationCreateAlertConfigArgs = {
|
|
6449
|
+
input: ForgeAlertsCreateConfigInput;
|
|
6450
|
+
};
|
|
6451
|
+
export declare type ForgeAlertsMutationDeleteAlertConfigsArgs = {
|
|
6452
|
+
input: ForgeAlertsDeleteAlertConfigsInput;
|
|
6453
|
+
};
|
|
6454
|
+
export declare type ForgeAlertsMutationFixAlertConfigsArgs = {
|
|
6455
|
+
input: ForgeAlertsFixAlertConfigsInput;
|
|
6456
|
+
};
|
|
6457
|
+
export declare type ForgeAlertsMutationModifyAlertConfigArgs = {
|
|
6458
|
+
input: ForgeAlertsUpdateConfigInput;
|
|
6459
|
+
};
|
|
6460
|
+
export declare type ForgeAlertsQuery = {
|
|
6461
|
+
__typename?: 'ForgeAlertsQuery';
|
|
6462
|
+
alertConfig?: Maybe<ForgeAlertsConfigResult>;
|
|
6463
|
+
alertActivities?: Maybe<ForgeAlertsActivitiesResult>;
|
|
6464
|
+
appId: Scalars['ID'];
|
|
6465
|
+
};
|
|
6466
|
+
export declare type ForgeAlertsQueryAlertConfigArgs = {
|
|
6467
|
+
input: ForgeAlertsConfigQueryInput;
|
|
6468
|
+
};
|
|
6469
|
+
export declare type ForgeAlertsQueryAlertActivitiesArgs = {
|
|
6470
|
+
input: ForgeAlertsActivitiesQueryInput;
|
|
6471
|
+
};
|
|
6472
|
+
export declare enum ForgeAlertsStatus {
|
|
6473
|
+
Firing = "FIRING",
|
|
6474
|
+
Resolved = "RESOLVED"
|
|
6475
|
+
}
|
|
6476
|
+
export declare type ForgeAlertsUpdateAlertPayload = Payload & {
|
|
6477
|
+
__typename?: 'ForgeAlertsUpdateAlertPayload';
|
|
6478
|
+
alertConfig?: Maybe<ForgeAlertsConfigData>;
|
|
6479
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6480
|
+
success: Scalars['Boolean'];
|
|
6481
|
+
};
|
|
6482
|
+
export declare type ForgeAlertsUpdateConfigInput = {
|
|
6483
|
+
description?: Maybe<Scalars['String']>;
|
|
6484
|
+
environment: Scalars['String'];
|
|
6485
|
+
isMuted?: Maybe<Scalars['Boolean']>;
|
|
6486
|
+
alertName?: Maybe<Scalars['String']>;
|
|
6487
|
+
};
|
|
6189
6488
|
export declare type ForgeContextToken = {
|
|
6190
6489
|
__typename?: 'ForgeContextToken';
|
|
6191
6490
|
jwt: Scalars['String'];
|
|
@@ -6195,7 +6494,6 @@ export declare type ForgeMetricsData = {
|
|
|
6195
6494
|
name: Scalars['String'];
|
|
6196
6495
|
type: ForgeMetricsDataType;
|
|
6197
6496
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
6198
|
-
resolution: ForgeMetricsResolution;
|
|
6199
6497
|
};
|
|
6200
6498
|
export declare enum ForgeMetricsDataType {
|
|
6201
6499
|
DateTime = "DATE_TIME",
|
|
@@ -6221,11 +6519,19 @@ export declare type ForgeMetricsErrorsSeries = ForgeMetricsSeries & {
|
|
|
6221
6519
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
6222
6520
|
data: Array<ForgeMetricsErrorsDataPoint>;
|
|
6223
6521
|
};
|
|
6522
|
+
export declare type ForgeMetricsErrorsValueData = ForgeMetricsData & {
|
|
6523
|
+
__typename?: 'ForgeMetricsErrorsValueData';
|
|
6524
|
+
name: Scalars['String'];
|
|
6525
|
+
type: ForgeMetricsDataType;
|
|
6526
|
+
series: Array<ForgeMetricsErrorsSeries>;
|
|
6527
|
+
};
|
|
6528
|
+
export declare type ForgeMetricsErrorsValueResult = ForgeMetricsErrorsValueData | QueryError;
|
|
6224
6529
|
export declare enum ForgeMetricsGroupByDimensions {
|
|
6225
6530
|
UserTier = "USER_TIER",
|
|
6226
6531
|
EnvironmentId = "ENVIRONMENT_ID",
|
|
6227
6532
|
ErrorType = "ERROR_TYPE",
|
|
6228
|
-
Version = "VERSION"
|
|
6533
|
+
Version = "VERSION",
|
|
6534
|
+
ContextAri = "CONTEXT_ARI"
|
|
6229
6535
|
}
|
|
6230
6536
|
export declare type ForgeMetricsInstallationContext = {
|
|
6231
6537
|
__typename?: 'ForgeMetricsInstallationContext';
|
|
@@ -6260,6 +6566,13 @@ export declare type ForgeMetricsInvocationSeries = ForgeMetricsSeries & {
|
|
|
6260
6566
|
data: Array<ForgeMetricsInvocationDataPoint>;
|
|
6261
6567
|
};
|
|
6262
6568
|
export declare type ForgeMetricsInvocationsResult = ForgeMetricsInvocationData | QueryError;
|
|
6569
|
+
export declare type ForgeMetricsInvocationsValueData = ForgeMetricsData & {
|
|
6570
|
+
__typename?: 'ForgeMetricsInvocationsValueData';
|
|
6571
|
+
name: Scalars['String'];
|
|
6572
|
+
type: ForgeMetricsDataType;
|
|
6573
|
+
series: Array<ForgeMetricsInvocationSeries>;
|
|
6574
|
+
};
|
|
6575
|
+
export declare type ForgeMetricsInvocationsValueResult = ForgeMetricsInvocationsValueData | QueryError;
|
|
6263
6576
|
export declare type ForgeMetricsLabelGroup = {
|
|
6264
6577
|
__typename?: 'ForgeMetricsLabelGroup';
|
|
6265
6578
|
key: Scalars['String'];
|
|
@@ -6271,7 +6584,9 @@ export declare type ForgeMetricsQuery = {
|
|
|
6271
6584
|
successRate: ForgeMetricsSuccessRateResult;
|
|
6272
6585
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
6273
6586
|
invocations: ForgeMetricsInvocationsResult;
|
|
6587
|
+
invocationsValue: ForgeMetricsInvocationsValueResult;
|
|
6274
6588
|
errors: ForgeMetricsErrorsResult;
|
|
6589
|
+
errorsValue: ForgeMetricsErrorsValueResult;
|
|
6275
6590
|
sites: ForgeMetricsSitesResult;
|
|
6276
6591
|
};
|
|
6277
6592
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
@@ -6283,9 +6598,15 @@ export declare type ForgeMetricsQuerySuccessRateValueArgs = {
|
|
|
6283
6598
|
export declare type ForgeMetricsQueryInvocationsArgs = {
|
|
6284
6599
|
query: ForgeMetricsQueryInput;
|
|
6285
6600
|
};
|
|
6601
|
+
export declare type ForgeMetricsQueryInvocationsValueArgs = {
|
|
6602
|
+
query: ForgeMetricsQueryInput;
|
|
6603
|
+
};
|
|
6286
6604
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
6287
6605
|
query: ForgeMetricsQueryInput;
|
|
6288
6606
|
};
|
|
6607
|
+
export declare type ForgeMetricsQueryErrorsValueArgs = {
|
|
6608
|
+
query: ForgeMetricsQueryInput;
|
|
6609
|
+
};
|
|
6289
6610
|
export declare type ForgeMetricsQuerySitesArgs = {
|
|
6290
6611
|
query: ForgeMetricsQueryInput;
|
|
6291
6612
|
};
|
|
@@ -6351,7 +6672,6 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
6351
6672
|
name: Scalars['String'];
|
|
6352
6673
|
type: ForgeMetricsDataType;
|
|
6353
6674
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
6354
|
-
resolution: ForgeMetricsResolution;
|
|
6355
6675
|
};
|
|
6356
6676
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
6357
6677
|
export declare type FortifiedMarketplaceApp = {
|
|
@@ -6485,138 +6805,139 @@ export declare enum GrantCheckProduct {
|
|
|
6485
6805
|
export declare type HelpCenter = Node & {
|
|
6486
6806
|
__typename?: 'HelpCenter';
|
|
6487
6807
|
id: Scalars['ID'];
|
|
6488
|
-
|
|
6489
|
-
};
|
|
6490
|
-
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
6491
|
-
helpCenterCreateCollectionInputItem: Array<HelpCenterCreateCollectionInput>;
|
|
6492
|
-
};
|
|
6493
|
-
export declare type HelpCenterBulkDeleteCollectionInput = {
|
|
6494
|
-
helpCenterCollectionDeleteInput: Array<HelpCenterCollectionDeleteInput>;
|
|
6495
|
-
};
|
|
6496
|
-
export declare type HelpCenterBulkUpdateCollectionInput = {
|
|
6497
|
-
helpCenterUpdateCollectionInputItem: Array<HelpCenterUpdateCollectionInput>;
|
|
6498
|
-
};
|
|
6499
|
-
export declare type HelpCenterCollection = {
|
|
6500
|
-
__typename?: 'HelpCenterCollection';
|
|
6501
|
-
collectionId: Scalars['ID'];
|
|
6502
|
-
items?: Maybe<HelpCenterCollectionItemConnection>;
|
|
6503
|
-
name?: Maybe<Scalars['String']>;
|
|
6504
|
-
description?: Maybe<Scalars['String']>;
|
|
6505
|
-
properties?: Maybe<Scalars['JSON']>;
|
|
6506
|
-
};
|
|
6507
|
-
export declare type HelpCenterCollectionItemsArgs = {
|
|
6508
|
-
first?: Maybe<Scalars['Int']>;
|
|
6509
|
-
after?: Maybe<Scalars['String']>;
|
|
6510
|
-
last?: Maybe<Scalars['Int']>;
|
|
6511
|
-
before?: Maybe<Scalars['String']>;
|
|
6808
|
+
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
6512
6809
|
};
|
|
6513
|
-
export declare type
|
|
6514
|
-
|
|
6515
|
-
collectionId: Scalars['ID'];
|
|
6516
|
-
};
|
|
6517
|
-
export declare type HelpCenterCollectionItem = {
|
|
6518
|
-
__typename?: 'HelpCenterCollectionItem';
|
|
6519
|
-
ari: Scalars['ID'];
|
|
6520
|
-
data?: Maybe<HelpCenterHelpObject>;
|
|
6810
|
+
export declare type HelpCenterBulkCreateTopicsInput = {
|
|
6811
|
+
helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
|
|
6521
6812
|
};
|
|
6522
|
-
export declare type
|
|
6523
|
-
|
|
6524
|
-
edges?: Maybe<Array<Maybe<HelpCenterCollectionItemEdge>>>;
|
|
6525
|
-
nodes?: Maybe<Array<Maybe<HelpCenterCollectionItem>>>;
|
|
6526
|
-
pageInfo: PageInfo;
|
|
6527
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
6528
|
-
};
|
|
6529
|
-
export declare type HelpCenterCollectionItemEdge = {
|
|
6530
|
-
__typename?: 'HelpCenterCollectionItemEdge';
|
|
6531
|
-
cursor: Scalars['String'];
|
|
6532
|
-
node?: Maybe<HelpCenterCollectionItem>;
|
|
6813
|
+
export declare type HelpCenterBulkDeleteTopicInput = {
|
|
6814
|
+
helpCenterTopicDeleteInput: Array<HelpCenterTopicDeleteInput>;
|
|
6533
6815
|
};
|
|
6534
|
-
export declare type
|
|
6535
|
-
|
|
6816
|
+
export declare type HelpCenterBulkUpdateTopicInput = {
|
|
6817
|
+
helpCenterUpdateTopicInputItem: Array<HelpCenterUpdateTopicInput>;
|
|
6536
6818
|
};
|
|
6537
|
-
export declare type
|
|
6538
|
-
|
|
6539
|
-
|
|
6540
|
-
items: Array<HelpCenterCollectionItemInput>;
|
|
6819
|
+
export declare type HelpCenterCreateTopicInput = {
|
|
6820
|
+
productName: Scalars['String'];
|
|
6821
|
+
items: Array<HelpCenterTopicItemInput>;
|
|
6541
6822
|
name: Scalars['String'];
|
|
6542
6823
|
description?: Maybe<Scalars['String']>;
|
|
6543
6824
|
properties?: Maybe<Scalars['JSON']>;
|
|
6544
6825
|
};
|
|
6545
|
-
export declare type
|
|
6546
|
-
__typename?: '
|
|
6826
|
+
export declare type HelpCenterCreateTopicPayload = Payload & {
|
|
6827
|
+
__typename?: 'HelpCenterCreateTopicPayload';
|
|
6547
6828
|
success: Scalars['Boolean'];
|
|
6548
6829
|
errors?: Maybe<Array<MutationError>>;
|
|
6549
|
-
|
|
6830
|
+
successfullyCreatedTopicIds: Array<Maybe<HelpCenterSuccessfullyCreatedTopicIds>>;
|
|
6550
6831
|
};
|
|
6551
|
-
export declare type
|
|
6552
|
-
__typename?: '
|
|
6832
|
+
export declare type HelpCenterDeleteUpdateTopicPayload = Payload & {
|
|
6833
|
+
__typename?: 'HelpCenterDeleteUpdateTopicPayload';
|
|
6553
6834
|
success: Scalars['Boolean'];
|
|
6554
6835
|
errors?: Maybe<Array<MutationError>>;
|
|
6555
|
-
|
|
6836
|
+
topicIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedTopicIds>>;
|
|
6556
6837
|
};
|
|
6557
6838
|
export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreQueryError;
|
|
6558
6839
|
export declare type HelpCenterMutationApi = {
|
|
6559
6840
|
__typename?: 'HelpCenterMutationApi';
|
|
6560
|
-
|
|
6561
|
-
|
|
6562
|
-
|
|
6563
|
-
|
|
6841
|
+
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
6842
|
+
updateTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
6843
|
+
updateTopicsOrder?: Maybe<HelpCenterUpdateTopicsOrderPayload>;
|
|
6844
|
+
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
6564
6845
|
};
|
|
6565
|
-
export declare type
|
|
6566
|
-
input:
|
|
6846
|
+
export declare type HelpCenterMutationApiCreateTopicArgs = {
|
|
6847
|
+
input: HelpCenterBulkCreateTopicsInput;
|
|
6567
6848
|
};
|
|
6568
|
-
export declare type
|
|
6569
|
-
input:
|
|
6849
|
+
export declare type HelpCenterMutationApiUpdateTopicArgs = {
|
|
6850
|
+
input: HelpCenterBulkUpdateTopicInput;
|
|
6570
6851
|
};
|
|
6571
|
-
export declare type
|
|
6572
|
-
input:
|
|
6852
|
+
export declare type HelpCenterMutationApiUpdateTopicsOrderArgs = {
|
|
6853
|
+
input: HelpCenterUpdateTopicsOrderInput;
|
|
6573
6854
|
};
|
|
6574
|
-
export declare type
|
|
6575
|
-
input:
|
|
6855
|
+
export declare type HelpCenterMutationApiDeleteTopicArgs = {
|
|
6856
|
+
input: HelpCenterBulkDeleteTopicInput;
|
|
6576
6857
|
};
|
|
6577
6858
|
export declare type HelpCenterQueryApi = {
|
|
6578
6859
|
__typename?: 'HelpCenterQueryApi';
|
|
6579
6860
|
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
6580
|
-
|
|
6861
|
+
helpCenterTopic?: Maybe<HelpCenterTopicResult>;
|
|
6581
6862
|
};
|
|
6582
6863
|
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
6583
6864
|
productName: Scalars['String'];
|
|
6584
6865
|
};
|
|
6585
|
-
export declare type
|
|
6866
|
+
export declare type HelpCenterQueryApiHelpCenterTopicArgs = {
|
|
6586
6867
|
productName: Scalars['String'];
|
|
6587
|
-
|
|
6868
|
+
topicId: Scalars['ID'];
|
|
6588
6869
|
};
|
|
6589
6870
|
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
6590
|
-
export declare type
|
|
6591
|
-
__typename?: '
|
|
6871
|
+
export declare type HelpCenterSuccessfullyCreatedTopicIds = {
|
|
6872
|
+
__typename?: 'HelpCenterSuccessfullyCreatedTopicIds';
|
|
6592
6873
|
helpCenterId: Scalars['ID'];
|
|
6593
|
-
|
|
6874
|
+
topicIds: Scalars['ID'];
|
|
6594
6875
|
};
|
|
6595
|
-
export declare type
|
|
6596
|
-
__typename?: '
|
|
6876
|
+
export declare type HelpCenterSuccessfullyDeletedUpdatedTopicIds = {
|
|
6877
|
+
__typename?: 'HelpCenterSuccessfullyDeletedUpdatedTopicIds';
|
|
6597
6878
|
helpCenterId: Scalars['ID'];
|
|
6598
|
-
|
|
6879
|
+
topicIds: Scalars['ID'];
|
|
6599
6880
|
};
|
|
6600
|
-
export declare type
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
items
|
|
6881
|
+
export declare type HelpCenterTopic = {
|
|
6882
|
+
__typename?: 'HelpCenterTopic';
|
|
6883
|
+
topicId: Scalars['ID'];
|
|
6884
|
+
items?: Maybe<HelpCenterTopicItemConnection>;
|
|
6885
|
+
name?: Maybe<Scalars['String']>;
|
|
6886
|
+
description?: Maybe<Scalars['String']>;
|
|
6887
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
6888
|
+
};
|
|
6889
|
+
export declare type HelpCenterTopicItemsArgs = {
|
|
6890
|
+
first?: Maybe<Scalars['Int']>;
|
|
6891
|
+
after?: Maybe<Scalars['String']>;
|
|
6892
|
+
last?: Maybe<Scalars['Int']>;
|
|
6893
|
+
before?: Maybe<Scalars['String']>;
|
|
6894
|
+
};
|
|
6895
|
+
export declare type HelpCenterTopicDeleteInput = {
|
|
6896
|
+
productName: Scalars['String'];
|
|
6897
|
+
topicId: Scalars['ID'];
|
|
6898
|
+
};
|
|
6899
|
+
export declare type HelpCenterTopicItem = {
|
|
6900
|
+
__typename?: 'HelpCenterTopicItem';
|
|
6901
|
+
ari: Scalars['ID'];
|
|
6902
|
+
data?: Maybe<HelpCenterHelpObject>;
|
|
6903
|
+
};
|
|
6904
|
+
export declare type HelpCenterTopicItemConnection = {
|
|
6905
|
+
__typename?: 'HelpCenterTopicItemConnection';
|
|
6906
|
+
edges?: Maybe<Array<Maybe<HelpCenterTopicItemEdge>>>;
|
|
6907
|
+
nodes?: Maybe<Array<Maybe<HelpCenterTopicItem>>>;
|
|
6908
|
+
pageInfo: PageInfo;
|
|
6909
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6910
|
+
};
|
|
6911
|
+
export declare type HelpCenterTopicItemEdge = {
|
|
6912
|
+
__typename?: 'HelpCenterTopicItemEdge';
|
|
6913
|
+
cursor: Scalars['String'];
|
|
6914
|
+
node?: Maybe<HelpCenterTopicItem>;
|
|
6915
|
+
};
|
|
6916
|
+
export declare type HelpCenterTopicItemInput = {
|
|
6917
|
+
ari: Scalars['ID'];
|
|
6918
|
+
};
|
|
6919
|
+
export declare type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
6920
|
+
export declare type HelpCenterUpdateTopicInput = {
|
|
6921
|
+
productName: Scalars['String'];
|
|
6922
|
+
topicId: Scalars['ID'];
|
|
6923
|
+
items: Array<HelpCenterTopicItemInput>;
|
|
6604
6924
|
name: Scalars['String'];
|
|
6605
6925
|
description?: Maybe<Scalars['String']>;
|
|
6606
6926
|
properties?: Maybe<Scalars['JSON']>;
|
|
6607
6927
|
};
|
|
6608
|
-
export declare type
|
|
6609
|
-
|
|
6610
|
-
|
|
6928
|
+
export declare type HelpCenterUpdateTopicsOrderInput = {
|
|
6929
|
+
productName: Scalars['String'];
|
|
6930
|
+
topicIds: Array<Scalars['ID']>;
|
|
6611
6931
|
};
|
|
6612
|
-
export declare type
|
|
6613
|
-
__typename?: '
|
|
6932
|
+
export declare type HelpCenterUpdateTopicsOrderPayload = Payload & {
|
|
6933
|
+
__typename?: 'HelpCenterUpdateTopicsOrderPayload';
|
|
6614
6934
|
success: Scalars['Boolean'];
|
|
6615
6935
|
errors?: Maybe<Array<MutationError>>;
|
|
6616
6936
|
};
|
|
6617
6937
|
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
6618
6938
|
__typename?: 'HelpObjectStoreArticle';
|
|
6619
6939
|
id: Scalars['ID'];
|
|
6940
|
+
ari: Scalars['ID'];
|
|
6620
6941
|
title?: Maybe<Scalars['String']>;
|
|
6621
6942
|
description?: Maybe<Scalars['String']>;
|
|
6622
6943
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6641,6 +6962,7 @@ export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
|
|
|
6641
6962
|
};
|
|
6642
6963
|
export declare type HelpObjectStoreHelpObject = {
|
|
6643
6964
|
id: Scalars['ID'];
|
|
6965
|
+
ari: Scalars['ID'];
|
|
6644
6966
|
title?: Maybe<Scalars['String']>;
|
|
6645
6967
|
description?: Maybe<Scalars['String']>;
|
|
6646
6968
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6678,13 +7000,14 @@ export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
6678
7000
|
};
|
|
6679
7001
|
export declare type HelpObjectStoreQueryError = {
|
|
6680
7002
|
__typename?: 'HelpObjectStoreQueryError';
|
|
6681
|
-
|
|
7003
|
+
ari: Scalars['ID'];
|
|
6682
7004
|
message?: Maybe<Scalars['String']>;
|
|
6683
7005
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
6684
7006
|
};
|
|
6685
7007
|
export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
|
|
6686
7008
|
__typename?: 'HelpObjectStoreRequestForm';
|
|
6687
7009
|
id: Scalars['ID'];
|
|
7010
|
+
ari: Scalars['ID'];
|
|
6688
7011
|
title?: Maybe<Scalars['String']>;
|
|
6689
7012
|
description?: Maybe<Scalars['String']>;
|
|
6690
7013
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6695,7 +7018,7 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
|
|
|
6695
7018
|
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | HelpObjectStoreQueryError;
|
|
6696
7019
|
export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
6697
7020
|
__typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
|
|
6698
|
-
|
|
7021
|
+
ari: Scalars['ID'];
|
|
6699
7022
|
entityId: Scalars['String'];
|
|
6700
7023
|
projectId: Scalars['String'];
|
|
6701
7024
|
};
|
|
@@ -7125,7 +7448,8 @@ export declare type JiraAddRelatedWorkToVersionPayload = Payload & {
|
|
|
7125
7448
|
};
|
|
7126
7449
|
export declare type JiraAffectedService = {
|
|
7127
7450
|
__typename?: 'JiraAffectedService';
|
|
7128
|
-
serviceId
|
|
7451
|
+
serviceId: Scalars['ID'];
|
|
7452
|
+
name?: Maybe<Scalars['String']>;
|
|
7129
7453
|
};
|
|
7130
7454
|
export declare type JiraAffectedServiceConnection = {
|
|
7131
7455
|
__typename?: 'JiraAffectedServiceConnection';
|
|
@@ -7343,6 +7667,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
7343
7667
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7344
7668
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
7345
7669
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
7670
|
+
wasInsightRequestSuccessful?: Maybe<Scalars['Boolean']>;
|
|
7346
7671
|
isInsightAvailable?: Maybe<Scalars['Boolean']>;
|
|
7347
7672
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
7348
7673
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -7457,6 +7782,7 @@ export declare type JiraClassicConnectDevOpsProvider = JiraDevOpsProvider & {
|
|
|
7457
7782
|
};
|
|
7458
7783
|
export declare type JiraCmdbAttribute = {
|
|
7459
7784
|
__typename?: 'JiraCmdbAttribute';
|
|
7785
|
+
attributeId?: Maybe<Scalars['String']>;
|
|
7460
7786
|
objectTypeAttributeId?: Maybe<Scalars['String']>;
|
|
7461
7787
|
objectTypeAttribute?: Maybe<JiraCmdbObjectTypeAttribute>;
|
|
7462
7788
|
objectAttributeValues?: Maybe<JiraCmdbObjectAttributeValueConnection>;
|
|
@@ -7766,6 +8092,18 @@ export declare type JiraConnectNumberField = Node & JiraIssueField & JiraIssueFi
|
|
|
7766
8092
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7767
8093
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7768
8094
|
};
|
|
8095
|
+
export declare type JiraConnectReadOnlyField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8096
|
+
__typename?: 'JiraConnectReadOnlyField';
|
|
8097
|
+
id: Scalars['ID'];
|
|
8098
|
+
fieldId: Scalars['String'];
|
|
8099
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
8100
|
+
type: Scalars['String'];
|
|
8101
|
+
name: Scalars['String'];
|
|
8102
|
+
description?: Maybe<Scalars['String']>;
|
|
8103
|
+
text?: Maybe<Scalars['String']>;
|
|
8104
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8105
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8106
|
+
};
|
|
7769
8107
|
export declare type JiraConnectRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7770
8108
|
__typename?: 'JiraConnectRichTextField';
|
|
7771
8109
|
id: Scalars['ID'];
|
|
@@ -8051,6 +8389,23 @@ export declare type JiraEstimate = {
|
|
|
8051
8389
|
__typename?: 'JiraEstimate';
|
|
8052
8390
|
timeInSeconds?: Maybe<Scalars['Long']>;
|
|
8053
8391
|
};
|
|
8392
|
+
export declare type JiraFavourite = JiraProject;
|
|
8393
|
+
export declare type JiraFavouriteConnection = {
|
|
8394
|
+
__typename?: 'JiraFavouriteConnection';
|
|
8395
|
+
edges?: Maybe<Array<Maybe<JiraFavouriteEdge>>>;
|
|
8396
|
+
pageInfo: PageInfo;
|
|
8397
|
+
};
|
|
8398
|
+
export declare type JiraFavouriteEdge = {
|
|
8399
|
+
__typename?: 'JiraFavouriteEdge';
|
|
8400
|
+
node?: Maybe<JiraFavourite>;
|
|
8401
|
+
cursor: Scalars['String'];
|
|
8402
|
+
};
|
|
8403
|
+
export declare type JiraFavouriteFilter = {
|
|
8404
|
+
type: JiraFavouriteType;
|
|
8405
|
+
};
|
|
8406
|
+
export declare enum JiraFavouriteType {
|
|
8407
|
+
Project = "PROJECT"
|
|
8408
|
+
}
|
|
8054
8409
|
export declare type JiraFieldConfig = {
|
|
8055
8410
|
__typename?: 'JiraFieldConfig';
|
|
8056
8411
|
isRequired?: Maybe<Scalars['Boolean']>;
|
|
@@ -8318,6 +8673,14 @@ export declare type JiraForgeUsersFieldUsersArgs = {
|
|
|
8318
8673
|
before?: Maybe<Scalars['String']>;
|
|
8319
8674
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
8320
8675
|
};
|
|
8676
|
+
export declare type JiraGlobalTimeTrackingSettings = {
|
|
8677
|
+
__typename?: 'JiraGlobalTimeTrackingSettings';
|
|
8678
|
+
isTimeTrackingEnabled: Scalars['Boolean'];
|
|
8679
|
+
daysPerWeek: Scalars['Float'];
|
|
8680
|
+
hoursPerDay: Scalars['Float'];
|
|
8681
|
+
defaultUnit: JiraTimeUnit;
|
|
8682
|
+
format: JiraTimeFormat;
|
|
8683
|
+
};
|
|
8321
8684
|
export declare type JiraGrantTypeKey = {
|
|
8322
8685
|
__typename?: 'JiraGrantTypeKey';
|
|
8323
8686
|
key: JiraGrantTypeKeyEnum;
|
|
@@ -8417,6 +8780,9 @@ export declare type JiraIssue = Node & {
|
|
|
8417
8780
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
8418
8781
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
8419
8782
|
errorRetrievingData?: Maybe<Scalars['Boolean']>;
|
|
8783
|
+
storyPointsField?: Maybe<JiraNumberField>;
|
|
8784
|
+
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
8785
|
+
screenId?: Maybe<Scalars['Long']>;
|
|
8420
8786
|
};
|
|
8421
8787
|
export declare type JiraIssueFieldsArgs = {
|
|
8422
8788
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9819,6 +10185,7 @@ export declare type JiraOAuthAppsApp = {
|
|
|
9819
10185
|
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModule>;
|
|
9820
10186
|
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModule>;
|
|
9821
10187
|
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModule>;
|
|
10188
|
+
remoteLinksModule?: Maybe<JiraOAuthAppsRemoteLinksModule>;
|
|
9822
10189
|
};
|
|
9823
10190
|
export declare type JiraOAuthAppsAppInput = {
|
|
9824
10191
|
name: Scalars['String'];
|
|
@@ -9828,12 +10195,14 @@ export declare type JiraOAuthAppsAppInput = {
|
|
|
9828
10195
|
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModuleInput>;
|
|
9829
10196
|
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
|
|
9830
10197
|
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
|
|
10198
|
+
remoteLinksModule?: Maybe<JiraOAuthAppsRemoteLinksModuleInput>;
|
|
9831
10199
|
};
|
|
9832
10200
|
export declare type JiraOAuthAppsAppUpdateInput = {
|
|
9833
10201
|
buildsModule?: Maybe<JiraOAuthAppsBuildsModuleInput>;
|
|
9834
10202
|
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModuleInput>;
|
|
9835
10203
|
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
|
|
9836
10204
|
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
|
|
10205
|
+
remoteLinksModule?: Maybe<JiraOAuthAppsRemoteLinksModuleInput>;
|
|
9837
10206
|
};
|
|
9838
10207
|
export declare type JiraOAuthAppsApps = {
|
|
9839
10208
|
__typename?: 'JiraOAuthAppsApps';
|
|
@@ -9934,6 +10303,33 @@ export declare type JiraOAuthAppsPayload = Payload & {
|
|
|
9934
10303
|
success: Scalars['Boolean'];
|
|
9935
10304
|
errors?: Maybe<Array<MutationError>>;
|
|
9936
10305
|
};
|
|
10306
|
+
export declare type JiraOAuthAppsRemoteLinksModule = {
|
|
10307
|
+
__typename?: 'JiraOAuthAppsRemoteLinksModule';
|
|
10308
|
+
isEnabled: Scalars['Boolean'];
|
|
10309
|
+
actions?: Maybe<Array<JiraOAuthAppsRemoteLinksModuleAction>>;
|
|
10310
|
+
};
|
|
10311
|
+
export declare type JiraOAuthAppsRemoteLinksModuleAction = {
|
|
10312
|
+
__typename?: 'JiraOAuthAppsRemoteLinksModuleAction';
|
|
10313
|
+
id: Scalars['String'];
|
|
10314
|
+
label: JiraOAuthAppsRemoteLinksModuleActionLabel;
|
|
10315
|
+
urlTemplate: Scalars['String'];
|
|
10316
|
+
};
|
|
10317
|
+
export declare type JiraOAuthAppsRemoteLinksModuleActionInput = {
|
|
10318
|
+
id: Scalars['String'];
|
|
10319
|
+
label: JiraOAuthAppsRemoteLinksModuleActionLabelInput;
|
|
10320
|
+
urlTemplate: Scalars['String'];
|
|
10321
|
+
};
|
|
10322
|
+
export declare type JiraOAuthAppsRemoteLinksModuleActionLabel = {
|
|
10323
|
+
__typename?: 'JiraOAuthAppsRemoteLinksModuleActionLabel';
|
|
10324
|
+
value: Scalars['String'];
|
|
10325
|
+
};
|
|
10326
|
+
export declare type JiraOAuthAppsRemoteLinksModuleActionLabelInput = {
|
|
10327
|
+
value: Scalars['String'];
|
|
10328
|
+
};
|
|
10329
|
+
export declare type JiraOAuthAppsRemoteLinksModuleInput = {
|
|
10330
|
+
isEnabled: Scalars['Boolean'];
|
|
10331
|
+
actions?: Maybe<Array<JiraOAuthAppsRemoteLinksModuleActionInput>>;
|
|
10332
|
+
};
|
|
9937
10333
|
export declare type JiraOAuthAppsUpdateAppInput = {
|
|
9938
10334
|
clientId: Scalars['ID'];
|
|
9939
10335
|
app: JiraOAuthAppsAppUpdateInput;
|
|
@@ -9953,6 +10349,7 @@ export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
|
|
|
9953
10349
|
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
9954
10350
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
9955
10351
|
oauthAppId?: Maybe<Scalars['ID']>;
|
|
10352
|
+
marketplaceAppKey?: Maybe<Scalars['String']>;
|
|
9956
10353
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
9957
10354
|
};
|
|
9958
10355
|
export declare type JiraOption = Node & {
|
|
@@ -10018,10 +10415,16 @@ export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFiel
|
|
|
10018
10415
|
name: Scalars['String'];
|
|
10019
10416
|
description?: Maybe<Scalars['String']>;
|
|
10020
10417
|
parentIssue?: Maybe<JiraIssue>;
|
|
10418
|
+
parentVisibility?: Maybe<JiraParentVisibility>;
|
|
10021
10419
|
searchUrl?: Maybe<Scalars['String']>;
|
|
10022
10420
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
10023
10421
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
10024
10422
|
};
|
|
10423
|
+
export declare type JiraParentVisibility = {
|
|
10424
|
+
__typename?: 'JiraParentVisibility';
|
|
10425
|
+
hasEpicLinkFieldDependency?: Maybe<Scalars['Boolean']>;
|
|
10426
|
+
canUseParentLinkField?: Maybe<Scalars['Boolean']>;
|
|
10427
|
+
};
|
|
10025
10428
|
export declare type JiraPeopleField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10026
10429
|
__typename?: 'JiraPeopleField';
|
|
10027
10430
|
id: Scalars['ID'];
|
|
@@ -10270,13 +10673,14 @@ export declare type JiraProject = Node & {
|
|
|
10270
10673
|
status?: Maybe<JiraProjectStatus>;
|
|
10271
10674
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
10272
10675
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
10676
|
+
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
10273
10677
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
10274
|
-
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
10275
10678
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
10276
10679
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
10277
10680
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
10278
10681
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
10279
10682
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
10683
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
10280
10684
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
10281
10685
|
};
|
|
10282
10686
|
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
@@ -10521,6 +10925,7 @@ export declare type JiraProjectFilterInput = {
|
|
|
10521
10925
|
keyword?: Maybe<Scalars['String']>;
|
|
10522
10926
|
sortBy?: Maybe<JiraProjectSortInput>;
|
|
10523
10927
|
};
|
|
10928
|
+
export declare type JiraProjectNavigationMetadata = JiraSoftwareProjectNavigationMetadata | JiraServiceManagementProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
10524
10929
|
export declare type JiraProjectPermission = {
|
|
10525
10930
|
__typename?: 'JiraProjectPermission';
|
|
10526
10931
|
key: Scalars['String'];
|
|
@@ -10587,6 +10992,7 @@ export declare type JiraQuery = {
|
|
|
10587
10992
|
jiraProject?: Maybe<JiraProject>;
|
|
10588
10993
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
10589
10994
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
10995
|
+
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
10590
10996
|
filter?: Maybe<JiraFilter>;
|
|
10591
10997
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
10592
10998
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
@@ -10594,6 +11000,7 @@ export declare type JiraQuery = {
|
|
|
10594
11000
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
10595
11001
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
10596
11002
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
11003
|
+
favourites?: Maybe<JiraFavouriteConnection>;
|
|
10597
11004
|
issueByKey?: Maybe<JiraIssue>;
|
|
10598
11005
|
issueById?: Maybe<JiraIssue>;
|
|
10599
11006
|
issue?: Maybe<JiraIssue>;
|
|
@@ -10610,6 +11017,7 @@ export declare type JiraQuery = {
|
|
|
10610
11017
|
issueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationQuery>;
|
|
10611
11018
|
issueHierarchyLimits?: Maybe<JiraIssueHierarchyLimits>;
|
|
10612
11019
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
11020
|
+
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
10613
11021
|
version?: Maybe<JiraVersionResult>;
|
|
10614
11022
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
10615
11023
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
@@ -10622,6 +11030,7 @@ export declare type JiraQuery = {
|
|
|
10622
11030
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
10623
11031
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
10624
11032
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
11033
|
+
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10625
11034
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
10626
11035
|
};
|
|
10627
11036
|
export declare type JiraQueryJiraProjectArgs = {
|
|
@@ -10642,6 +11051,9 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
10642
11051
|
after?: Maybe<Scalars['String']>;
|
|
10643
11052
|
before?: Maybe<Scalars['String']>;
|
|
10644
11053
|
};
|
|
11054
|
+
export declare type JiraQueryTimeTrackingSettingsArgs = {
|
|
11055
|
+
cloudId: Scalars['ID'];
|
|
11056
|
+
};
|
|
10645
11057
|
export declare type JiraQueryFilterArgs = {
|
|
10646
11058
|
id: Scalars['ID'];
|
|
10647
11059
|
};
|
|
@@ -10674,6 +11086,14 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
10674
11086
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
10675
11087
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
10676
11088
|
};
|
|
11089
|
+
export declare type JiraQueryFavouritesArgs = {
|
|
11090
|
+
cloudId: Scalars['ID'];
|
|
11091
|
+
filter: JiraFavouriteFilter;
|
|
11092
|
+
first?: Maybe<Scalars['Int']>;
|
|
11093
|
+
after?: Maybe<Scalars['String']>;
|
|
11094
|
+
last?: Maybe<Scalars['Int']>;
|
|
11095
|
+
before?: Maybe<Scalars['String']>;
|
|
11096
|
+
};
|
|
10677
11097
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
10678
11098
|
key: Scalars['String'];
|
|
10679
11099
|
cloudId: Scalars['ID'];
|
|
@@ -10742,6 +11162,9 @@ export declare type JiraQueryIssueHierarchyLimitsArgs = {
|
|
|
10742
11162
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
10743
11163
|
cloudId: Scalars['ID'];
|
|
10744
11164
|
};
|
|
11165
|
+
export declare type JiraQueryJiraProjectsArgs = {
|
|
11166
|
+
ids: Array<Scalars['ID']>;
|
|
11167
|
+
};
|
|
10745
11168
|
export declare type JiraQueryVersionArgs = {
|
|
10746
11169
|
id: Scalars['ID'];
|
|
10747
11170
|
};
|
|
@@ -10789,6 +11212,10 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
10789
11212
|
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
10790
11213
|
projectId: Scalars['ID'];
|
|
10791
11214
|
};
|
|
11215
|
+
export declare type JiraQueryDeploymentsFeaturePreconditionByProjectKeyArgs = {
|
|
11216
|
+
cloudId: Scalars['ID'];
|
|
11217
|
+
projectKey: Scalars['String'];
|
|
11218
|
+
};
|
|
10792
11219
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
10793
11220
|
projectId: Scalars['ID'];
|
|
10794
11221
|
};
|
|
@@ -11086,6 +11513,7 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
11086
11513
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
11087
11514
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
11088
11515
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
11516
|
+
approvalState?: Maybe<JiraServiceManagementApprovalState>;
|
|
11089
11517
|
};
|
|
11090
11518
|
export declare type JiraServiceManagementActiveApprovalApproversArgs = {
|
|
11091
11519
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -11146,6 +11574,10 @@ export declare type JiraServiceManagementApprovalFieldCompletedApprovalsConnecti
|
|
|
11146
11574
|
last?: Maybe<Scalars['Int']>;
|
|
11147
11575
|
before?: Maybe<Scalars['String']>;
|
|
11148
11576
|
};
|
|
11577
|
+
export declare enum JiraServiceManagementApprovalState {
|
|
11578
|
+
InsufficientApprovers = "INSUFFICIENT_APPROVERS",
|
|
11579
|
+
Ok = "OK"
|
|
11580
|
+
}
|
|
11149
11581
|
export declare type JiraServiceManagementApprovalStatus = {
|
|
11150
11582
|
__typename?: 'JiraServiceManagementApprovalStatus';
|
|
11151
11583
|
id?: Maybe<Scalars['String']>;
|
|
@@ -11432,6 +11864,11 @@ export declare enum JiraServiceManagementPractice {
|
|
|
11432
11864
|
ChangeManagement = "CHANGE_MANAGEMENT",
|
|
11433
11865
|
PostIncidentReview = "POST_INCIDENT_REVIEW"
|
|
11434
11866
|
}
|
|
11867
|
+
export declare type JiraServiceManagementProjectNavigationMetadata = {
|
|
11868
|
+
__typename?: 'JiraServiceManagementProjectNavigationMetadata';
|
|
11869
|
+
queueId: Scalars['ID'];
|
|
11870
|
+
queueName: Scalars['String'];
|
|
11871
|
+
};
|
|
11435
11872
|
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
11436
11873
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
11437
11874
|
id: Scalars['ID'];
|
|
@@ -11761,8 +12198,15 @@ export declare type JiraSingleVersionPickerFieldVersionsArgs = {
|
|
|
11761
12198
|
before?: Maybe<Scalars['String']>;
|
|
11762
12199
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
11763
12200
|
};
|
|
11764
|
-
export declare type
|
|
11765
|
-
__typename?: '
|
|
12201
|
+
export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
12202
|
+
__typename?: 'JiraSoftwareProjectNavigationMetadata';
|
|
12203
|
+
id: Scalars['ID'];
|
|
12204
|
+
boardId: Scalars['ID'];
|
|
12205
|
+
boardName: Scalars['String'];
|
|
12206
|
+
isSimpleBoard: Scalars['Boolean'];
|
|
12207
|
+
};
|
|
12208
|
+
export declare type JiraSprint = Node & {
|
|
12209
|
+
__typename?: 'JiraSprint';
|
|
11766
12210
|
id: Scalars['ID'];
|
|
11767
12211
|
sprintId: Scalars['String'];
|
|
11768
12212
|
name?: Maybe<Scalars['String']>;
|
|
@@ -11909,6 +12353,7 @@ export declare type JiraTeam = Node & {
|
|
|
11909
12353
|
description?: Maybe<Scalars['String']>;
|
|
11910
12354
|
avatar?: Maybe<JiraAvatar>;
|
|
11911
12355
|
members?: Maybe<JiraUserConnection>;
|
|
12356
|
+
isShared?: Maybe<Scalars['Boolean']>;
|
|
11912
12357
|
};
|
|
11913
12358
|
export declare type JiraTeamConnection = {
|
|
11914
12359
|
__typename?: 'JiraTeamConnection';
|
|
@@ -12061,6 +12506,7 @@ export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfigu
|
|
|
12061
12506
|
name: Scalars['String'];
|
|
12062
12507
|
description?: Maybe<Scalars['String']>;
|
|
12063
12508
|
url?: Maybe<Scalars['URL']>;
|
|
12509
|
+
urlValue?: Maybe<Scalars['String']>;
|
|
12064
12510
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
12065
12511
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
12066
12512
|
};
|
|
@@ -12285,6 +12731,10 @@ export declare type JiraWorkLogEdge = {
|
|
|
12285
12731
|
node?: Maybe<JiraWorklog>;
|
|
12286
12732
|
cursor: Scalars['String'];
|
|
12287
12733
|
};
|
|
12734
|
+
export declare type JiraWorkManagementProjectNavigationMetadata = {
|
|
12735
|
+
__typename?: 'JiraWorkManagementProjectNavigationMetadata';
|
|
12736
|
+
boardName: Scalars['String'];
|
|
12737
|
+
};
|
|
12288
12738
|
export declare type JiraWorklog = Node & {
|
|
12289
12739
|
__typename?: 'JiraWorklog';
|
|
12290
12740
|
id: Scalars['ID'];
|
|
@@ -12762,44 +13212,9 @@ export declare type Mutation = {
|
|
|
12762
13212
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
12763
13213
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
12764
13214
|
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
13215
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
12800
13216
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
12801
13217
|
updateReleaseNote: ContentPlatformReleaseNote;
|
|
12802
|
-
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
12803
13218
|
devOps?: Maybe<DevOpsMutation>;
|
|
12804
13219
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
12805
13220
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -12819,16 +13234,6 @@ export declare type Mutation = {
|
|
|
12819
13234
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
12820
13235
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
12821
13236
|
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
13237
|
appStorage?: Maybe<AppStorageMutation>;
|
|
12833
13238
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
12834
13239
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
@@ -12888,6 +13293,53 @@ export declare type Mutation = {
|
|
|
12888
13293
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
12889
13294
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
12890
13295
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
13296
|
+
compass?: Maybe<CompassCatalogMutationApi>;
|
|
13297
|
+
shepherd?: Maybe<ShepherdMutation>;
|
|
13298
|
+
directory?: Maybe<DirectoryMutation>;
|
|
13299
|
+
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
13300
|
+
jsw?: Maybe<JswMutation>;
|
|
13301
|
+
createColumn?: Maybe<CreateColumnOutput>;
|
|
13302
|
+
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
13303
|
+
rankColumn?: Maybe<RankColumnOutput>;
|
|
13304
|
+
setColumnLimit?: Maybe<SetColumnLimitOutput>;
|
|
13305
|
+
deleteColumn?: Maybe<DeleteColumnOutput>;
|
|
13306
|
+
startSprint?: Maybe<SprintResponse>;
|
|
13307
|
+
createSprint?: Maybe<CreateSprintResponse>;
|
|
13308
|
+
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
13309
|
+
deleteSprint?: Maybe<MutationResponse>;
|
|
13310
|
+
moveSprintUp?: Maybe<MoveSprintUpResponse>;
|
|
13311
|
+
moveSprintDown?: Maybe<MoveSprintDownResponse>;
|
|
13312
|
+
editSprint?: Maybe<SprintResponse>;
|
|
13313
|
+
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
13314
|
+
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
13315
|
+
setEstimationType?: Maybe<GenericMutationResponse>;
|
|
13316
|
+
createCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
13317
|
+
updateCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
13318
|
+
deleteCustomFilter?: Maybe<GenericMutationResponse>;
|
|
13319
|
+
boardCardMove?: Maybe<MoveCardOutput>;
|
|
13320
|
+
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
13321
|
+
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
13322
|
+
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
13323
|
+
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
13324
|
+
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
13325
|
+
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
13326
|
+
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
13327
|
+
createApp?: Maybe<CreateAppResponse>;
|
|
13328
|
+
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
13329
|
+
deleteApp?: Maybe<DeleteAppResponse>;
|
|
13330
|
+
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
13331
|
+
ecosystem?: Maybe<EcosystemMutation>;
|
|
13332
|
+
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
13333
|
+
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
13334
|
+
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
13335
|
+
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
13336
|
+
createDevOpsServiceRelationship?: Maybe<CreateDevOpsServiceRelationshipPayload>;
|
|
13337
|
+
updateDevOpsServiceRelationship?: Maybe<UpdateDevOpsServiceRelationshipPayload>;
|
|
13338
|
+
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
13339
|
+
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
13340
|
+
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
13341
|
+
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
13342
|
+
roadmaps?: Maybe<RoadmapsMutation>;
|
|
12891
13343
|
installApp?: Maybe<AppInstallationResponse>;
|
|
12892
13344
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
12893
13345
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
@@ -12901,7 +13353,6 @@ export declare type Mutation = {
|
|
|
12901
13353
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
12902
13354
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
12903
13355
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
12904
|
-
compass?: Maybe<CompassCatalogMutationApi>;
|
|
12905
13356
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
12906
13357
|
};
|
|
12907
13358
|
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
@@ -12913,99 +13364,6 @@ export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
|
12913
13364
|
export declare type MutationDeleteDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
12914
13365
|
input: JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput;
|
|
12915
13366
|
};
|
|
12916
|
-
export declare type MutationHelpObjectStoreArgs = {
|
|
12917
|
-
cloudId: Scalars['ID'];
|
|
12918
|
-
};
|
|
12919
|
-
export declare type MutationCreateColumnArgs = {
|
|
12920
|
-
input?: Maybe<CreateColumnInput>;
|
|
12921
|
-
};
|
|
12922
|
-
export declare type MutationSetColumnNameArgs = {
|
|
12923
|
-
input?: Maybe<SetColumnNameInput>;
|
|
12924
|
-
};
|
|
12925
|
-
export declare type MutationRankColumnArgs = {
|
|
12926
|
-
input?: Maybe<RankColumnInput>;
|
|
12927
|
-
};
|
|
12928
|
-
export declare type MutationSetColumnLimitArgs = {
|
|
12929
|
-
input?: Maybe<SetColumnLimitInput>;
|
|
12930
|
-
};
|
|
12931
|
-
export declare type MutationDeleteColumnArgs = {
|
|
12932
|
-
input?: Maybe<DeleteColumnInput>;
|
|
12933
|
-
};
|
|
12934
|
-
export declare type MutationStartSprintArgs = {
|
|
12935
|
-
input?: Maybe<StartSprintInput>;
|
|
12936
|
-
};
|
|
12937
|
-
export declare type MutationCreateSprintArgs = {
|
|
12938
|
-
input?: Maybe<CreateSprintInput>;
|
|
12939
|
-
};
|
|
12940
|
-
export declare type MutationCompleteSprintArgs = {
|
|
12941
|
-
input?: Maybe<CompleteSprintInput>;
|
|
12942
|
-
};
|
|
12943
|
-
export declare type MutationDeleteSprintArgs = {
|
|
12944
|
-
input?: Maybe<DeleteSprintInput>;
|
|
12945
|
-
};
|
|
12946
|
-
export declare type MutationMoveSprintUpArgs = {
|
|
12947
|
-
input?: Maybe<MoveSprintUpInput>;
|
|
12948
|
-
};
|
|
12949
|
-
export declare type MutationMoveSprintDownArgs = {
|
|
12950
|
-
input?: Maybe<MoveSprintDownInput>;
|
|
12951
|
-
};
|
|
12952
|
-
export declare type MutationEditSprintArgs = {
|
|
12953
|
-
input?: Maybe<EditSprintInput>;
|
|
12954
|
-
};
|
|
12955
|
-
export declare type MutationSetUserSwimlaneStrategyArgs = {
|
|
12956
|
-
input?: Maybe<SetSwimlaneStrategyInput>;
|
|
12957
|
-
};
|
|
12958
|
-
export declare type MutationSetSwimlaneStrategyArgs = {
|
|
12959
|
-
input?: Maybe<SetSwimlaneStrategyInput>;
|
|
12960
|
-
};
|
|
12961
|
-
export declare type MutationSetEstimationTypeArgs = {
|
|
12962
|
-
input?: Maybe<SetEstimationTypeInput>;
|
|
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;
|
|
12999
|
-
};
|
|
13000
|
-
export declare type MutationUpdateAppDetailsArgs = {
|
|
13001
|
-
input: UpdateAppDetailsInput;
|
|
13002
|
-
};
|
|
13003
|
-
export declare type MutationDeleteAppArgs = {
|
|
13004
|
-
input: DeleteAppInput;
|
|
13005
|
-
};
|
|
13006
|
-
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
13007
|
-
input: UpdateAtlassianOAuthClientInput;
|
|
13008
|
-
};
|
|
13009
13367
|
export declare type MutationCreateReleaseNoteArgs = {
|
|
13010
13368
|
changeStatus?: Maybe<Scalars['String']>;
|
|
13011
13369
|
title?: Maybe<Scalars['String']>;
|
|
@@ -13042,9 +13400,6 @@ export declare type MutationUpdateReleaseNoteArgs = {
|
|
|
13042
13400
|
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
13043
13401
|
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
13044
13402
|
};
|
|
13045
|
-
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
13046
|
-
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
13047
|
-
};
|
|
13048
13403
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
13049
13404
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
13050
13405
|
};
|
|
@@ -13096,33 +13451,6 @@ export declare type MutationUpdateJiraProjectAndRepositoryRelationshipArgs = {
|
|
|
13096
13451
|
export declare type MutationDeleteJiraProjectAndRepositoryRelationshipArgs = {
|
|
13097
13452
|
input: DeleteJiraProjectAndRepositoryRelationshipInput;
|
|
13098
13453
|
};
|
|
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
13454
|
export declare type MutationUpdatePolarisTermsConsentArgs = {
|
|
13127
13455
|
input: UpdatePolarisTermsConsentInput;
|
|
13128
13456
|
};
|
|
@@ -13303,6 +13631,129 @@ export declare type MutationWatchMarketplaceAppArgs = {
|
|
|
13303
13631
|
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
13304
13632
|
id: Scalars['ID'];
|
|
13305
13633
|
};
|
|
13634
|
+
export declare type MutationHelpObjectStoreArgs = {
|
|
13635
|
+
cloudId: Scalars['ID'];
|
|
13636
|
+
};
|
|
13637
|
+
export declare type MutationCreateColumnArgs = {
|
|
13638
|
+
input?: Maybe<CreateColumnInput>;
|
|
13639
|
+
};
|
|
13640
|
+
export declare type MutationSetColumnNameArgs = {
|
|
13641
|
+
input?: Maybe<SetColumnNameInput>;
|
|
13642
|
+
};
|
|
13643
|
+
export declare type MutationRankColumnArgs = {
|
|
13644
|
+
input?: Maybe<RankColumnInput>;
|
|
13645
|
+
};
|
|
13646
|
+
export declare type MutationSetColumnLimitArgs = {
|
|
13647
|
+
input?: Maybe<SetColumnLimitInput>;
|
|
13648
|
+
};
|
|
13649
|
+
export declare type MutationDeleteColumnArgs = {
|
|
13650
|
+
input?: Maybe<DeleteColumnInput>;
|
|
13651
|
+
};
|
|
13652
|
+
export declare type MutationStartSprintArgs = {
|
|
13653
|
+
input?: Maybe<StartSprintInput>;
|
|
13654
|
+
};
|
|
13655
|
+
export declare type MutationCreateSprintArgs = {
|
|
13656
|
+
input?: Maybe<CreateSprintInput>;
|
|
13657
|
+
};
|
|
13658
|
+
export declare type MutationCompleteSprintArgs = {
|
|
13659
|
+
input?: Maybe<CompleteSprintInput>;
|
|
13660
|
+
};
|
|
13661
|
+
export declare type MutationDeleteSprintArgs = {
|
|
13662
|
+
input?: Maybe<DeleteSprintInput>;
|
|
13663
|
+
};
|
|
13664
|
+
export declare type MutationMoveSprintUpArgs = {
|
|
13665
|
+
input?: Maybe<MoveSprintUpInput>;
|
|
13666
|
+
};
|
|
13667
|
+
export declare type MutationMoveSprintDownArgs = {
|
|
13668
|
+
input?: Maybe<MoveSprintDownInput>;
|
|
13669
|
+
};
|
|
13670
|
+
export declare type MutationEditSprintArgs = {
|
|
13671
|
+
input?: Maybe<EditSprintInput>;
|
|
13672
|
+
};
|
|
13673
|
+
export declare type MutationSetUserSwimlaneStrategyArgs = {
|
|
13674
|
+
input?: Maybe<SetSwimlaneStrategyInput>;
|
|
13675
|
+
};
|
|
13676
|
+
export declare type MutationSetSwimlaneStrategyArgs = {
|
|
13677
|
+
input?: Maybe<SetSwimlaneStrategyInput>;
|
|
13678
|
+
};
|
|
13679
|
+
export declare type MutationSetEstimationTypeArgs = {
|
|
13680
|
+
input?: Maybe<SetEstimationTypeInput>;
|
|
13681
|
+
};
|
|
13682
|
+
export declare type MutationCreateCustomFilterArgs = {
|
|
13683
|
+
input?: Maybe<CreateCustomFilterInput>;
|
|
13684
|
+
};
|
|
13685
|
+
export declare type MutationUpdateCustomFilterArgs = {
|
|
13686
|
+
input?: Maybe<UpdateCustomFilterInput>;
|
|
13687
|
+
};
|
|
13688
|
+
export declare type MutationDeleteCustomFilterArgs = {
|
|
13689
|
+
input?: Maybe<DeleteCustomFilterInput>;
|
|
13690
|
+
};
|
|
13691
|
+
export declare type MutationBoardCardMoveArgs = {
|
|
13692
|
+
input?: Maybe<BoardCardMoveInput>;
|
|
13693
|
+
};
|
|
13694
|
+
export declare type MutationAssignIssueParentArgs = {
|
|
13695
|
+
input?: Maybe<AssignIssueParentInput>;
|
|
13696
|
+
};
|
|
13697
|
+
export declare type MutationUnassignIssueParentArgs = {
|
|
13698
|
+
input?: Maybe<UnassignIssueParentInput>;
|
|
13699
|
+
};
|
|
13700
|
+
export declare type MutationCreateCardParentArgs = {
|
|
13701
|
+
input: CardParentCreateInput;
|
|
13702
|
+
};
|
|
13703
|
+
export declare type MutationRankCardParentArgs = {
|
|
13704
|
+
input: CardParentRankInput;
|
|
13705
|
+
};
|
|
13706
|
+
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
13707
|
+
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
13708
|
+
};
|
|
13709
|
+
export declare type MutationToggleBoardFeatureArgs = {
|
|
13710
|
+
input?: Maybe<ToggleBoardFeatureInput>;
|
|
13711
|
+
};
|
|
13712
|
+
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
13713
|
+
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
13714
|
+
};
|
|
13715
|
+
export declare type MutationCreateAppArgs = {
|
|
13716
|
+
input: CreateAppInput;
|
|
13717
|
+
};
|
|
13718
|
+
export declare type MutationUpdateAppDetailsArgs = {
|
|
13719
|
+
input: UpdateAppDetailsInput;
|
|
13720
|
+
};
|
|
13721
|
+
export declare type MutationDeleteAppArgs = {
|
|
13722
|
+
input: DeleteAppInput;
|
|
13723
|
+
};
|
|
13724
|
+
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
13725
|
+
input: UpdateAtlassianOAuthClientInput;
|
|
13726
|
+
};
|
|
13727
|
+
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
13728
|
+
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
13729
|
+
};
|
|
13730
|
+
export declare type MutationCreateDevOpsServiceArgs = {
|
|
13731
|
+
input: CreateDevOpsServiceInput;
|
|
13732
|
+
};
|
|
13733
|
+
export declare type MutationUpdateDevOpsServiceArgs = {
|
|
13734
|
+
input: UpdateDevOpsServiceInput;
|
|
13735
|
+
};
|
|
13736
|
+
export declare type MutationDeleteDevOpsServiceArgs = {
|
|
13737
|
+
input: DeleteDevOpsServiceInput;
|
|
13738
|
+
};
|
|
13739
|
+
export declare type MutationCreateDevOpsServiceRelationshipArgs = {
|
|
13740
|
+
input: CreateDevOpsServiceRelationshipInput;
|
|
13741
|
+
};
|
|
13742
|
+
export declare type MutationUpdateDevOpsServiceRelationshipArgs = {
|
|
13743
|
+
input: UpdateDevOpsServiceRelationshipInput;
|
|
13744
|
+
};
|
|
13745
|
+
export declare type MutationDeleteDevOpsServiceRelationshipArgs = {
|
|
13746
|
+
input: DeleteDevOpsServiceRelationshipInput;
|
|
13747
|
+
};
|
|
13748
|
+
export declare type MutationUpdateDevOpsServiceEntityPropertiesArgs = {
|
|
13749
|
+
input: UpdateDevOpsServiceEntityPropertiesInput;
|
|
13750
|
+
};
|
|
13751
|
+
export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
13752
|
+
input: DeleteDevOpsServiceEntityPropertiesInput;
|
|
13753
|
+
};
|
|
13754
|
+
export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
13755
|
+
input: UpdateDeveloperLogAccessInput;
|
|
13756
|
+
};
|
|
13306
13757
|
export declare type MutationInstallAppArgs = {
|
|
13307
13758
|
input: AppInstallationInput;
|
|
13308
13759
|
};
|
|
@@ -14592,36 +15043,16 @@ export declare type ProjectAvatars = {
|
|
|
14592
15043
|
};
|
|
14593
15044
|
export declare type Query = {
|
|
14594
15045
|
__typename?: 'Query';
|
|
14595
|
-
echo?: Maybe<Scalars['String']>;
|
|
14596
|
-
diagnostics?: Maybe<Scalars['JSON']>;
|
|
14597
|
-
node?: Maybe<Node>;
|
|
14598
15046
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
14599
15047
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
14600
|
-
activities?: Maybe<Activities>;
|
|
14601
|
-
activity?: Maybe<Activity>;
|
|
14602
|
-
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
14603
|
-
shepherd?: Maybe<ShepherdQuery>;
|
|
14604
15048
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
14605
15049
|
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
15050
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
14615
15051
|
releaseNote: ContentPlatformReleaseNote;
|
|
14616
15052
|
practicePages: ContentPlatformPracticePagesConnection;
|
|
14617
15053
|
practicePage: ContentPlatformPracticePage;
|
|
14618
15054
|
smarts?: Maybe<SmartsQueryApi>;
|
|
14619
|
-
devOpsTools?: Maybe<DevOpsTools>;
|
|
14620
|
-
search?: Maybe<SearchQueryApi>;
|
|
14621
15055
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
14622
|
-
me: AuthenticationContext;
|
|
14623
|
-
user?: Maybe<User>;
|
|
14624
|
-
users?: Maybe<Array<User>>;
|
|
14625
15056
|
devOps?: Maybe<DevOps>;
|
|
14626
15057
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
14627
15058
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -14640,20 +15071,8 @@ export declare type Query = {
|
|
|
14640
15071
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
14641
15072
|
codeInJira?: Maybe<CodeInJira>;
|
|
14642
15073
|
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
15074
|
avocado?: Maybe<Avocado>;
|
|
14650
|
-
appLogs?: Maybe<AppLogConnection>;
|
|
14651
|
-
appLogLines?: Maybe<AppLogLineConnection>;
|
|
14652
|
-
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
14653
|
-
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
14654
15075
|
team?: Maybe<TeamQuery>;
|
|
14655
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
14656
|
-
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
14657
15076
|
testing?: Maybe<Testing>;
|
|
14658
15077
|
movie?: Maybe<TestingMovie>;
|
|
14659
15078
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
@@ -14686,45 +15105,53 @@ export declare type Query = {
|
|
|
14686
15105
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
14687
15106
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
14688
15107
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
15108
|
+
compass?: Maybe<CompassCatalogQueryApi>;
|
|
15109
|
+
extensionsEcho?: Maybe<Scalars['String']>;
|
|
15110
|
+
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
15111
|
+
extensionByKey?: Maybe<Extension>;
|
|
15112
|
+
echo?: Maybe<Scalars['String']>;
|
|
15113
|
+
diagnostics?: Maybe<Scalars['JSON']>;
|
|
15114
|
+
node?: Maybe<Node>;
|
|
15115
|
+
activities?: Maybe<Activities>;
|
|
15116
|
+
activity?: Maybe<Activity>;
|
|
15117
|
+
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
15118
|
+
shepherd?: Maybe<ShepherdQuery>;
|
|
15119
|
+
directory?: Maybe<DirectoryQuery>;
|
|
15120
|
+
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
15121
|
+
jsw?: Maybe<JswQuery>;
|
|
15122
|
+
boardScope?: Maybe<BoardScope>;
|
|
15123
|
+
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
15124
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
15125
|
+
apps?: Maybe<AppConnection>;
|
|
15126
|
+
app?: Maybe<App>;
|
|
15127
|
+
appHostServices?: Maybe<Array<AppHostService>>;
|
|
15128
|
+
devOpsTools?: Maybe<DevOpsTools>;
|
|
15129
|
+
search?: Maybe<SearchQueryApi>;
|
|
15130
|
+
me: AuthenticationContext;
|
|
15131
|
+
user?: Maybe<User>;
|
|
15132
|
+
users?: Maybe<Array<User>>;
|
|
15133
|
+
devOpsService?: Maybe<DevOpsService>;
|
|
15134
|
+
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
15135
|
+
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
15136
|
+
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
15137
|
+
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
15138
|
+
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
15139
|
+
appLogs?: Maybe<AppLogConnection>;
|
|
15140
|
+
appLogLines?: Maybe<AppLogLineConnection>;
|
|
15141
|
+
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
15142
|
+
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
15143
|
+
roadmaps?: Maybe<RoadmapsQuery>;
|
|
15144
|
+
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
14689
15145
|
jiraReleases?: Maybe<JiraReleases>;
|
|
14690
15146
|
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
14691
15147
|
ecosystem?: Maybe<EcosystemQuery>;
|
|
14692
15148
|
appDeployment?: Maybe<AppDeployment>;
|
|
14693
15149
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
14694
15150
|
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
15151
|
};
|
|
14703
15152
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
14704
15153
|
id: Scalars['ID'];
|
|
14705
15154
|
};
|
|
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
15155
|
export declare type QueryReleaseNotesArgs = {
|
|
14729
15156
|
after?: Maybe<Scalars['String']>;
|
|
14730
15157
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14743,12 +15170,6 @@ export declare type QueryPracticePagesArgs = {
|
|
|
14743
15170
|
export declare type QueryPracticePageArgs = {
|
|
14744
15171
|
id: Scalars['String'];
|
|
14745
15172
|
};
|
|
14746
|
-
export declare type QueryUserArgs = {
|
|
14747
|
-
accountId: Scalars['ID'];
|
|
14748
|
-
};
|
|
14749
|
-
export declare type QueryUsersArgs = {
|
|
14750
|
-
accountIds: Array<Scalars['ID']>;
|
|
14751
|
-
};
|
|
14752
15173
|
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
14753
15174
|
id: Scalars['ID'];
|
|
14754
15175
|
cloudId: Scalars['ID'];
|
|
@@ -14826,56 +15247,6 @@ export declare type QueryJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
|
14826
15247
|
export declare type QueryCodeInJiraArgs = {
|
|
14827
15248
|
cloudId: Scalars['ID'];
|
|
14828
15249
|
};
|
|
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
15250
|
export declare type QueryMovieArgs = {
|
|
14880
15251
|
id: Scalars['ID'];
|
|
14881
15252
|
};
|
|
@@ -14975,17 +15346,6 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
14975
15346
|
hostingType: AtlassianProductHostingType;
|
|
14976
15347
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
14977
15348
|
};
|
|
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
15349
|
export declare type QueryExtensionsEchoArgs = {
|
|
14990
15350
|
text: Scalars['String'];
|
|
14991
15351
|
};
|
|
@@ -14997,6 +15357,98 @@ export declare type QueryExtensionByKeyArgs = {
|
|
|
14997
15357
|
definitionId: Scalars['ID'];
|
|
14998
15358
|
extensionKey: Scalars['String'];
|
|
14999
15359
|
};
|
|
15360
|
+
export declare type QueryNodeArgs = {
|
|
15361
|
+
id: Scalars['ID'];
|
|
15362
|
+
};
|
|
15363
|
+
export declare type QueryBoardScopeArgs = {
|
|
15364
|
+
boardId: Scalars['ID'];
|
|
15365
|
+
};
|
|
15366
|
+
export declare type QueryDevelopmentInformationArgs = {
|
|
15367
|
+
issueId: Scalars['ID'];
|
|
15368
|
+
};
|
|
15369
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
15370
|
+
projectAri: Scalars['ID'];
|
|
15371
|
+
};
|
|
15372
|
+
export declare type QueryAppsArgs = {
|
|
15373
|
+
first?: Maybe<Scalars['Int']>;
|
|
15374
|
+
after?: Maybe<Scalars['String']>;
|
|
15375
|
+
last?: Maybe<Scalars['Int']>;
|
|
15376
|
+
before?: Maybe<Scalars['String']>;
|
|
15377
|
+
filter?: Maybe<AppsFilter>;
|
|
15378
|
+
};
|
|
15379
|
+
export declare type QueryAppArgs = {
|
|
15380
|
+
id: Scalars['ID'];
|
|
15381
|
+
};
|
|
15382
|
+
export declare type QueryAppHostServicesArgs = {
|
|
15383
|
+
filter?: Maybe<AppServicesFilter>;
|
|
15384
|
+
};
|
|
15385
|
+
export declare type QueryUserArgs = {
|
|
15386
|
+
accountId: Scalars['ID'];
|
|
15387
|
+
};
|
|
15388
|
+
export declare type QueryUsersArgs = {
|
|
15389
|
+
accountIds: Array<Scalars['ID']>;
|
|
15390
|
+
};
|
|
15391
|
+
export declare type QueryDevOpsServiceArgs = {
|
|
15392
|
+
id: Scalars['ID'];
|
|
15393
|
+
};
|
|
15394
|
+
export declare type QueryDevOpsServiceTiersArgs = {
|
|
15395
|
+
cloudId: Scalars['String'];
|
|
15396
|
+
};
|
|
15397
|
+
export declare type QueryDevOpsServicesArgs = {
|
|
15398
|
+
cloudId: Scalars['String'];
|
|
15399
|
+
first?: Maybe<Scalars['Int']>;
|
|
15400
|
+
after?: Maybe<Scalars['String']>;
|
|
15401
|
+
filter?: Maybe<DevOpsServicesFilterInput>;
|
|
15402
|
+
};
|
|
15403
|
+
export declare type QueryDevOpsServicesByIdArgs = {
|
|
15404
|
+
ids: Array<Scalars['ID']>;
|
|
15405
|
+
};
|
|
15406
|
+
export declare type QueryDevOpsServiceRelationshipArgs = {
|
|
15407
|
+
id: Scalars['ID'];
|
|
15408
|
+
};
|
|
15409
|
+
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
15410
|
+
cloudId: Scalars['ID'];
|
|
15411
|
+
first?: Maybe<Scalars['Int']>;
|
|
15412
|
+
after?: Maybe<Scalars['String']>;
|
|
15413
|
+
nameFilter?: Maybe<Scalars['String']>;
|
|
15414
|
+
};
|
|
15415
|
+
export declare type QueryAppLogsArgs = {
|
|
15416
|
+
last?: Maybe<Scalars['Int']>;
|
|
15417
|
+
first?: Maybe<Scalars['Int']>;
|
|
15418
|
+
before?: Maybe<Scalars['String']>;
|
|
15419
|
+
after?: Maybe<Scalars['String']>;
|
|
15420
|
+
appId: Scalars['ID'];
|
|
15421
|
+
environmentId: Array<Scalars['ID']>;
|
|
15422
|
+
query?: Maybe<LogQueryInput>;
|
|
15423
|
+
};
|
|
15424
|
+
export declare type QueryAppLogLinesArgs = {
|
|
15425
|
+
first?: Maybe<Scalars['Int']>;
|
|
15426
|
+
after?: Maybe<Scalars['String']>;
|
|
15427
|
+
invocation: Scalars['ID'];
|
|
15428
|
+
};
|
|
15429
|
+
export declare type QueryDeveloperLogAccessArgs = {
|
|
15430
|
+
contextIds: Array<Scalars['ID']>;
|
|
15431
|
+
appId: Scalars['ID'];
|
|
15432
|
+
environmentType: AppEnvironmentType;
|
|
15433
|
+
};
|
|
15434
|
+
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
15435
|
+
appId: Scalars['ID'];
|
|
15436
|
+
};
|
|
15437
|
+
export declare type QueryTenantContextsArgs = {
|
|
15438
|
+
cloudIds?: Maybe<Array<Scalars['ID']>>;
|
|
15439
|
+
hostNames?: Maybe<Array<Scalars['String']>>;
|
|
15440
|
+
};
|
|
15441
|
+
export declare type QueryAppInstallationTaskArgs = {
|
|
15442
|
+
id: Scalars['ID'];
|
|
15443
|
+
};
|
|
15444
|
+
export declare type QueryAppDeploymentArgs = {
|
|
15445
|
+
appId: Scalars['ID'];
|
|
15446
|
+
environmentKey: Scalars['String'];
|
|
15447
|
+
id: Scalars['ID'];
|
|
15448
|
+
};
|
|
15449
|
+
export declare type QueryHelpCenterArgs = {
|
|
15450
|
+
cloudId: Scalars['ID'];
|
|
15451
|
+
};
|
|
15000
15452
|
export declare type QueryError = {
|
|
15001
15453
|
__typename?: 'QueryError';
|
|
15002
15454
|
identifier?: Maybe<Scalars['ID']>;
|
|
@@ -15034,12 +15486,14 @@ export declare enum RateLimitingCurrency {
|
|
|
15034
15486
|
TestingService = "TESTING_SERVICE",
|
|
15035
15487
|
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
15036
15488
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
15489
|
+
TeamsCurrency = "TEAMS_CURRENCY",
|
|
15490
|
+
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
15491
|
+
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
|
|
15492
|
+
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
15037
15493
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
15038
15494
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
15039
15495
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
15040
|
-
|
|
15041
|
-
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
15042
|
-
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
15496
|
+
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY"
|
|
15043
15497
|
}
|
|
15044
15498
|
export declare type RawStatus = {
|
|
15045
15499
|
__typename?: 'RawStatus';
|
|
@@ -15538,6 +15992,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
15538
15992
|
creationPreferences: RoadmapCreationPreferences;
|
|
15539
15993
|
isDependenciesVisible: Scalars['Boolean'];
|
|
15540
15994
|
isProgressVisible: Scalars['Boolean'];
|
|
15995
|
+
isWarningsVisible: Scalars['Boolean'];
|
|
15541
15996
|
listWidth: Scalars['Long'];
|
|
15542
15997
|
timelineMode: RoadmapTimelineMode;
|
|
15543
15998
|
epicView: RoadmapEpicView;
|
|
@@ -15983,9 +16438,15 @@ export declare type SearchAnalyticsInput = {
|
|
|
15983
16438
|
searchReferrerId?: Maybe<Scalars['String']>;
|
|
15984
16439
|
};
|
|
15985
16440
|
export declare type SearchBoardFilter = {
|
|
15986
|
-
projectARI
|
|
16441
|
+
projectARI?: Maybe<Scalars['ID']>;
|
|
16442
|
+
userARI?: Maybe<Scalars['ID']>;
|
|
15987
16443
|
negateProjectFilter?: Maybe<Scalars['Boolean']>;
|
|
16444
|
+
boardTypes?: Maybe<Array<SearchBoardProductType>>;
|
|
15988
16445
|
};
|
|
16446
|
+
export declare enum SearchBoardProductType {
|
|
16447
|
+
Software = "SOFTWARE",
|
|
16448
|
+
Business = "BUSINESS"
|
|
16449
|
+
}
|
|
15989
16450
|
export declare type SearchConfluenceFilter = {
|
|
15990
16451
|
spacesFilter?: Maybe<Array<Scalars['String']>>;
|
|
15991
16452
|
contributorsFilter?: Maybe<Array<Scalars['String']>>;
|
|
@@ -16100,8 +16561,10 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
16100
16561
|
type: SearchResultType;
|
|
16101
16562
|
description: Scalars['String'];
|
|
16102
16563
|
favourite: Scalars['Boolean'];
|
|
16103
|
-
boardId
|
|
16564
|
+
boardId?: Maybe<Scalars['ID']>;
|
|
16104
16565
|
container?: Maybe<SearchResultJiraBoardContainer>;
|
|
16566
|
+
product: SearchBoardProductType;
|
|
16567
|
+
isSimpleBoard: Scalars['Boolean'];
|
|
16105
16568
|
};
|
|
16106
16569
|
export declare type SearchResultJiraBoardContainer = SearchResultJiraBoardProjectContainer | SearchResultJiraBoardUserContainer;
|
|
16107
16570
|
export declare type SearchResultJiraBoardProjectContainer = {
|
|
@@ -16129,7 +16592,23 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
16129
16592
|
type: SearchResultType;
|
|
16130
16593
|
description: Scalars['String'];
|
|
16131
16594
|
favourite: Scalars['Boolean'];
|
|
16595
|
+
canView: Scalars['Boolean'];
|
|
16132
16596
|
simplified: Scalars['Boolean'];
|
|
16597
|
+
landingPageInfo?: Maybe<SearchResultProjectLandingPageInfo>;
|
|
16598
|
+
project?: Maybe<JiraProject>;
|
|
16599
|
+
};
|
|
16600
|
+
export declare type SearchResultProjectLandingPageInfo = SearchResultSoftwareProjectLandingPageInfo | SearchResultServiceDeskProjectLandingPageInfo | SearchResultWorkManagementProjectLandingPageInfo;
|
|
16601
|
+
export declare type SearchResultServiceDeskProjectLandingPageInfo = {
|
|
16602
|
+
__typename?: 'SearchResultServiceDeskProjectLandingPageInfo';
|
|
16603
|
+
id: Scalars['ID'];
|
|
16604
|
+
queueId: Scalars['Int'];
|
|
16605
|
+
queueName: Scalars['String'];
|
|
16606
|
+
};
|
|
16607
|
+
export declare type SearchResultSoftwareProjectLandingPageInfo = {
|
|
16608
|
+
__typename?: 'SearchResultSoftwareProjectLandingPageInfo';
|
|
16609
|
+
id: Scalars['ID'];
|
|
16610
|
+
boardId: Scalars['Int'];
|
|
16611
|
+
boardName: Scalars['String'];
|
|
16133
16612
|
};
|
|
16134
16613
|
export declare enum SearchResultType {
|
|
16135
16614
|
Blogpost = "blogpost",
|
|
@@ -16140,6 +16619,10 @@ export declare enum SearchResultType {
|
|
|
16140
16619
|
Plan = "plan",
|
|
16141
16620
|
Project = "project"
|
|
16142
16621
|
}
|
|
16622
|
+
export declare type SearchResultWorkManagementProjectLandingPageInfo = {
|
|
16623
|
+
__typename?: 'SearchResultWorkManagementProjectLandingPageInfo';
|
|
16624
|
+
boardName: Scalars['String'];
|
|
16625
|
+
};
|
|
16143
16626
|
export declare type SearchSpace = {
|
|
16144
16627
|
__typename?: 'SearchSpace';
|
|
16145
16628
|
key: Scalars['String'];
|
|
@@ -16264,7 +16747,7 @@ export declare type ShepherdAlert = {
|
|
|
16264
16747
|
assignee?: Maybe<ShepherdUser>;
|
|
16265
16748
|
cloudId?: Maybe<Scalars['ID']>;
|
|
16266
16749
|
createdOn: Scalars['DateTime'];
|
|
16267
|
-
description?: Maybe<
|
|
16750
|
+
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
16268
16751
|
id: Scalars['ID'];
|
|
16269
16752
|
orgId: Scalars['ID'];
|
|
16270
16753
|
status: ShepherdAlertStatus;
|
|
@@ -16314,6 +16797,11 @@ export declare type ShepherdAppInfo = {
|
|
|
16314
16797
|
env: Scalars['String'];
|
|
16315
16798
|
loginUrl: Scalars['String'];
|
|
16316
16799
|
};
|
|
16800
|
+
export declare type ShepherdConfig = {
|
|
16801
|
+
__typename?: 'ShepherdConfig';
|
|
16802
|
+
descriptionTemplates?: Maybe<Array<Maybe<ShepherdDescriptionTemplate>>>;
|
|
16803
|
+
};
|
|
16804
|
+
export declare type ShepherdConfigResult = QueryError | ShepherdConfig;
|
|
16317
16805
|
export declare type ShepherdCreateAlertInput = {
|
|
16318
16806
|
assignee?: Maybe<Scalars['ID']>;
|
|
16319
16807
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -16373,6 +16861,11 @@ export declare type ShepherdDescriptionSection = {
|
|
|
16373
16861
|
text?: Maybe<Scalars['JSON']>;
|
|
16374
16862
|
type?: Maybe<ShepherdAlertDescriptionType>;
|
|
16375
16863
|
};
|
|
16864
|
+
export declare type ShepherdDescriptionTemplate = {
|
|
16865
|
+
__typename?: 'ShepherdDescriptionTemplate';
|
|
16866
|
+
text?: Maybe<Scalars['JSON']>;
|
|
16867
|
+
type?: Maybe<ShepherdAlertTemplateType>;
|
|
16868
|
+
};
|
|
16376
16869
|
export declare type ShepherdEmailConnection = {
|
|
16377
16870
|
__typename?: 'ShepherdEmailConnection';
|
|
16378
16871
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -16450,6 +16943,7 @@ export declare type ShepherdQuery = {
|
|
|
16450
16943
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
16451
16944
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
16452
16945
|
shepherdAppInfo: ShepherdAppInfo;
|
|
16946
|
+
shepherdConfig?: Maybe<ShepherdConfigResult>;
|
|
16453
16947
|
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
16454
16948
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
16455
16949
|
};
|
|
@@ -16828,8 +17322,11 @@ export declare type Storage = {
|
|
|
16828
17322
|
};
|
|
16829
17323
|
export declare type Subscription = {
|
|
16830
17324
|
__typename?: 'Subscription';
|
|
16831
|
-
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
16832
17325
|
onTestingActivityItemUpdate?: Maybe<Node>;
|
|
17326
|
+
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
17327
|
+
};
|
|
17328
|
+
export declare type SubscriptionOnTestingActivityItemUpdateArgs = {
|
|
17329
|
+
issueId: Scalars['ID'];
|
|
16833
17330
|
};
|
|
16834
17331
|
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
16835
17332
|
cloudId: Scalars['ID'];
|
|
@@ -16837,9 +17334,6 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
16837
17334
|
projectType?: JiraProjectType;
|
|
16838
17335
|
filter?: JiraProjectFilterInput;
|
|
16839
17336
|
};
|
|
16840
|
-
export declare type SubscriptionOnTestingActivityItemUpdateArgs = {
|
|
16841
|
-
issueId: Scalars['ID'];
|
|
16842
|
-
};
|
|
16843
17337
|
export declare type SupportRequest = {
|
|
16844
17338
|
__typename?: 'SupportRequest';
|
|
16845
17339
|
id: Scalars['ID'];
|
|
@@ -16889,8 +17383,11 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
16889
17383
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
16890
17384
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
16891
17385
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
17386
|
+
removeSupportRequestOrganizations?: Maybe<Array<SupportRequestOrganization>>;
|
|
17387
|
+
addSupportRequestOrganizations?: Maybe<Array<SupportRequestOrganization>>;
|
|
16892
17388
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
16893
17389
|
updateSupportRequest?: Maybe<SupportRequest>;
|
|
17390
|
+
supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
|
|
16894
17391
|
};
|
|
16895
17392
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
16896
17393
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -16904,6 +17401,12 @@ export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArg
|
|
|
16904
17401
|
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
16905
17402
|
input: SupportRequestParticipantsInput;
|
|
16906
17403
|
};
|
|
17404
|
+
export declare type SupportRequestCatalogMutationApiRemoveSupportRequestOrganizationsArgs = {
|
|
17405
|
+
input: SupportRequestOrganizationsInput;
|
|
17406
|
+
};
|
|
17407
|
+
export declare type SupportRequestCatalogMutationApiAddSupportRequestOrganizationsArgs = {
|
|
17408
|
+
input: SupportRequestOrganizationsInput;
|
|
17409
|
+
};
|
|
16907
17410
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
16908
17411
|
emails: Array<Scalars['String']>;
|
|
16909
17412
|
organizationId?: Maybe<Scalars['String']>;
|
|
@@ -16918,6 +17421,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
16918
17421
|
me?: Maybe<SupportRequestPage>;
|
|
16919
17422
|
supportRequest?: Maybe<SupportRequest>;
|
|
16920
17423
|
users?: Maybe<SupportRequestUsers>;
|
|
17424
|
+
supportRequestContext?: Maybe<SupportRequestContextQueryApi>;
|
|
16921
17425
|
};
|
|
16922
17426
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
16923
17427
|
key: Scalars['ID'];
|
|
@@ -16942,6 +17446,24 @@ export declare type SupportRequestContactRelation = {
|
|
|
16942
17446
|
openRequest?: Maybe<SupportRequestTicket>;
|
|
16943
17447
|
contact?: Maybe<SupportRequestUser>;
|
|
16944
17448
|
};
|
|
17449
|
+
export declare type SupportRequestContextMutationApi = {
|
|
17450
|
+
__typename?: 'SupportRequestContextMutationApi';
|
|
17451
|
+
setNotifications: SupportRequestNotification;
|
|
17452
|
+
};
|
|
17453
|
+
export declare type SupportRequestContextMutationApiSetNotificationsArgs = {
|
|
17454
|
+
input: SupportRequestContextSetNotificationInput;
|
|
17455
|
+
};
|
|
17456
|
+
export declare type SupportRequestContextQueryApi = {
|
|
17457
|
+
__typename?: 'SupportRequestContextQueryApi';
|
|
17458
|
+
getNotificationStatus?: Maybe<SupportRequestNotification>;
|
|
17459
|
+
};
|
|
17460
|
+
export declare type SupportRequestContextQueryApiGetNotificationStatusArgs = {
|
|
17461
|
+
key: Scalars['ID'];
|
|
17462
|
+
};
|
|
17463
|
+
export declare type SupportRequestContextSetNotificationInput = {
|
|
17464
|
+
requestKey: Scalars['String'];
|
|
17465
|
+
status: Scalars['Boolean'];
|
|
17466
|
+
};
|
|
16945
17467
|
export declare type SupportRequestDisplayableDateTime = {
|
|
16946
17468
|
__typename?: 'SupportRequestDisplayableDateTime';
|
|
16947
17469
|
dateTime: Scalars['String'];
|
|
@@ -17006,6 +17528,19 @@ export declare type SupportRequestNamedContactRelations = {
|
|
|
17006
17528
|
cloudEnterpriseRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17007
17529
|
premierSupportRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17008
17530
|
};
|
|
17531
|
+
export declare type SupportRequestNotification = {
|
|
17532
|
+
__typename?: 'SupportRequestNotification';
|
|
17533
|
+
status?: Maybe<Scalars['Boolean']>;
|
|
17534
|
+
};
|
|
17535
|
+
export declare type SupportRequestOrganization = {
|
|
17536
|
+
__typename?: 'SupportRequestOrganization';
|
|
17537
|
+
id: Scalars['Int'];
|
|
17538
|
+
name: Scalars['String'];
|
|
17539
|
+
};
|
|
17540
|
+
export declare type SupportRequestOrganizationsInput = {
|
|
17541
|
+
requestKey: Scalars['String'];
|
|
17542
|
+
orgIds?: Maybe<Array<Scalars['Int']>>;
|
|
17543
|
+
};
|
|
17009
17544
|
export declare type SupportRequestPage = {
|
|
17010
17545
|
__typename?: 'SupportRequestPage';
|
|
17011
17546
|
profile?: Maybe<SupportRequestUser>;
|
|
@@ -17116,11 +17651,16 @@ export declare enum SupportRequestUserType {
|
|
|
17116
17651
|
export declare type SupportRequestUsers = {
|
|
17117
17652
|
__typename?: 'SupportRequestUsers';
|
|
17118
17653
|
searchUsers: Array<SupportRequestUser>;
|
|
17654
|
+
searchOrganizations: Array<SupportRequestOrganization>;
|
|
17119
17655
|
};
|
|
17120
17656
|
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
17121
17657
|
query?: Maybe<Scalars['String']>;
|
|
17122
17658
|
requestKey?: Maybe<Scalars['String']>;
|
|
17123
17659
|
};
|
|
17660
|
+
export declare type SupportRequestUsersSearchOrganizationsArgs = {
|
|
17661
|
+
query?: Maybe<Scalars['String']>;
|
|
17662
|
+
requestKey?: Maybe<Scalars['String']>;
|
|
17663
|
+
};
|
|
17124
17664
|
export declare type SupportRequests = {
|
|
17125
17665
|
__typename?: 'SupportRequests';
|
|
17126
17666
|
total: Scalars['Int'];
|
|
@@ -17681,6 +18221,16 @@ export declare type UpdateCompassComponentPayload = Payload & {
|
|
|
17681
18221
|
errors?: Maybe<Array<MutationError>>;
|
|
17682
18222
|
componentDetails?: Maybe<CompassComponent>;
|
|
17683
18223
|
};
|
|
18224
|
+
export declare type UpdateCompassComponentTypeInput = {
|
|
18225
|
+
id: Scalars['ID'];
|
|
18226
|
+
type: CompassComponentType;
|
|
18227
|
+
};
|
|
18228
|
+
export declare type UpdateCompassComponentTypePayload = Payload & {
|
|
18229
|
+
__typename?: 'UpdateCompassComponentTypePayload';
|
|
18230
|
+
success: Scalars['Boolean'];
|
|
18231
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18232
|
+
componentDetails?: Maybe<CompassComponent>;
|
|
18233
|
+
};
|
|
17684
18234
|
export declare type UpdateCompassFieldInput = {
|
|
17685
18235
|
definition: Scalars['ID'];
|
|
17686
18236
|
value: CompassFieldValueInput;
|