@forge/cli-shared 2.3.2-next.0 → 2.4.0-next.3
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.4.0-next.3
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f33aada8: Fix vulnerability dependencies
|
|
8
|
+
- 726ef79d: Fix dependency vulnerabilities
|
|
9
|
+
|
|
10
|
+
## 2.3.2-next.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [02839be]
|
|
15
|
+
- @forge/manifest@3.5.0-next.2
|
|
16
|
+
|
|
17
|
+
## 2.3.2-next.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [a3bfe81]
|
|
22
|
+
- @forge/manifest@3.5.0-next.1
|
|
23
|
+
|
|
3
24
|
## 2.3.2-next.0
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -497,7 +497,7 @@ export declare type AppInstallation = {
|
|
|
497
497
|
__typename?: 'AppInstallation';
|
|
498
498
|
id: Scalars['ID'];
|
|
499
499
|
installationContext: Scalars['ID'];
|
|
500
|
-
createdAt: Scalars['
|
|
500
|
+
createdAt: Scalars['DateTime'];
|
|
501
501
|
createdBy?: Maybe<User>;
|
|
502
502
|
version?: Maybe<AppVersion>;
|
|
503
503
|
app?: Maybe<App>;
|
|
@@ -1041,14 +1041,14 @@ export declare type AvatarInput = {
|
|
|
1041
1041
|
};
|
|
1042
1042
|
export declare type Avocado = {
|
|
1043
1043
|
__typename?: 'Avocado';
|
|
1044
|
-
|
|
1045
|
-
|
|
1044
|
+
questionsByAri?: Maybe<Array<Maybe<AvocadoQuestion>>>;
|
|
1045
|
+
answersByAri?: Maybe<Array<Maybe<AvocadoAnswer>>>;
|
|
1046
1046
|
};
|
|
1047
|
-
export declare type
|
|
1048
|
-
|
|
1047
|
+
export declare type AvocadoQuestionsByAriArgs = {
|
|
1048
|
+
aris: Array<Maybe<Scalars['ID']>>;
|
|
1049
1049
|
};
|
|
1050
|
-
export declare type
|
|
1051
|
-
|
|
1050
|
+
export declare type AvocadoAnswersByAriArgs = {
|
|
1051
|
+
aris: Array<Maybe<Scalars['ID']>>;
|
|
1052
1052
|
};
|
|
1053
1053
|
export declare type AvocadoAnswer = Node & {
|
|
1054
1054
|
__typename?: 'AvocadoAnswer';
|
|
@@ -1057,7 +1057,6 @@ export declare type AvocadoAnswer = Node & {
|
|
|
1057
1057
|
siteName: Scalars['String'];
|
|
1058
1058
|
url: Scalars['String'];
|
|
1059
1059
|
iconUrl: Scalars['String'];
|
|
1060
|
-
question: AvocadoQuestion;
|
|
1061
1060
|
};
|
|
1062
1061
|
export declare type AvocadoQuestion = Node & {
|
|
1063
1062
|
__typename?: 'AvocadoQuestion';
|
|
@@ -1066,6 +1065,7 @@ export declare type AvocadoQuestion = Node & {
|
|
|
1066
1065
|
siteName: Scalars['String'];
|
|
1067
1066
|
url: Scalars['String'];
|
|
1068
1067
|
iconUrl: Scalars['String'];
|
|
1068
|
+
isAnswered: Scalars['Boolean'];
|
|
1069
1069
|
};
|
|
1070
1070
|
export declare type Backlog = {
|
|
1071
1071
|
__typename?: 'Backlog';
|
|
@@ -1459,7 +1459,7 @@ export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
|
1459
1459
|
cloudId: Scalars['ID'];
|
|
1460
1460
|
userId: Scalars['ID'];
|
|
1461
1461
|
oauthClientId: Scalars['ID'];
|
|
1462
|
-
scopes
|
|
1462
|
+
scopes?: Maybe<Array<Scalars['String']>>;
|
|
1463
1463
|
};
|
|
1464
1464
|
export declare type ChildCardsMetadata = {
|
|
1465
1465
|
__typename?: 'ChildCardsMetadata';
|
|
@@ -5944,6 +5944,7 @@ export declare enum IssueDevOpsCommitChangeType {
|
|
|
5944
5944
|
Copied = "COPIED",
|
|
5945
5945
|
Moved = "MOVED",
|
|
5946
5946
|
Modify = "MODIFY",
|
|
5947
|
+
Modified = "MODIFIED",
|
|
5947
5948
|
Unknown = "UNKNOWN"
|
|
5948
5949
|
}
|
|
5949
5950
|
export declare type IssueDevOpsCommitDetails = {
|
|
@@ -6122,7 +6123,8 @@ export declare type IssueDevOpsPullRequestReviewer = {
|
|
|
6122
6123
|
export declare enum IssueDevOpsPullRequestStatus {
|
|
6123
6124
|
Open = "OPEN",
|
|
6124
6125
|
Merged = "MERGED",
|
|
6125
|
-
Declined = "DECLINED"
|
|
6126
|
+
Declined = "DECLINED",
|
|
6127
|
+
Unknown = "UNKNOWN"
|
|
6126
6128
|
}
|
|
6127
6129
|
export declare type IssueDevOpsRemoteLink = {
|
|
6128
6130
|
__typename?: 'IssueDevOpsRemoteLink';
|
|
@@ -7123,6 +7125,7 @@ export declare type JiraForgeDatetimeField = Node & JiraIssueField & JiraIssueFi
|
|
|
7123
7125
|
dateTime?: Maybe<Scalars['DateTime']>;
|
|
7124
7126
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7125
7127
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7128
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7126
7129
|
};
|
|
7127
7130
|
export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7128
7131
|
__typename?: 'JiraForgeGroupField';
|
|
@@ -7137,6 +7140,7 @@ export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueField
|
|
|
7137
7140
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7138
7141
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7139
7142
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7143
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7140
7144
|
};
|
|
7141
7145
|
export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
7142
7146
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -7159,6 +7163,7 @@ export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7159
7163
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7160
7164
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7161
7165
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7166
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7162
7167
|
};
|
|
7163
7168
|
export declare type JiraForgeGroupsFieldSelectedGroupsConnectionArgs = {
|
|
7164
7169
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7184,6 +7189,7 @@ export declare type JiraForgeNumberField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7184
7189
|
number?: Maybe<Scalars['Float']>;
|
|
7185
7190
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7186
7191
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7192
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7187
7193
|
};
|
|
7188
7194
|
export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7189
7195
|
__typename?: 'JiraForgeObjectField';
|
|
@@ -7196,6 +7202,7 @@ export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7196
7202
|
object?: Maybe<Scalars['String']>;
|
|
7197
7203
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7198
7204
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7205
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7199
7206
|
};
|
|
7200
7207
|
export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7201
7208
|
__typename?: 'JiraForgeStringField';
|
|
@@ -7208,6 +7215,7 @@ export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7208
7215
|
text?: Maybe<Scalars['String']>;
|
|
7209
7216
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7210
7217
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7218
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7211
7219
|
};
|
|
7212
7220
|
export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7213
7221
|
__typename?: 'JiraForgeStringsField';
|
|
@@ -7223,6 +7231,7 @@ export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFie
|
|
|
7223
7231
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7224
7232
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7225
7233
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7234
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7226
7235
|
};
|
|
7227
7236
|
export declare type JiraForgeStringsFieldSelectedLabelsConnectionArgs = {
|
|
7228
7237
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7251,6 +7260,7 @@ export declare type JiraForgeUserField = Node & JiraIssueField & JiraIssueFieldC
|
|
|
7251
7260
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7252
7261
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7253
7262
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7263
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7254
7264
|
};
|
|
7255
7265
|
export declare type JiraForgeUserFieldUsersArgs = {
|
|
7256
7266
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -7274,6 +7284,7 @@ export declare type JiraForgeUsersField = Node & JiraIssueField & JiraIssueField
|
|
|
7274
7284
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7275
7285
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7276
7286
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7287
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7277
7288
|
};
|
|
7278
7289
|
export declare type JiraForgeUsersFieldSelectedUsersConnectionArgs = {
|
|
7279
7290
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9182,6 +9193,34 @@ export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
|
9182
9193
|
cursor: Scalars['String'];
|
|
9183
9194
|
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
9184
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
|
+
};
|
|
9185
9224
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9186
9225
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9187
9226
|
id: Scalars['ID'];
|
|
@@ -11314,6 +11353,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
11314
11353
|
export declare type Mutation = {
|
|
11315
11354
|
__typename?: 'Mutation';
|
|
11316
11355
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
11356
|
+
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11317
11357
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11318
11358
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
11319
11359
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -11452,6 +11492,9 @@ export declare type Mutation = {
|
|
|
11452
11492
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11453
11493
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
11454
11494
|
};
|
|
11495
|
+
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11496
|
+
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
11497
|
+
};
|
|
11455
11498
|
export declare type MutationCreateReleaseNoteArgs = {
|
|
11456
11499
|
changeStatus?: Maybe<Scalars['String']>;
|
|
11457
11500
|
title?: Maybe<Scalars['String']>;
|
|
@@ -13107,6 +13150,7 @@ export declare type Query = {
|
|
|
13107
13150
|
node?: Maybe<Node>;
|
|
13108
13151
|
activities?: Maybe<Activities>;
|
|
13109
13152
|
activity?: Maybe<Activity>;
|
|
13153
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13110
13154
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
13111
13155
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
13112
13156
|
shepherd?: Maybe<ShepherdQuery>;
|
|
@@ -13205,6 +13249,9 @@ export declare type Query = {
|
|
|
13205
13249
|
export declare type QueryNodeArgs = {
|
|
13206
13250
|
id: Scalars['ID'];
|
|
13207
13251
|
};
|
|
13252
|
+
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13253
|
+
id: Scalars['ID'];
|
|
13254
|
+
};
|
|
13208
13255
|
export declare type QueryReleaseNotesArgs = {
|
|
13209
13256
|
after?: Maybe<Scalars['String']>;
|
|
13210
13257
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13680,6 +13727,7 @@ export declare type RoadmapConfiguration = {
|
|
|
13680
13727
|
dependencies?: Maybe<RoadmapDependencyConfiguration>;
|
|
13681
13728
|
externalConfiguration?: Maybe<RoadmapExternalConfiguration>;
|
|
13682
13729
|
projectConfigurations: Array<RoadmapProjectConfiguration>;
|
|
13730
|
+
projectConfiguration?: Maybe<RoadmapProjectConfiguration>;
|
|
13683
13731
|
statusCategories: Array<RoadmapStatusCategory>;
|
|
13684
13732
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
13685
13733
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
@@ -13931,6 +13979,19 @@ export declare type RoadmapResolveHealthcheckPayload = Payload & {
|
|
|
13931
13979
|
success: Scalars['Boolean'];
|
|
13932
13980
|
errors?: Maybe<Array<MutationError>>;
|
|
13933
13981
|
};
|
|
13982
|
+
export declare type RoadmapScheduleItemInput = {
|
|
13983
|
+
itemId: Scalars['ID'];
|
|
13984
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
13985
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
13986
|
+
};
|
|
13987
|
+
export declare type RoadmapScheduleItemsInput = {
|
|
13988
|
+
scheduleRequests: Array<Maybe<RoadmapScheduleItemInput>>;
|
|
13989
|
+
};
|
|
13990
|
+
export declare type RoadmapScheduleItemsPayload = Payload & {
|
|
13991
|
+
__typename?: 'RoadmapScheduleItemsPayload';
|
|
13992
|
+
success: Scalars['Boolean'];
|
|
13993
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13994
|
+
};
|
|
13934
13995
|
export declare type RoadmapSprint = {
|
|
13935
13996
|
__typename?: 'RoadmapSprint';
|
|
13936
13997
|
id: Scalars['ID'];
|
|
@@ -14026,6 +14087,7 @@ export declare type RoadmapsMutation = {
|
|
|
14026
14087
|
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
14027
14088
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
14028
14089
|
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
14090
|
+
scheduleRoadmapItems?: Maybe<RoadmapScheduleItemsPayload>;
|
|
14029
14091
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
14030
14092
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
14031
14093
|
};
|
|
@@ -14044,6 +14106,10 @@ export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
|
14044
14106
|
sourceARI: Scalars['ID'];
|
|
14045
14107
|
input: RoadmapUpdateItemInput;
|
|
14046
14108
|
};
|
|
14109
|
+
export declare type RoadmapsMutationScheduleRoadmapItemsArgs = {
|
|
14110
|
+
sourceARI: Scalars['ID'];
|
|
14111
|
+
input: RoadmapScheduleItemsInput;
|
|
14112
|
+
};
|
|
14047
14113
|
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
14048
14114
|
sourceARI: Scalars['ID'];
|
|
14049
14115
|
input: RoadmapToggleDependencyInput;
|
|
@@ -14456,7 +14522,7 @@ export declare type ShepherdCreateSubscriptionInput = {
|
|
|
14456
14522
|
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
14457
14523
|
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
14458
14524
|
errors?: Maybe<Array<MutationError>>;
|
|
14459
|
-
node?: Maybe<
|
|
14525
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14460
14526
|
success: Scalars['Boolean'];
|
|
14461
14527
|
};
|
|
14462
14528
|
export declare type ShepherdCreateWebhookInput = {
|
|
@@ -14593,7 +14659,7 @@ export declare type ShepherdUpdateSubscriptionInput = {
|
|
|
14593
14659
|
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
14594
14660
|
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
14595
14661
|
errors?: Maybe<Array<MutationError>>;
|
|
14596
|
-
node?: Maybe<
|
|
14662
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14597
14663
|
success: Scalars['Boolean'];
|
|
14598
14664
|
};
|
|
14599
14665
|
export declare type ShepherdUpdateWebhookInput = {
|
|
@@ -14960,7 +15026,15 @@ export declare type SupportRequestField = {
|
|
|
14960
15026
|
id: Scalars['String'];
|
|
14961
15027
|
label: Scalars['String'];
|
|
14962
15028
|
value: SupportRequestFieldValue;
|
|
15029
|
+
dataType?: Maybe<SupportRequestFieldDataType>;
|
|
15030
|
+
editable?: Maybe<Scalars['Boolean']>;
|
|
14963
15031
|
};
|
|
15032
|
+
export declare enum SupportRequestFieldDataType {
|
|
15033
|
+
String = "STRING",
|
|
15034
|
+
Number = "NUMBER",
|
|
15035
|
+
Boolean = "BOOLEAN",
|
|
15036
|
+
Date = "DATE"
|
|
15037
|
+
}
|
|
14964
15038
|
export declare type SupportRequestFieldValue = {
|
|
14965
15039
|
__typename?: 'SupportRequestFieldValue';
|
|
14966
15040
|
value: Scalars['String'];
|