@forge/cli-shared 3.20.3-next.5 → 3.20.3-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,25 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.3-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f2196201: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/fs-extra
|
|
10
|
+
|
|
11
|
+
## 3.20.3-next.6
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 77d7bc40: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- @types/cross-spawn
|
|
18
|
+
|
|
19
|
+
- 3a6bae44: Bumping dependencies via Renovate:
|
|
20
|
+
|
|
21
|
+
- @types/ignore-walk
|
|
22
|
+
|
|
3
23
|
## 3.20.3-next.5
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -16010,6 +16010,14 @@ export type JiraIssueConnection = {
|
|
|
16010
16010
|
export type JiraIssueConnectionPageCursorsArgs = {
|
|
16011
16011
|
maxCursors: Scalars['Int']['input'];
|
|
16012
16012
|
};
|
|
16013
|
+
export type JiraIssueCreatedStreamHubPayload = {
|
|
16014
|
+
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
16015
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
16016
|
+
};
|
|
16017
|
+
export type JiraIssueDeletedStreamHubPayload = {
|
|
16018
|
+
__typename?: 'JiraIssueDeletedStreamHubPayload';
|
|
16019
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
16020
|
+
};
|
|
16013
16021
|
export type JiraIssueDeploymentEnvironment = {
|
|
16014
16022
|
__typename?: 'JiraIssueDeploymentEnvironment';
|
|
16015
16023
|
status?: Maybe<JiraIssueDeploymentEnvironmentState>;
|
|
@@ -16722,6 +16730,10 @@ export type JiraIssueTypeInput = {
|
|
|
16722
16730
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
16723
16731
|
issueTypeId: Scalars['ID']['input'];
|
|
16724
16732
|
};
|
|
16733
|
+
export type JiraIssueUpdatedStreamHubPayload = {
|
|
16734
|
+
__typename?: 'JiraIssueUpdatedStreamHubPayload';
|
|
16735
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
16736
|
+
};
|
|
16725
16737
|
export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
16726
16738
|
NewestFirst = "NEWEST_FIRST",
|
|
16727
16739
|
OldestFirst = "OLDEST_FIRST"
|
|
@@ -21382,10 +21394,25 @@ export type JiraSubmitBulkOperationProgress = Node & {
|
|
|
21382
21394
|
export type JiraSubscription = {
|
|
21383
21395
|
__typename?: 'JiraSubscription';
|
|
21384
21396
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
21397
|
+
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
21398
|
+
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
21399
|
+
onJwmIssueUpdatedByProject?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
21385
21400
|
};
|
|
21386
21401
|
export type JiraSubscriptionOnJwmFieldMutationArgs = {
|
|
21387
21402
|
siteId: Scalars['ID']['input'];
|
|
21388
21403
|
};
|
|
21404
|
+
export type JiraSubscriptionOnJwmIssueCreatedByProjectArgs = {
|
|
21405
|
+
cloudId: Scalars['ID']['input'];
|
|
21406
|
+
projectId: Scalars['String']['input'];
|
|
21407
|
+
};
|
|
21408
|
+
export type JiraSubscriptionOnJwmIssueDeletedByProjectArgs = {
|
|
21409
|
+
cloudId: Scalars['ID']['input'];
|
|
21410
|
+
projectId: Scalars['String']['input'];
|
|
21411
|
+
};
|
|
21412
|
+
export type JiraSubscriptionOnJwmIssueUpdatedByProjectArgs = {
|
|
21413
|
+
cloudId: Scalars['ID']['input'];
|
|
21414
|
+
projectId: Scalars['String']['input'];
|
|
21415
|
+
};
|
|
21389
21416
|
export type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
21390
21417
|
__typename?: 'JiraSubtasksField';
|
|
21391
21418
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|