@forge/cli-shared 2.1.5-next.0 → 2.1.5-next.4
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,34 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.1.5-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [4de9850]
|
|
8
|
+
- @forge/manifest@2.5.0-next.4
|
|
9
|
+
|
|
10
|
+
## 2.1.5-next.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [dec8066]
|
|
15
|
+
- @forge/manifest@2.5.0-next.3
|
|
16
|
+
|
|
17
|
+
## 2.1.5-next.2
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [755e35e]
|
|
22
|
+
- Updated dependencies [f013199]
|
|
23
|
+
- @forge/manifest@2.5.0-next.2
|
|
24
|
+
|
|
25
|
+
## 2.1.5-next.1
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [66f60f9]
|
|
30
|
+
- @forge/manifest@2.5.0-next.1
|
|
31
|
+
|
|
3
32
|
## 2.1.5-next.0
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
|
@@ -203,6 +203,10 @@ export declare type ActivityTransition = {
|
|
|
203
203
|
from?: Maybe<Scalars['String']>;
|
|
204
204
|
to?: Maybe<Scalars['String']>;
|
|
205
205
|
};
|
|
206
|
+
export declare type ActivityUser = {
|
|
207
|
+
__typename?: 'ActivityUser';
|
|
208
|
+
accountId: Scalars['ID'];
|
|
209
|
+
};
|
|
206
210
|
export declare type AddCompassComponentLabelsInput = {
|
|
207
211
|
componentId: Scalars['ID'];
|
|
208
212
|
labelNames: Array<Scalars['String']>;
|
|
@@ -5434,6 +5438,7 @@ export declare type JiraIssue = Node & {
|
|
|
5434
5438
|
comments?: Maybe<JiraCommentConnection>;
|
|
5435
5439
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
5436
5440
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
5441
|
+
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
5437
5442
|
};
|
|
5438
5443
|
export declare type JiraIssueFieldsArgs = {
|
|
5439
5444
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -5503,6 +5508,7 @@ export declare type JiraIssueConnection = {
|
|
|
5503
5508
|
__typename?: 'JiraIssueConnection';
|
|
5504
5509
|
totalCount?: Maybe<Scalars['Int']>;
|
|
5505
5510
|
pageInfo: PageInfo;
|
|
5511
|
+
jql?: Maybe<Scalars['String']>;
|
|
5506
5512
|
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
5507
5513
|
};
|
|
5508
5514
|
export declare type JiraIssueDeploymentEnvironment = {
|
|
@@ -8177,6 +8183,15 @@ export declare type JiraVersion = Node & {
|
|
|
8177
8183
|
description?: Maybe<Scalars['String']>;
|
|
8178
8184
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
8179
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>;
|
|
8180
8195
|
};
|
|
8181
8196
|
export declare type JiraVersionConnection = {
|
|
8182
8197
|
__typename?: 'JiraVersionConnection';
|
|
@@ -8211,6 +8226,15 @@ export declare type JiraVersionEdge = {
|
|
|
8211
8226
|
node?: Maybe<JiraVersion>;
|
|
8212
8227
|
cursor: Scalars['String'];
|
|
8213
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
|
+
}
|
|
8214
8238
|
export declare type JiraVersionResult = JiraVersion | QueryError;
|
|
8215
8239
|
export declare enum JiraVersionStatus {
|
|
8216
8240
|
Released = "RELEASED",
|
|
@@ -9221,6 +9245,14 @@ export declare type NadelHydrationArgument = {
|
|
|
9221
9245
|
name: Scalars['String'];
|
|
9222
9246
|
value: Scalars['String'];
|
|
9223
9247
|
};
|
|
9248
|
+
export declare type NadelHydrationFromArgument = {
|
|
9249
|
+
name: Scalars['String'];
|
|
9250
|
+
valueFromField?: Maybe<Scalars['String']>;
|
|
9251
|
+
valueFromArg?: Maybe<Scalars['String']>;
|
|
9252
|
+
};
|
|
9253
|
+
export declare enum NadelHydrationTemplate {
|
|
9254
|
+
NadelPlaceholder = "NADEL_PLACEHOLDER"
|
|
9255
|
+
}
|
|
9224
9256
|
export declare type NewCardParent = {
|
|
9225
9257
|
summary: Scalars['String'];
|
|
9226
9258
|
issueTypeId: Scalars['ID'];
|
|
@@ -11749,7 +11781,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
11749
11781
|
name: Scalars['String'];
|
|
11750
11782
|
uuid: Scalars['String'];
|
|
11751
11783
|
owner?: Maybe<User>;
|
|
11752
|
-
url
|
|
11784
|
+
url?: Maybe<Scalars['String']>;
|
|
11753
11785
|
};
|
|
11754
11786
|
export declare type TownsquareGoalConnection = {
|
|
11755
11787
|
__typename?: 'TownsquareGoalConnection';
|
|
@@ -11770,7 +11802,7 @@ export declare type TownsquareProject = Node & {
|
|
|
11770
11802
|
name: Scalars['String'];
|
|
11771
11803
|
uuid: Scalars['String'];
|
|
11772
11804
|
owner?: Maybe<User>;
|
|
11773
|
-
url
|
|
11805
|
+
url?: Maybe<Scalars['String']>;
|
|
11774
11806
|
};
|
|
11775
11807
|
export declare type TownsquareProjectConnection = {
|
|
11776
11808
|
__typename?: 'TownsquareProjectConnection';
|
|
@@ -12285,7 +12317,7 @@ export declare type UserGrant = {
|
|
|
12285
12317
|
id: Scalars['ID'];
|
|
12286
12318
|
accountId: Scalars['ID'];
|
|
12287
12319
|
oauthClientId: Scalars['ID'];
|
|
12288
|
-
appId
|
|
12320
|
+
appId?: Maybe<Scalars['ID']>;
|
|
12289
12321
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
12290
12322
|
scopes: Array<Maybe<AppHostServiceScope>>;
|
|
12291
12323
|
};
|