@forge/cli-shared 2.6.1-next.2 → 2.6.1-next.5
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 +23 -0
- package/out/graphql/graphql-types.d.ts +170 -25
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +21 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.6.1-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8876b96]
|
|
8
|
+
- @forge/manifest@3.10.0-next.5
|
|
9
|
+
|
|
10
|
+
## 2.6.1-next.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [9298536]
|
|
15
|
+
- @forge/manifest@3.10.0-next.4
|
|
16
|
+
|
|
17
|
+
## 2.6.1-next.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [d486898]
|
|
22
|
+
- Updated dependencies [f890e0e]
|
|
23
|
+
- Updated dependencies [91daffc]
|
|
24
|
+
- @forge/manifest@3.10.0-next.3
|
|
25
|
+
|
|
3
26
|
## 2.6.1-next.2
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -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';
|
|
@@ -877,38 +878,41 @@ export declare type AriGraphRelationshipsArgs = {
|
|
|
877
878
|
filter: AriGraphRelationshipsFilter;
|
|
878
879
|
first?: Maybe<Scalars['Int']>;
|
|
879
880
|
after?: Maybe<Scalars['String']>;
|
|
881
|
+
sort?: Maybe<AriGraphRelationshipsSort>;
|
|
880
882
|
};
|
|
881
|
-
export declare type
|
|
882
|
-
|
|
883
|
-
from: Scalars['ID'];
|
|
884
|
-
to: Scalars['ID'];
|
|
885
|
-
type: Scalars['ID'];
|
|
883
|
+
export declare type AriGraphCreateRelationshipsInput = {
|
|
884
|
+
relationships: Array<AriGraphCreateRelationshipsInputRelationship>;
|
|
886
885
|
};
|
|
887
|
-
export declare type
|
|
888
|
-
relationships: Array<AriGraphCreateRelationshipInputRelationship>;
|
|
889
|
-
};
|
|
890
|
-
export declare type AriGraphCreateRelationshipInputRelationship = {
|
|
886
|
+
export declare type AriGraphCreateRelationshipsInputRelationship = {
|
|
891
887
|
from: Scalars['ID'];
|
|
892
888
|
to: Scalars['ID'];
|
|
893
889
|
type: Scalars['ID'];
|
|
894
890
|
};
|
|
895
|
-
export declare type
|
|
896
|
-
__typename?: '
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
891
|
+
export declare type AriGraphCreateRelationshipsPayload = Payload & {
|
|
892
|
+
__typename?: 'AriGraphCreateRelationshipsPayload';
|
|
893
|
+
success: Scalars['Boolean'];
|
|
894
|
+
errors?: Maybe<Array<MutationError>>;
|
|
895
|
+
};
|
|
896
|
+
export declare type AriGraphDeleteRelationshipsInput = {
|
|
897
|
+
from?: Maybe<Scalars['ID']>;
|
|
898
|
+
to?: Maybe<Scalars['ID']>;
|
|
899
|
+
type?: Maybe<Scalars['ID']>;
|
|
900
900
|
};
|
|
901
|
-
export declare type
|
|
902
|
-
__typename?: '
|
|
901
|
+
export declare type AriGraphDeleteRelationshipsPayload = Payload & {
|
|
902
|
+
__typename?: 'AriGraphDeleteRelationshipsPayload';
|
|
903
903
|
success: Scalars['Boolean'];
|
|
904
904
|
errors?: Maybe<Array<MutationError>>;
|
|
905
905
|
};
|
|
906
906
|
export declare type AriGraphMutation = {
|
|
907
907
|
__typename?: 'AriGraphMutation';
|
|
908
|
-
|
|
908
|
+
createRelationships?: Maybe<AriGraphCreateRelationshipsPayload>;
|
|
909
|
+
deleteRelationships?: Maybe<AriGraphDeleteRelationshipsPayload>;
|
|
909
910
|
};
|
|
910
|
-
export declare type
|
|
911
|
-
input:
|
|
911
|
+
export declare type AriGraphMutationCreateRelationshipsArgs = {
|
|
912
|
+
input: AriGraphCreateRelationshipsInput;
|
|
913
|
+
};
|
|
914
|
+
export declare type AriGraphMutationDeleteRelationshipsArgs = {
|
|
915
|
+
input: AriGraphDeleteRelationshipsInput;
|
|
912
916
|
};
|
|
913
917
|
export declare type AriGraphRelationship = {
|
|
914
918
|
__typename?: 'AriGraphRelationship';
|
|
@@ -933,6 +937,12 @@ export declare type AriGraphRelationshipNode = {
|
|
|
933
937
|
id: Scalars['ID'];
|
|
934
938
|
data?: Maybe<DeploymentSummary>;
|
|
935
939
|
};
|
|
940
|
+
export declare type AriGraphRelationshipsErrorReference = {
|
|
941
|
+
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
942
|
+
from?: Maybe<Scalars['ID']>;
|
|
943
|
+
to?: Maybe<Scalars['ID']>;
|
|
944
|
+
type: Scalars['ID'];
|
|
945
|
+
};
|
|
936
946
|
export declare type AriGraphRelationshipsFilter = {
|
|
937
947
|
type: Scalars['ID'];
|
|
938
948
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -940,6 +950,19 @@ export declare type AriGraphRelationshipsFilter = {
|
|
|
940
950
|
updatedFrom?: Maybe<Scalars['DateTime']>;
|
|
941
951
|
updatedTo?: Maybe<Scalars['DateTime']>;
|
|
942
952
|
};
|
|
953
|
+
export declare type AriGraphRelationshipsMutationErrorExtension = MutationErrorExtension & {
|
|
954
|
+
__typename?: 'AriGraphRelationshipsMutationErrorExtension';
|
|
955
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
956
|
+
errorType?: Maybe<Scalars['String']>;
|
|
957
|
+
reference: AriGraphRelationshipsErrorReference;
|
|
958
|
+
};
|
|
959
|
+
export declare type AriGraphRelationshipsSort = {
|
|
960
|
+
lastUpdatedSortDirection?: Maybe<AriGraphRelationshipsSortDirection>;
|
|
961
|
+
};
|
|
962
|
+
export declare enum AriGraphRelationshipsSortDirection {
|
|
963
|
+
Asc = "ASC",
|
|
964
|
+
Desc = "DESC"
|
|
965
|
+
}
|
|
943
966
|
export declare type ArjConfiguration = {
|
|
944
967
|
__typename?: 'ArjConfiguration';
|
|
945
968
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -1678,6 +1701,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1678
1701
|
__typename?: 'CompassCatalogMutationApi';
|
|
1679
1702
|
createComponent?: Maybe<CreateCompassComponentPayload>;
|
|
1680
1703
|
updateComponent?: Maybe<UpdateCompassComponentPayload>;
|
|
1704
|
+
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
1681
1705
|
deleteComponent?: Maybe<DeleteCompassComponentPayload>;
|
|
1682
1706
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
1683
1707
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
@@ -1736,6 +1760,9 @@ export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
|
1736
1760
|
export declare type CompassCatalogMutationApiUpdateComponentArgs = {
|
|
1737
1761
|
input: UpdateCompassComponentInput;
|
|
1738
1762
|
};
|
|
1763
|
+
export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
1764
|
+
input: UpdateCompassComponentTypeInput;
|
|
1765
|
+
};
|
|
1739
1766
|
export declare type CompassCatalogMutationApiDeleteComponentArgs = {
|
|
1740
1767
|
input: DeleteCompassComponentInput;
|
|
1741
1768
|
};
|
|
@@ -3272,6 +3299,7 @@ export declare type ConfluenceBlogPost = {
|
|
|
3272
3299
|
__typename?: 'ConfluenceBlogPost';
|
|
3273
3300
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3274
3301
|
blogPostId: Scalars['ID'];
|
|
3302
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3275
3303
|
id: Scalars['ID'];
|
|
3276
3304
|
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
3277
3305
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
@@ -3283,6 +3311,9 @@ export declare type ConfluenceBlogPost = {
|
|
|
3283
3311
|
type?: Maybe<ConfluenceContentType>;
|
|
3284
3312
|
viewer?: Maybe<ConfluenceBlogPostViewerSummary>;
|
|
3285
3313
|
};
|
|
3314
|
+
export declare type ConfluenceBlogPostCommentsArgs = {
|
|
3315
|
+
commentType?: Maybe<ConfluenceCommentType>;
|
|
3316
|
+
};
|
|
3286
3317
|
export declare type ConfluenceBlogPostPropertiesArgs = {
|
|
3287
3318
|
keys: Array<Maybe<Scalars['String']>>;
|
|
3288
3319
|
};
|
|
@@ -3320,7 +3351,6 @@ export declare enum ConfluenceCollaborativeEditingService {
|
|
|
3320
3351
|
Synchrony = "SYNCHRONY"
|
|
3321
3352
|
}
|
|
3322
3353
|
export declare type ConfluenceComment = {
|
|
3323
|
-
__typename?: 'ConfluenceComment';
|
|
3324
3354
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3325
3355
|
commentId?: Maybe<Scalars['ID']>;
|
|
3326
3356
|
container?: Maybe<ConfluenceCommentContainer>;
|
|
@@ -3339,6 +3369,10 @@ export declare enum ConfluenceCommentStatus {
|
|
|
3339
3369
|
Current = "CURRENT",
|
|
3340
3370
|
Draft = "DRAFT"
|
|
3341
3371
|
}
|
|
3372
|
+
export declare enum ConfluenceCommentType {
|
|
3373
|
+
Footer = "FOOTER",
|
|
3374
|
+
Inline = "INLINE"
|
|
3375
|
+
}
|
|
3342
3376
|
export declare type ConfluenceContentBody = {
|
|
3343
3377
|
__typename?: 'ConfluenceContentBody';
|
|
3344
3378
|
adf?: Maybe<Scalars['String']>;
|
|
@@ -3416,11 +3450,21 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
3416
3450
|
errors?: Maybe<Array<MutationError>>;
|
|
3417
3451
|
success: Scalars['Boolean'];
|
|
3418
3452
|
};
|
|
3453
|
+
export declare type ConfluenceCreateFooterCommentOnBlogPostInput = {
|
|
3454
|
+
blogPostId: Scalars['ID'];
|
|
3455
|
+
body: ConfluenceContentBodyInput;
|
|
3456
|
+
};
|
|
3457
|
+
export declare type ConfluenceCreateFooterCommentOnBlogPostPayload = Payload & {
|
|
3458
|
+
__typename?: 'ConfluenceCreateFooterCommentOnBlogPostPayload';
|
|
3459
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3460
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3461
|
+
success: Scalars['Boolean'];
|
|
3462
|
+
};
|
|
3419
3463
|
export declare type ConfluenceCreateFooterCommentOnPageInput = {
|
|
3420
3464
|
body: ConfluenceContentBodyInput;
|
|
3421
3465
|
pageId: Scalars['ID'];
|
|
3422
3466
|
};
|
|
3423
|
-
export declare type ConfluenceCreateFooterCommentOnPagePayload = {
|
|
3467
|
+
export declare type ConfluenceCreateFooterCommentOnPagePayload = Payload & {
|
|
3424
3468
|
__typename?: 'ConfluenceCreateFooterCommentOnPagePayload';
|
|
3425
3469
|
comment?: Maybe<ConfluenceComment>;
|
|
3426
3470
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -3521,6 +3565,26 @@ export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
|
3521
3565
|
errors?: Maybe<Array<MutationError>>;
|
|
3522
3566
|
success: Scalars['Boolean'];
|
|
3523
3567
|
};
|
|
3568
|
+
export declare type ConfluenceFooterComment = ConfluenceComment & {
|
|
3569
|
+
__typename?: 'ConfluenceFooterComment';
|
|
3570
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3571
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
3572
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
3573
|
+
id: Scalars['ID'];
|
|
3574
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
3575
|
+
name?: Maybe<Scalars['String']>;
|
|
3576
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
3577
|
+
};
|
|
3578
|
+
export declare type ConfluenceInlineComment = ConfluenceComment & {
|
|
3579
|
+
__typename?: 'ConfluenceInlineComment';
|
|
3580
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3581
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
3582
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
3583
|
+
id: Scalars['ID'];
|
|
3584
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
3585
|
+
name?: Maybe<Scalars['String']>;
|
|
3586
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
3587
|
+
};
|
|
3524
3588
|
export declare type ConfluenceInlineTask = {
|
|
3525
3589
|
__typename?: 'ConfluenceInlineTask';
|
|
3526
3590
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -3551,6 +3615,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
3551
3615
|
__typename?: 'ConfluenceMutationApi';
|
|
3552
3616
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3553
3617
|
createBlogPostProperty?: Maybe<ConfluenceCreateBlogPostPropertyPayload>;
|
|
3618
|
+
createFooterCommentOnBlogPost?: Maybe<ConfluenceCreateFooterCommentOnBlogPostPayload>;
|
|
3554
3619
|
createFooterCommentOnPage?: Maybe<ConfluenceCreateFooterCommentOnPagePayload>;
|
|
3555
3620
|
createPage?: Maybe<ConfluenceCreatePagePayload>;
|
|
3556
3621
|
createPageProperty?: Maybe<ConfluenceCreatePagePropertyPayload>;
|
|
@@ -3586,6 +3651,9 @@ export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
|
3586
3651
|
export declare type ConfluenceMutationApiCreateBlogPostPropertyArgs = {
|
|
3587
3652
|
input: ConfluenceCreateBlogPostPropertyInput;
|
|
3588
3653
|
};
|
|
3654
|
+
export declare type ConfluenceMutationApiCreateFooterCommentOnBlogPostArgs = {
|
|
3655
|
+
input: ConfluenceCreateFooterCommentOnBlogPostInput;
|
|
3656
|
+
};
|
|
3589
3657
|
export declare type ConfluenceMutationApiCreateFooterCommentOnPageArgs = {
|
|
3590
3658
|
input: ConfluenceCreateFooterCommentOnPageInput;
|
|
3591
3659
|
};
|
|
@@ -3707,6 +3775,7 @@ export declare enum ConfluenceOperationTarget {
|
|
|
3707
3775
|
export declare type ConfluencePage = {
|
|
3708
3776
|
__typename?: 'ConfluencePage';
|
|
3709
3777
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3778
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3710
3779
|
id: Scalars['ID'];
|
|
3711
3780
|
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
3712
3781
|
links?: Maybe<ConfluencePageLinks>;
|
|
@@ -3719,6 +3788,9 @@ export declare type ConfluencePage = {
|
|
|
3719
3788
|
type?: Maybe<ConfluenceContentType>;
|
|
3720
3789
|
viewer?: Maybe<ConfluencePageViewerSummary>;
|
|
3721
3790
|
};
|
|
3791
|
+
export declare type ConfluencePageCommentsArgs = {
|
|
3792
|
+
commentType?: Maybe<ConfluenceCommentType>;
|
|
3793
|
+
};
|
|
3722
3794
|
export declare type ConfluencePagePropertiesArgs = {
|
|
3723
3795
|
keys: Array<Maybe<Scalars['String']>>;
|
|
3724
3796
|
};
|
|
@@ -5042,7 +5114,6 @@ export declare type DeleteEventSourceInput = {
|
|
|
5042
5114
|
cloudId: Scalars['ID'];
|
|
5043
5115
|
externalEventSourceId: Scalars['ID'];
|
|
5044
5116
|
eventType: CompassEventType;
|
|
5045
|
-
deleteIfAttachedToComponents?: Maybe<Scalars['Boolean']>;
|
|
5046
5117
|
};
|
|
5047
5118
|
export declare type DeleteEventSourcePayload = Payload & {
|
|
5048
5119
|
__typename?: 'DeleteEventSourcePayload';
|
|
@@ -7125,7 +7196,8 @@ export declare type JiraAddRelatedWorkToVersionPayload = Payload & {
|
|
|
7125
7196
|
};
|
|
7126
7197
|
export declare type JiraAffectedService = {
|
|
7127
7198
|
__typename?: 'JiraAffectedService';
|
|
7128
|
-
serviceId
|
|
7199
|
+
serviceId: Scalars['ID'];
|
|
7200
|
+
name?: Maybe<Scalars['String']>;
|
|
7129
7201
|
};
|
|
7130
7202
|
export declare type JiraAffectedServiceConnection = {
|
|
7131
7203
|
__typename?: 'JiraAffectedServiceConnection';
|
|
@@ -8051,6 +8123,23 @@ export declare type JiraEstimate = {
|
|
|
8051
8123
|
__typename?: 'JiraEstimate';
|
|
8052
8124
|
timeInSeconds?: Maybe<Scalars['Long']>;
|
|
8053
8125
|
};
|
|
8126
|
+
export declare type JiraFavourite = JiraProject;
|
|
8127
|
+
export declare type JiraFavouriteConnection = {
|
|
8128
|
+
__typename?: 'JiraFavouriteConnection';
|
|
8129
|
+
edges?: Maybe<Array<Maybe<JiraFavouriteEdge>>>;
|
|
8130
|
+
pageInfo: PageInfo;
|
|
8131
|
+
};
|
|
8132
|
+
export declare type JiraFavouriteEdge = {
|
|
8133
|
+
__typename?: 'JiraFavouriteEdge';
|
|
8134
|
+
node?: Maybe<JiraFavourite>;
|
|
8135
|
+
cursor: Scalars['String'];
|
|
8136
|
+
};
|
|
8137
|
+
export declare type JiraFavouriteFilter = {
|
|
8138
|
+
type: JiraFavouriteType;
|
|
8139
|
+
};
|
|
8140
|
+
export declare enum JiraFavouriteType {
|
|
8141
|
+
Project = "PROJECT"
|
|
8142
|
+
}
|
|
8054
8143
|
export declare type JiraFieldConfig = {
|
|
8055
8144
|
__typename?: 'JiraFieldConfig';
|
|
8056
8145
|
isRequired?: Maybe<Scalars['Boolean']>;
|
|
@@ -9955,6 +10044,7 @@ export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
|
|
|
9955
10044
|
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
9956
10045
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
9957
10046
|
oauthAppId?: Maybe<Scalars['ID']>;
|
|
10047
|
+
marketplaceAppKey?: Maybe<Scalars['String']>;
|
|
9958
10048
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
9959
10049
|
};
|
|
9960
10050
|
export declare type JiraOption = Node & {
|
|
@@ -10596,6 +10686,7 @@ export declare type JiraQuery = {
|
|
|
10596
10686
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
10597
10687
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
10598
10688
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
10689
|
+
favourites?: Maybe<JiraFavouriteConnection>;
|
|
10599
10690
|
issueByKey?: Maybe<JiraIssue>;
|
|
10600
10691
|
issueById?: Maybe<JiraIssue>;
|
|
10601
10692
|
issue?: Maybe<JiraIssue>;
|
|
@@ -10624,6 +10715,7 @@ export declare type JiraQuery = {
|
|
|
10624
10715
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
10625
10716
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
10626
10717
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10718
|
+
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10627
10719
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
10628
10720
|
};
|
|
10629
10721
|
export declare type JiraQueryJiraProjectArgs = {
|
|
@@ -10676,6 +10768,14 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
10676
10768
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
10677
10769
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
10678
10770
|
};
|
|
10771
|
+
export declare type JiraQueryFavouritesArgs = {
|
|
10772
|
+
cloudId: Scalars['ID'];
|
|
10773
|
+
filter: JiraFavouriteFilter;
|
|
10774
|
+
first?: Maybe<Scalars['Int']>;
|
|
10775
|
+
after?: Maybe<Scalars['String']>;
|
|
10776
|
+
last?: Maybe<Scalars['Int']>;
|
|
10777
|
+
before?: Maybe<Scalars['String']>;
|
|
10778
|
+
};
|
|
10679
10779
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
10680
10780
|
key: Scalars['String'];
|
|
10681
10781
|
cloudId: Scalars['ID'];
|
|
@@ -10791,6 +10891,10 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
10791
10891
|
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
10792
10892
|
projectId: Scalars['ID'];
|
|
10793
10893
|
};
|
|
10894
|
+
export declare type JiraQueryDeploymentsFeaturePreconditionByProjectKeyArgs = {
|
|
10895
|
+
cloudId: Scalars['ID'];
|
|
10896
|
+
projectKey: Scalars['String'];
|
|
10897
|
+
};
|
|
10794
10898
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
10795
10899
|
projectId: Scalars['ID'];
|
|
10796
10900
|
};
|
|
@@ -11088,6 +11192,7 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
11088
11192
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
11089
11193
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
11090
11194
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
11195
|
+
approvalState?: Maybe<JiraServiceManagementApprovalState>;
|
|
11091
11196
|
};
|
|
11092
11197
|
export declare type JiraServiceManagementActiveApprovalApproversArgs = {
|
|
11093
11198
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -11148,6 +11253,10 @@ export declare type JiraServiceManagementApprovalFieldCompletedApprovalsConnecti
|
|
|
11148
11253
|
last?: Maybe<Scalars['Int']>;
|
|
11149
11254
|
before?: Maybe<Scalars['String']>;
|
|
11150
11255
|
};
|
|
11256
|
+
export declare enum JiraServiceManagementApprovalState {
|
|
11257
|
+
InsufficientApprovers = "INSUFFICIENT_APPROVERS",
|
|
11258
|
+
Ok = "OK"
|
|
11259
|
+
}
|
|
11151
11260
|
export declare type JiraServiceManagementApprovalStatus = {
|
|
11152
11261
|
__typename?: 'JiraServiceManagementApprovalStatus';
|
|
11153
11262
|
id?: Maybe<Scalars['String']>;
|
|
@@ -11911,6 +12020,7 @@ export declare type JiraTeam = Node & {
|
|
|
11911
12020
|
description?: Maybe<Scalars['String']>;
|
|
11912
12021
|
avatar?: Maybe<JiraAvatar>;
|
|
11913
12022
|
members?: Maybe<JiraUserConnection>;
|
|
12023
|
+
isShared?: Maybe<Scalars['Boolean']>;
|
|
11914
12024
|
};
|
|
11915
12025
|
export declare type JiraTeamConnection = {
|
|
11916
12026
|
__typename?: 'JiraTeamConnection';
|
|
@@ -12063,6 +12173,7 @@ export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfigu
|
|
|
12063
12173
|
name: Scalars['String'];
|
|
12064
12174
|
description?: Maybe<Scalars['String']>;
|
|
12065
12175
|
url?: Maybe<Scalars['URL']>;
|
|
12176
|
+
urlValue?: Maybe<Scalars['String']>;
|
|
12066
12177
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
12067
12178
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
12068
12179
|
};
|
|
@@ -16923,6 +17034,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
16923
17034
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
16924
17035
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
16925
17036
|
updateSupportRequest?: Maybe<SupportRequest>;
|
|
17037
|
+
supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
|
|
16926
17038
|
};
|
|
16927
17039
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
16928
17040
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -16950,6 +17062,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
16950
17062
|
me?: Maybe<SupportRequestPage>;
|
|
16951
17063
|
supportRequest?: Maybe<SupportRequest>;
|
|
16952
17064
|
users?: Maybe<SupportRequestUsers>;
|
|
17065
|
+
supportRequestContext?: Maybe<SupportRequestContextQueryApi>;
|
|
16953
17066
|
};
|
|
16954
17067
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
16955
17068
|
key: Scalars['ID'];
|
|
@@ -16974,6 +17087,24 @@ export declare type SupportRequestContactRelation = {
|
|
|
16974
17087
|
openRequest?: Maybe<SupportRequestTicket>;
|
|
16975
17088
|
contact?: Maybe<SupportRequestUser>;
|
|
16976
17089
|
};
|
|
17090
|
+
export declare type SupportRequestContextMutationApi = {
|
|
17091
|
+
__typename?: 'SupportRequestContextMutationApi';
|
|
17092
|
+
setNotifications: SupportRequestNotification;
|
|
17093
|
+
};
|
|
17094
|
+
export declare type SupportRequestContextMutationApiSetNotificationsArgs = {
|
|
17095
|
+
input: SupportRequestContextSetNotificationInput;
|
|
17096
|
+
};
|
|
17097
|
+
export declare type SupportRequestContextQueryApi = {
|
|
17098
|
+
__typename?: 'SupportRequestContextQueryApi';
|
|
17099
|
+
getNotificationStatus?: Maybe<SupportRequestNotification>;
|
|
17100
|
+
};
|
|
17101
|
+
export declare type SupportRequestContextQueryApiGetNotificationStatusArgs = {
|
|
17102
|
+
key: Scalars['ID'];
|
|
17103
|
+
};
|
|
17104
|
+
export declare type SupportRequestContextSetNotificationInput = {
|
|
17105
|
+
requestKey: Scalars['String'];
|
|
17106
|
+
status: Scalars['Boolean'];
|
|
17107
|
+
};
|
|
16977
17108
|
export declare type SupportRequestDisplayableDateTime = {
|
|
16978
17109
|
__typename?: 'SupportRequestDisplayableDateTime';
|
|
16979
17110
|
dateTime: Scalars['String'];
|
|
@@ -17038,6 +17169,10 @@ export declare type SupportRequestNamedContactRelations = {
|
|
|
17038
17169
|
cloudEnterpriseRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17039
17170
|
premierSupportRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17040
17171
|
};
|
|
17172
|
+
export declare type SupportRequestNotification = {
|
|
17173
|
+
__typename?: 'SupportRequestNotification';
|
|
17174
|
+
status?: Maybe<Scalars['Boolean']>;
|
|
17175
|
+
};
|
|
17041
17176
|
export declare type SupportRequestPage = {
|
|
17042
17177
|
__typename?: 'SupportRequestPage';
|
|
17043
17178
|
profile?: Maybe<SupportRequestUser>;
|
|
@@ -17713,6 +17848,16 @@ export declare type UpdateCompassComponentPayload = Payload & {
|
|
|
17713
17848
|
errors?: Maybe<Array<MutationError>>;
|
|
17714
17849
|
componentDetails?: Maybe<CompassComponent>;
|
|
17715
17850
|
};
|
|
17851
|
+
export declare type UpdateCompassComponentTypeInput = {
|
|
17852
|
+
id: Scalars['ID'];
|
|
17853
|
+
type: CompassComponentType;
|
|
17854
|
+
};
|
|
17855
|
+
export declare type UpdateCompassComponentTypePayload = Payload & {
|
|
17856
|
+
__typename?: 'UpdateCompassComponentTypePayload';
|
|
17857
|
+
success: Scalars['Boolean'];
|
|
17858
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17859
|
+
componentDetails?: Maybe<CompassComponent>;
|
|
17860
|
+
};
|
|
17716
17861
|
export declare type UpdateCompassFieldInput = {
|
|
17717
17862
|
definition: Scalars['ID'];
|
|
17718
17863
|
value: CompassFieldValueInput;
|