@forge/cli-shared 2.3.1-next.6 → 2.3.1-next.7
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
|
@@ -1141,8 +1141,9 @@ export declare enum BoardFeatureToggleStatus {
|
|
|
1141
1141
|
Disabled = "DISABLED"
|
|
1142
1142
|
}
|
|
1143
1143
|
export declare type BoardFeatureView = BasicBoardFeatureView | EstimationBoardFeatureView;
|
|
1144
|
-
export declare type BoardScope = {
|
|
1144
|
+
export declare type BoardScope = Node & {
|
|
1145
1145
|
__typename?: 'BoardScope';
|
|
1146
|
+
id: Scalars['ID'];
|
|
1146
1147
|
board?: Maybe<SoftwareBoard>;
|
|
1147
1148
|
userSwimlaneStrategy?: Maybe<SwimlaneStrategy>;
|
|
1148
1149
|
backlog?: Maybe<Backlog>;
|
|
@@ -1159,6 +1160,7 @@ export declare type BoardScope = {
|
|
|
1159
1160
|
startSprintPrototype?: Maybe<Sprint>;
|
|
1160
1161
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
1161
1162
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1163
|
+
name?: Maybe<Scalars['String']>;
|
|
1162
1164
|
};
|
|
1163
1165
|
export declare type BoardScopeSprintsArgs = {
|
|
1164
1166
|
state?: Maybe<Array<Maybe<SprintState>>>;
|
|
@@ -1177,6 +1179,16 @@ export declare type BoardScopeFilteredCardIdsArgs = {
|
|
|
1177
1179
|
issueIds: Array<Maybe<Scalars['ID']>>;
|
|
1178
1180
|
customFilterIds: Array<Maybe<Scalars['ID']>>;
|
|
1179
1181
|
};
|
|
1182
|
+
export declare type BoardScopeConnection = {
|
|
1183
|
+
__typename?: 'BoardScopeConnection';
|
|
1184
|
+
edges?: Maybe<Array<Maybe<BoardScopeEdge>>>;
|
|
1185
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1186
|
+
};
|
|
1187
|
+
export declare type BoardScopeEdge = {
|
|
1188
|
+
__typename?: 'BoardScopeEdge';
|
|
1189
|
+
node?: Maybe<BoardScope>;
|
|
1190
|
+
cursor?: Maybe<Scalars['String']>;
|
|
1191
|
+
};
|
|
1180
1192
|
export declare enum BuiltinPolarisIdeaField {
|
|
1181
1193
|
Assignee = "ASSIGNEE",
|
|
1182
1194
|
Created = "CREATED",
|
|
@@ -5038,7 +5050,10 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
5038
5050
|
__typename?: 'DevOpsSummarisedDeployments';
|
|
5039
5051
|
entityId: Scalars['ID'];
|
|
5040
5052
|
count?: Maybe<Scalars['Int']>;
|
|
5053
|
+
mostRelevantCount?: Maybe<Scalars['Int']>;
|
|
5041
5054
|
deploymentState?: Maybe<DeploymentState>;
|
|
5055
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5056
|
+
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5042
5057
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
5043
5058
|
};
|
|
5044
5059
|
export declare type DevOpsThirdPartyRepository = {
|
|
@@ -5243,6 +5258,7 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5243
5258
|
first?: Maybe<Scalars['Int']>;
|
|
5244
5259
|
after?: Maybe<Scalars['String']>;
|
|
5245
5260
|
recommended?: Maybe<Scalars['Boolean']>;
|
|
5261
|
+
groupId?: Maybe<Scalars['String']>;
|
|
5246
5262
|
categoryId?: Maybe<Scalars['String']>;
|
|
5247
5263
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5248
5264
|
};
|
|
@@ -9085,6 +9101,7 @@ export declare type JiraProject = Node & {
|
|
|
9085
9101
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
9086
9102
|
status?: Maybe<JiraProjectStatus>;
|
|
9087
9103
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
9104
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
9088
9105
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
9089
9106
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
9090
9107
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -13082,6 +13099,7 @@ export declare type Query = {
|
|
|
13082
13099
|
jsw?: Maybe<JswQuery>;
|
|
13083
13100
|
boardScope?: Maybe<BoardScope>;
|
|
13084
13101
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
13102
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13085
13103
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13086
13104
|
search?: Maybe<SearchQueryApi>;
|
|
13087
13105
|
devOps?: Maybe<DevOps>;
|
|
@@ -13201,6 +13219,9 @@ export declare type QueryBoardScopeArgs = {
|
|
|
13201
13219
|
export declare type QueryDevelopmentInformationArgs = {
|
|
13202
13220
|
issueId: Scalars['ID'];
|
|
13203
13221
|
};
|
|
13222
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
13223
|
+
projectAri: Scalars['ID'];
|
|
13224
|
+
};
|
|
13204
13225
|
export declare type QueryUserArgs = {
|
|
13205
13226
|
accountId: Scalars['ID'];
|
|
13206
13227
|
};
|