@forge/cli-shared 2.3.1 → 2.3.2-next.2
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
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.2-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [02839be]
|
|
8
|
+
- @forge/manifest@3.5.0-next.2
|
|
9
|
+
|
|
10
|
+
## 2.3.2-next.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [a3bfe81]
|
|
15
|
+
- @forge/manifest@3.5.0-next.1
|
|
16
|
+
|
|
17
|
+
## 2.3.2-next.0
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [ba674590]
|
|
22
|
+
- @forge/manifest@3.5.0-next.0
|
|
23
|
+
|
|
3
24
|
## 2.3.1
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -312,7 +312,8 @@ export declare enum ApiGroup {
|
|
|
312
312
|
DevopsContainerRelationship = "DEVOPS_CONTAINER_RELATIONSHIP",
|
|
313
313
|
Teams = "TEAMS",
|
|
314
314
|
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
315
|
-
Identity = "IDENTITY"
|
|
315
|
+
Identity = "IDENTITY",
|
|
316
|
+
DevopsAriGraph = "DEVOPS_ARI_GRAPH"
|
|
316
317
|
}
|
|
317
318
|
export declare type App = {
|
|
318
319
|
__typename?: 'App';
|
|
@@ -496,7 +497,7 @@ export declare type AppInstallation = {
|
|
|
496
497
|
__typename?: 'AppInstallation';
|
|
497
498
|
id: Scalars['ID'];
|
|
498
499
|
installationContext: Scalars['ID'];
|
|
499
|
-
createdAt: Scalars['
|
|
500
|
+
createdAt: Scalars['DateTime'];
|
|
500
501
|
createdBy?: Maybe<User>;
|
|
501
502
|
version?: Maybe<AppVersion>;
|
|
502
503
|
app?: Maybe<App>;
|
|
@@ -854,6 +855,66 @@ export declare type ArchivePolarisInsightsPayload = Payload & {
|
|
|
854
855
|
success: Scalars['Boolean'];
|
|
855
856
|
errors?: Maybe<Array<MutationError>>;
|
|
856
857
|
};
|
|
858
|
+
export declare type AriGraph = {
|
|
859
|
+
__typename?: 'AriGraph';
|
|
860
|
+
relationship?: Maybe<AriGraphRelationship>;
|
|
861
|
+
relationships?: Maybe<AriGraphRelationshipConnection>;
|
|
862
|
+
};
|
|
863
|
+
export declare type AriGraphRelationshipArgs = {
|
|
864
|
+
from: Scalars['ID'];
|
|
865
|
+
type: Scalars['ID'];
|
|
866
|
+
to: Scalars['ID'];
|
|
867
|
+
};
|
|
868
|
+
export declare type AriGraphRelationshipsArgs = {
|
|
869
|
+
filter: AriGraphRelationshipsFilter;
|
|
870
|
+
first?: Maybe<Scalars['Int']>;
|
|
871
|
+
after?: Maybe<Scalars['String']>;
|
|
872
|
+
};
|
|
873
|
+
export declare type AriGraphCreateRelationshipInput = {
|
|
874
|
+
from: Scalars['ID'];
|
|
875
|
+
to: Scalars['ID'];
|
|
876
|
+
type: Scalars['ID'];
|
|
877
|
+
};
|
|
878
|
+
export declare type AriGraphCreateRelationshipPayload = Payload & {
|
|
879
|
+
__typename?: 'AriGraphCreateRelationshipPayload';
|
|
880
|
+
success: Scalars['Boolean'];
|
|
881
|
+
errors?: Maybe<Array<MutationError>>;
|
|
882
|
+
};
|
|
883
|
+
export declare type AriGraphMutation = {
|
|
884
|
+
__typename?: 'AriGraphMutation';
|
|
885
|
+
createRelationship?: Maybe<AriGraphCreateRelationshipPayload>;
|
|
886
|
+
};
|
|
887
|
+
export declare type AriGraphMutationCreateRelationshipArgs = {
|
|
888
|
+
input: AriGraphCreateRelationshipInput;
|
|
889
|
+
};
|
|
890
|
+
export declare type AriGraphRelationship = {
|
|
891
|
+
__typename?: 'AriGraphRelationship';
|
|
892
|
+
from: AriGraphRelationshipNode;
|
|
893
|
+
type: Scalars['ID'];
|
|
894
|
+
to: AriGraphRelationshipNode;
|
|
895
|
+
lastUpdated: Scalars['DateTime'];
|
|
896
|
+
};
|
|
897
|
+
export declare type AriGraphRelationshipConnection = {
|
|
898
|
+
__typename?: 'AriGraphRelationshipConnection';
|
|
899
|
+
nodes?: Maybe<Array<Maybe<AriGraphRelationship>>>;
|
|
900
|
+
edges?: Maybe<Array<Maybe<AriGraphRelationshipEdge>>>;
|
|
901
|
+
pageInfo: PageInfo;
|
|
902
|
+
};
|
|
903
|
+
export declare type AriGraphRelationshipEdge = {
|
|
904
|
+
__typename?: 'AriGraphRelationshipEdge';
|
|
905
|
+
cursor: Scalars['String'];
|
|
906
|
+
node: AriGraphRelationship;
|
|
907
|
+
};
|
|
908
|
+
export declare type AriGraphRelationshipNode = {
|
|
909
|
+
__typename?: 'AriGraphRelationshipNode';
|
|
910
|
+
id: Scalars['ID'];
|
|
911
|
+
data?: Maybe<DeploymentSummary>;
|
|
912
|
+
};
|
|
913
|
+
export declare type AriGraphRelationshipsFilter = {
|
|
914
|
+
type: Scalars['ID'];
|
|
915
|
+
from?: Maybe<Scalars['ID']>;
|
|
916
|
+
to?: Maybe<Scalars['ID']>;
|
|
917
|
+
};
|
|
857
918
|
export declare type ArjConfiguration = {
|
|
858
919
|
__typename?: 'ArjConfiguration';
|
|
859
920
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -980,14 +1041,14 @@ export declare type AvatarInput = {
|
|
|
980
1041
|
};
|
|
981
1042
|
export declare type Avocado = {
|
|
982
1043
|
__typename?: 'Avocado';
|
|
983
|
-
|
|
984
|
-
|
|
1044
|
+
questionsByAri?: Maybe<Array<Maybe<AvocadoQuestion>>>;
|
|
1045
|
+
answersByAri?: Maybe<Array<Maybe<AvocadoAnswer>>>;
|
|
985
1046
|
};
|
|
986
|
-
export declare type
|
|
987
|
-
|
|
1047
|
+
export declare type AvocadoQuestionsByAriArgs = {
|
|
1048
|
+
aris: Array<Maybe<Scalars['ID']>>;
|
|
988
1049
|
};
|
|
989
|
-
export declare type
|
|
990
|
-
|
|
1050
|
+
export declare type AvocadoAnswersByAriArgs = {
|
|
1051
|
+
aris: Array<Maybe<Scalars['ID']>>;
|
|
991
1052
|
};
|
|
992
1053
|
export declare type AvocadoAnswer = Node & {
|
|
993
1054
|
__typename?: 'AvocadoAnswer';
|
|
@@ -996,7 +1057,6 @@ export declare type AvocadoAnswer = Node & {
|
|
|
996
1057
|
siteName: Scalars['String'];
|
|
997
1058
|
url: Scalars['String'];
|
|
998
1059
|
iconUrl: Scalars['String'];
|
|
999
|
-
question: AvocadoQuestion;
|
|
1000
1060
|
};
|
|
1001
1061
|
export declare type AvocadoQuestion = Node & {
|
|
1002
1062
|
__typename?: 'AvocadoQuestion';
|
|
@@ -1005,6 +1065,7 @@ export declare type AvocadoQuestion = Node & {
|
|
|
1005
1065
|
siteName: Scalars['String'];
|
|
1006
1066
|
url: Scalars['String'];
|
|
1007
1067
|
iconUrl: Scalars['String'];
|
|
1068
|
+
isAnswered: Scalars['Boolean'];
|
|
1008
1069
|
};
|
|
1009
1070
|
export declare type Backlog = {
|
|
1010
1071
|
__typename?: 'Backlog';
|
|
@@ -1398,7 +1459,7 @@ export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
|
1398
1459
|
cloudId: Scalars['ID'];
|
|
1399
1460
|
userId: Scalars['ID'];
|
|
1400
1461
|
oauthClientId: Scalars['ID'];
|
|
1401
|
-
scopes
|
|
1462
|
+
scopes?: Maybe<Array<Scalars['String']>>;
|
|
1402
1463
|
};
|
|
1403
1464
|
export declare type ChildCardsMetadata = {
|
|
1404
1465
|
__typename?: 'ChildCardsMetadata';
|
|
@@ -4536,6 +4597,7 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
4536
4597
|
export declare type DevOps = {
|
|
4537
4598
|
__typename?: 'DevOps';
|
|
4538
4599
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4600
|
+
ariGraph?: Maybe<AriGraph>;
|
|
4539
4601
|
};
|
|
4540
4602
|
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4541
4603
|
ids: Array<Scalars['ID']>;
|
|
@@ -4739,6 +4801,11 @@ export declare type DevOpsMetricsRollupType = {
|
|
|
4739
4801
|
type: DevOpsMetricsRollupOption;
|
|
4740
4802
|
percentile?: Maybe<Scalars['Int']>;
|
|
4741
4803
|
};
|
|
4804
|
+
export declare type DevOpsMutation = {
|
|
4805
|
+
__typename?: 'DevOpsMutation';
|
|
4806
|
+
_empty?: Maybe<Scalars['String']>;
|
|
4807
|
+
ariGraph?: Maybe<AriGraphMutation>;
|
|
4808
|
+
};
|
|
4742
4809
|
export declare type DevOpsProvider = {
|
|
4743
4810
|
__typename?: 'DevOpsProvider';
|
|
4744
4811
|
name?: Maybe<Scalars['String']>;
|
|
@@ -5877,6 +5944,7 @@ export declare enum IssueDevOpsCommitChangeType {
|
|
|
5877
5944
|
Copied = "COPIED",
|
|
5878
5945
|
Moved = "MOVED",
|
|
5879
5946
|
Modify = "MODIFY",
|
|
5947
|
+
Modified = "MODIFIED",
|
|
5880
5948
|
Unknown = "UNKNOWN"
|
|
5881
5949
|
}
|
|
5882
5950
|
export declare type IssueDevOpsCommitDetails = {
|
|
@@ -6055,7 +6123,8 @@ export declare type IssueDevOpsPullRequestReviewer = {
|
|
|
6055
6123
|
export declare enum IssueDevOpsPullRequestStatus {
|
|
6056
6124
|
Open = "OPEN",
|
|
6057
6125
|
Merged = "MERGED",
|
|
6058
|
-
Declined = "DECLINED"
|
|
6126
|
+
Declined = "DECLINED",
|
|
6127
|
+
Unknown = "UNKNOWN"
|
|
6059
6128
|
}
|
|
6060
6129
|
export declare type IssueDevOpsRemoteLink = {
|
|
6061
6130
|
__typename?: 'IssueDevOpsRemoteLink';
|
|
@@ -7056,6 +7125,7 @@ export declare type JiraForgeDatetimeField = Node & JiraIssueField & JiraIssueFi
|
|
|
7056
7125
|
dateTime?: Maybe<Scalars['DateTime']>;
|
|
7057
7126
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7058
7127
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7128
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7059
7129
|
};
|
|
7060
7130
|
export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7061
7131
|
__typename?: 'JiraForgeGroupField';
|
|
@@ -7070,6 +7140,7 @@ export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueField
|
|
|
7070
7140
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7071
7141
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7072
7142
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7143
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7073
7144
|
};
|
|
7074
7145
|
export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
7075
7146
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -7092,6 +7163,7 @@ export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7092
7163
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7093
7164
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7094
7165
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7166
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7095
7167
|
};
|
|
7096
7168
|
export declare type JiraForgeGroupsFieldSelectedGroupsConnectionArgs = {
|
|
7097
7169
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7117,6 +7189,7 @@ export declare type JiraForgeNumberField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7117
7189
|
number?: Maybe<Scalars['Float']>;
|
|
7118
7190
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7119
7191
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7192
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7120
7193
|
};
|
|
7121
7194
|
export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7122
7195
|
__typename?: 'JiraForgeObjectField';
|
|
@@ -7129,6 +7202,7 @@ export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7129
7202
|
object?: Maybe<Scalars['String']>;
|
|
7130
7203
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7131
7204
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7205
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7132
7206
|
};
|
|
7133
7207
|
export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7134
7208
|
__typename?: 'JiraForgeStringField';
|
|
@@ -7141,6 +7215,7 @@ export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7141
7215
|
text?: Maybe<Scalars['String']>;
|
|
7142
7216
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7143
7217
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7218
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7144
7219
|
};
|
|
7145
7220
|
export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7146
7221
|
__typename?: 'JiraForgeStringsField';
|
|
@@ -7156,6 +7231,7 @@ export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFie
|
|
|
7156
7231
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7157
7232
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7158
7233
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7234
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7159
7235
|
};
|
|
7160
7236
|
export declare type JiraForgeStringsFieldSelectedLabelsConnectionArgs = {
|
|
7161
7237
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7184,6 +7260,7 @@ export declare type JiraForgeUserField = Node & JiraIssueField & JiraIssueFieldC
|
|
|
7184
7260
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7185
7261
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7186
7262
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7263
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7187
7264
|
};
|
|
7188
7265
|
export declare type JiraForgeUserFieldUsersArgs = {
|
|
7189
7266
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -7207,6 +7284,7 @@ export declare type JiraForgeUsersField = Node & JiraIssueField & JiraIssueField
|
|
|
7207
7284
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7208
7285
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7209
7286
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7287
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7210
7288
|
};
|
|
7211
7289
|
export declare type JiraForgeUsersFieldSelectedUsersConnectionArgs = {
|
|
7212
7290
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9115,6 +9193,34 @@ export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
|
9115
9193
|
cursor: Scalars['String'];
|
|
9116
9194
|
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
9117
9195
|
};
|
|
9196
|
+
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
9197
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
9198
|
+
id: Scalars['ID'];
|
|
9199
|
+
jiraProject?: Maybe<JiraProject>;
|
|
9200
|
+
devOpsTool?: Maybe<DevOpsTool>;
|
|
9201
|
+
description?: Maybe<Scalars['String']>;
|
|
9202
|
+
revision: Scalars['ID'];
|
|
9203
|
+
createdBy: Scalars['String'];
|
|
9204
|
+
createdAt: Scalars['DateTime'];
|
|
9205
|
+
lastUpdatedBy?: Maybe<Scalars['String']>;
|
|
9206
|
+
lastUpdatedAt?: Maybe<Scalars['DateTime']>;
|
|
9207
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
9208
|
+
};
|
|
9209
|
+
export declare type JiraProjectAndDevOpsToolRelationshipPropertiesArgs = {
|
|
9210
|
+
keys: Array<Scalars['String']>;
|
|
9211
|
+
};
|
|
9212
|
+
export declare type JiraProjectAndDevOpsToolRelationshipCreateInput = {
|
|
9213
|
+
jiraProjectId: Scalars['ID'];
|
|
9214
|
+
devOpsToolId: Scalars['ID'];
|
|
9215
|
+
description?: Maybe<Scalars['String']>;
|
|
9216
|
+
properties?: Maybe<Array<DevOpsContainerRelationshipEntityPropertyInput>>;
|
|
9217
|
+
};
|
|
9218
|
+
export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload & {
|
|
9219
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipCreatePayload';
|
|
9220
|
+
success: Scalars['Boolean'];
|
|
9221
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9222
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9223
|
+
};
|
|
9118
9224
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9119
9225
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9120
9226
|
id: Scalars['ID'];
|
|
@@ -11247,6 +11353,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
11247
11353
|
export declare type Mutation = {
|
|
11248
11354
|
__typename?: 'Mutation';
|
|
11249
11355
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
11356
|
+
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11250
11357
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11251
11358
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
11252
11359
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -11284,6 +11391,7 @@ export declare type Mutation = {
|
|
|
11284
11391
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
11285
11392
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
11286
11393
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
11394
|
+
devOps?: Maybe<DevOpsMutation>;
|
|
11287
11395
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
11288
11396
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
11289
11397
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -11384,6 +11492,9 @@ export declare type Mutation = {
|
|
|
11384
11492
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11385
11493
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
11386
11494
|
};
|
|
11495
|
+
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11496
|
+
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
11497
|
+
};
|
|
11387
11498
|
export declare type MutationCreateReleaseNoteArgs = {
|
|
11388
11499
|
changeStatus?: Maybe<Scalars['String']>;
|
|
11389
11500
|
title?: Maybe<Scalars['String']>;
|
|
@@ -13039,6 +13150,7 @@ export declare type Query = {
|
|
|
13039
13150
|
node?: Maybe<Node>;
|
|
13040
13151
|
activities?: Maybe<Activities>;
|
|
13041
13152
|
activity?: Maybe<Activity>;
|
|
13153
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13042
13154
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
13043
13155
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
13044
13156
|
shepherd?: Maybe<ShepherdQuery>;
|
|
@@ -13137,6 +13249,9 @@ export declare type Query = {
|
|
|
13137
13249
|
export declare type QueryNodeArgs = {
|
|
13138
13250
|
id: Scalars['ID'];
|
|
13139
13251
|
};
|
|
13252
|
+
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13253
|
+
id: Scalars['ID'];
|
|
13254
|
+
};
|
|
13140
13255
|
export declare type QueryReleaseNotesArgs = {
|
|
13141
13256
|
after?: Maybe<Scalars['String']>;
|
|
13142
13257
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13612,6 +13727,7 @@ export declare type RoadmapConfiguration = {
|
|
|
13612
13727
|
dependencies?: Maybe<RoadmapDependencyConfiguration>;
|
|
13613
13728
|
externalConfiguration?: Maybe<RoadmapExternalConfiguration>;
|
|
13614
13729
|
projectConfigurations: Array<RoadmapProjectConfiguration>;
|
|
13730
|
+
projectConfiguration?: Maybe<RoadmapProjectConfiguration>;
|
|
13615
13731
|
statusCategories: Array<RoadmapStatusCategory>;
|
|
13616
13732
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
13617
13733
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
@@ -13734,6 +13850,10 @@ export declare type RoadmapItemEdge = {
|
|
|
13734
13850
|
cursor: Scalars['String'];
|
|
13735
13851
|
node?: Maybe<RoadmapItem>;
|
|
13736
13852
|
};
|
|
13853
|
+
export declare type RoadmapItemRankInput = {
|
|
13854
|
+
id: Scalars['ID'];
|
|
13855
|
+
position: RoadmapRankPosition;
|
|
13856
|
+
};
|
|
13737
13857
|
export declare type RoadmapItemStatus = {
|
|
13738
13858
|
__typename?: 'RoadmapItemStatus';
|
|
13739
13859
|
id: Scalars['ID'];
|
|
@@ -13846,6 +13966,10 @@ export declare type RoadmapQuickFilter = {
|
|
|
13846
13966
|
name: Scalars['String'];
|
|
13847
13967
|
query: Scalars['String'];
|
|
13848
13968
|
};
|
|
13969
|
+
export declare enum RoadmapRankPosition {
|
|
13970
|
+
Before = "BEFORE",
|
|
13971
|
+
After = "AFTER"
|
|
13972
|
+
}
|
|
13849
13973
|
export declare type RoadmapResolveHealthcheckInput = {
|
|
13850
13974
|
actionId: Scalars['ID'];
|
|
13851
13975
|
addLevelOneIssueType?: Maybe<RoadmapAddLevelOneIssueTypeHealthcheckResolution>;
|
|
@@ -13901,7 +14025,7 @@ export declare type RoadmapUpdateItemInput = {
|
|
|
13901
14025
|
dueDate?: Maybe<Scalars['Date']>;
|
|
13902
14026
|
startDate?: Maybe<Scalars['Date']>;
|
|
13903
14027
|
color?: Maybe<RoadmapPaletteColor>;
|
|
13904
|
-
rank?: Maybe<
|
|
14028
|
+
rank?: Maybe<RoadmapItemRankInput>;
|
|
13905
14029
|
parentId?: Maybe<Scalars['ID']>;
|
|
13906
14030
|
sprintId?: Maybe<Scalars['ID']>;
|
|
13907
14031
|
clearFields?: Maybe<Array<Scalars['String']>>;
|
|
@@ -13912,10 +14036,6 @@ export declare type RoadmapUpdateItemPayload = Payload & {
|
|
|
13912
14036
|
errors?: Maybe<Array<MutationError>>;
|
|
13913
14037
|
output?: Maybe<RoadmapUpdateItemResponse>;
|
|
13914
14038
|
};
|
|
13915
|
-
export declare type RoadmapUpdateItemRank = {
|
|
13916
|
-
beforeId?: Maybe<Scalars['ID']>;
|
|
13917
|
-
afterId?: Maybe<Scalars['ID']>;
|
|
13918
|
-
};
|
|
13919
14039
|
export declare type RoadmapUpdateItemResponse = {
|
|
13920
14040
|
__typename?: 'RoadmapUpdateItemResponse';
|
|
13921
14041
|
item?: Maybe<RoadmapItem>;
|
|
@@ -14384,7 +14504,7 @@ export declare type ShepherdCreateSubscriptionInput = {
|
|
|
14384
14504
|
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
14385
14505
|
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
14386
14506
|
errors?: Maybe<Array<MutationError>>;
|
|
14387
|
-
node?: Maybe<
|
|
14507
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14388
14508
|
success: Scalars['Boolean'];
|
|
14389
14509
|
};
|
|
14390
14510
|
export declare type ShepherdCreateWebhookInput = {
|
|
@@ -14521,7 +14641,7 @@ export declare type ShepherdUpdateSubscriptionInput = {
|
|
|
14521
14641
|
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
14522
14642
|
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
14523
14643
|
errors?: Maybe<Array<MutationError>>;
|
|
14524
|
-
node?: Maybe<
|
|
14644
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14525
14645
|
success: Scalars['Boolean'];
|
|
14526
14646
|
};
|
|
14527
14647
|
export declare type ShepherdUpdateWebhookInput = {
|
|
@@ -14888,7 +15008,15 @@ export declare type SupportRequestField = {
|
|
|
14888
15008
|
id: Scalars['String'];
|
|
14889
15009
|
label: Scalars['String'];
|
|
14890
15010
|
value: SupportRequestFieldValue;
|
|
15011
|
+
dataType?: Maybe<SupportRequestFieldDataType>;
|
|
15012
|
+
editable?: Maybe<Scalars['Boolean']>;
|
|
14891
15013
|
};
|
|
15014
|
+
export declare enum SupportRequestFieldDataType {
|
|
15015
|
+
String = "STRING",
|
|
15016
|
+
Number = "NUMBER",
|
|
15017
|
+
Boolean = "BOOLEAN",
|
|
15018
|
+
Date = "DATE"
|
|
15019
|
+
}
|
|
14892
15020
|
export declare type SupportRequestFieldValue = {
|
|
14893
15021
|
__typename?: 'SupportRequestFieldValue';
|
|
14894
15022
|
value: Scalars['String'];
|