@forge/cli-shared 2.3.1-next.4 → 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
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.1-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [e0a44d40]
|
|
8
|
+
- @forge/manifest@3.4.0-next.7
|
|
9
|
+
|
|
10
|
+
## 2.3.1-next.6
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [1ca8bbc9]
|
|
15
|
+
- @forge/manifest@3.4.0-next.6
|
|
16
|
+
|
|
17
|
+
## 2.3.1-next.5
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [1c6c578]
|
|
22
|
+
- @forge/manifest@3.4.0-next.5
|
|
23
|
+
|
|
3
24
|
## 2.3.1-next.4
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -796,6 +796,7 @@ export declare type AppUninstallationInput = {
|
|
|
796
796
|
environmentKey: Scalars['String'];
|
|
797
797
|
async?: Maybe<Scalars['Boolean']>;
|
|
798
798
|
licenseOverride?: Maybe<LicenseOverrideState>;
|
|
799
|
+
sourceBillingType?: Maybe<SourceBillingType>;
|
|
799
800
|
};
|
|
800
801
|
export declare type AppUninstallationResponse = Payload & {
|
|
801
802
|
__typename?: 'AppUninstallationResponse';
|
|
@@ -1140,8 +1141,9 @@ export declare enum BoardFeatureToggleStatus {
|
|
|
1140
1141
|
Disabled = "DISABLED"
|
|
1141
1142
|
}
|
|
1142
1143
|
export declare type BoardFeatureView = BasicBoardFeatureView | EstimationBoardFeatureView;
|
|
1143
|
-
export declare type BoardScope = {
|
|
1144
|
+
export declare type BoardScope = Node & {
|
|
1144
1145
|
__typename?: 'BoardScope';
|
|
1146
|
+
id: Scalars['ID'];
|
|
1145
1147
|
board?: Maybe<SoftwareBoard>;
|
|
1146
1148
|
userSwimlaneStrategy?: Maybe<SwimlaneStrategy>;
|
|
1147
1149
|
backlog?: Maybe<Backlog>;
|
|
@@ -1158,6 +1160,7 @@ export declare type BoardScope = {
|
|
|
1158
1160
|
startSprintPrototype?: Maybe<Sprint>;
|
|
1159
1161
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
1160
1162
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1163
|
+
name?: Maybe<Scalars['String']>;
|
|
1161
1164
|
};
|
|
1162
1165
|
export declare type BoardScopeSprintsArgs = {
|
|
1163
1166
|
state?: Maybe<Array<Maybe<SprintState>>>;
|
|
@@ -1176,6 +1179,16 @@ export declare type BoardScopeFilteredCardIdsArgs = {
|
|
|
1176
1179
|
issueIds: Array<Maybe<Scalars['ID']>>;
|
|
1177
1180
|
customFilterIds: Array<Maybe<Scalars['ID']>>;
|
|
1178
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
|
+
};
|
|
1179
1192
|
export declare enum BuiltinPolarisIdeaField {
|
|
1180
1193
|
Assignee = "ASSIGNEE",
|
|
1181
1194
|
Created = "CREATED",
|
|
@@ -5037,7 +5050,10 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
5037
5050
|
__typename?: 'DevOpsSummarisedDeployments';
|
|
5038
5051
|
entityId: Scalars['ID'];
|
|
5039
5052
|
count?: Maybe<Scalars['Int']>;
|
|
5053
|
+
mostRelevantCount?: Maybe<Scalars['Int']>;
|
|
5040
5054
|
deploymentState?: Maybe<DeploymentState>;
|
|
5055
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5056
|
+
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5041
5057
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
5042
5058
|
};
|
|
5043
5059
|
export declare type DevOpsThirdPartyRepository = {
|
|
@@ -5242,6 +5258,7 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5242
5258
|
first?: Maybe<Scalars['Int']>;
|
|
5243
5259
|
after?: Maybe<Scalars['String']>;
|
|
5244
5260
|
recommended?: Maybe<Scalars['Boolean']>;
|
|
5261
|
+
groupId?: Maybe<Scalars['String']>;
|
|
5245
5262
|
categoryId?: Maybe<Scalars['String']>;
|
|
5246
5263
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5247
5264
|
};
|
|
@@ -9084,6 +9101,7 @@ export declare type JiraProject = Node & {
|
|
|
9084
9101
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
9085
9102
|
status?: Maybe<JiraProjectStatus>;
|
|
9086
9103
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
9104
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
9087
9105
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
9088
9106
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
9089
9107
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -13081,6 +13099,7 @@ export declare type Query = {
|
|
|
13081
13099
|
jsw?: Maybe<JswQuery>;
|
|
13082
13100
|
boardScope?: Maybe<BoardScope>;
|
|
13083
13101
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
13102
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13084
13103
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13085
13104
|
search?: Maybe<SearchQueryApi>;
|
|
13086
13105
|
devOps?: Maybe<DevOps>;
|
|
@@ -13200,6 +13219,9 @@ export declare type QueryBoardScopeArgs = {
|
|
|
13200
13219
|
export declare type QueryDevelopmentInformationArgs = {
|
|
13201
13220
|
issueId: Scalars['ID'];
|
|
13202
13221
|
};
|
|
13222
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
13223
|
+
projectAri: Scalars['ID'];
|
|
13224
|
+
};
|
|
13203
13225
|
export declare type QueryUserArgs = {
|
|
13204
13226
|
accountId: Scalars['ID'];
|
|
13205
13227
|
};
|
|
@@ -16072,4 +16094,8 @@ export declare type _DirectiveArgument = {
|
|
|
16072
16094
|
name: Scalars['String'];
|
|
16073
16095
|
value: Scalars['String'];
|
|
16074
16096
|
};
|
|
16097
|
+
export declare enum SourceBillingType {
|
|
16098
|
+
Hams = "HAMS",
|
|
16099
|
+
Ccp = "CCP"
|
|
16100
|
+
}
|
|
16075
16101
|
//# sourceMappingURL=graphql-types.d.ts.map
|