@forge/cli-shared 2.1.5-next.2 → 2.1.5-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
|
@@ -5508,6 +5508,7 @@ export declare type JiraIssueConnection = {
|
|
|
5508
5508
|
__typename?: 'JiraIssueConnection';
|
|
5509
5509
|
totalCount?: Maybe<Scalars['Int']>;
|
|
5510
5510
|
pageInfo: PageInfo;
|
|
5511
|
+
jql?: Maybe<Scalars['String']>;
|
|
5511
5512
|
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
5512
5513
|
};
|
|
5513
5514
|
export declare type JiraIssueDeploymentEnvironment = {
|
|
@@ -8182,6 +8183,15 @@ export declare type JiraVersion = Node & {
|
|
|
8182
8183
|
description?: Maybe<Scalars['String']>;
|
|
8183
8184
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
8184
8185
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
8186
|
+
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
8187
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
8188
|
+
};
|
|
8189
|
+
export declare type JiraVersionIssuesArgs = {
|
|
8190
|
+
first?: Maybe<Scalars['Int']>;
|
|
8191
|
+
after?: Maybe<Scalars['String']>;
|
|
8192
|
+
last?: Maybe<Scalars['Int']>;
|
|
8193
|
+
before?: Maybe<Scalars['String']>;
|
|
8194
|
+
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
8185
8195
|
};
|
|
8186
8196
|
export declare type JiraVersionConnection = {
|
|
8187
8197
|
__typename?: 'JiraVersionConnection';
|
|
@@ -8216,6 +8226,15 @@ export declare type JiraVersionEdge = {
|
|
|
8216
8226
|
node?: Maybe<JiraVersion>;
|
|
8217
8227
|
cursor: Scalars['String'];
|
|
8218
8228
|
};
|
|
8229
|
+
export declare enum JiraVersionIssuesFilter {
|
|
8230
|
+
All = "ALL",
|
|
8231
|
+
Todo = "TODO",
|
|
8232
|
+
InProgress = "IN_PROGRESS",
|
|
8233
|
+
Done = "DONE",
|
|
8234
|
+
UnreviewedCode = "UNREVIEWED_CODE",
|
|
8235
|
+
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
8236
|
+
FailingBuild = "FAILING_BUILD"
|
|
8237
|
+
}
|
|
8219
8238
|
export declare type JiraVersionResult = JiraVersion | QueryError;
|
|
8220
8239
|
export declare enum JiraVersionStatus {
|
|
8221
8240
|
Released = "RELEASED",
|
|
@@ -12290,7 +12309,7 @@ export declare type UserGrant = {
|
|
|
12290
12309
|
id: Scalars['ID'];
|
|
12291
12310
|
accountId: Scalars['ID'];
|
|
12292
12311
|
oauthClientId: Scalars['ID'];
|
|
12293
|
-
appId
|
|
12312
|
+
appId?: Maybe<Scalars['ID']>;
|
|
12294
12313
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
12295
12314
|
scopes: Array<Maybe<AppHostServiceScope>>;
|
|
12296
12315
|
};
|