@forge/cli-shared 3.21.0-next.16 → 3.21.0-next.18
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,24 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.21.0-next.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 44d450c: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/tmp
|
|
10
|
+
|
|
11
|
+
## 3.21.0-next.17
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 0cdbe73: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- @types/node-fetch
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [0cdbe73]
|
|
20
|
+
- @forge/manifest@5.1.0-next.7
|
|
21
|
+
|
|
3
22
|
## 3.21.0-next.16
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -18634,6 +18634,7 @@ export type JiraMutation = {
|
|
|
18634
18634
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
18635
18635
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
18636
18636
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
18637
|
+
jwmCreateIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
18637
18638
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
18638
18639
|
linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
|
|
18639
18640
|
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
@@ -18763,6 +18764,9 @@ export type JiraMutationGrantGlobalPermissionArgs = {
|
|
|
18763
18764
|
cloudId: Scalars['ID']['input'];
|
|
18764
18765
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
18765
18766
|
};
|
|
18767
|
+
export type JiraMutationJwmCreateIssueArgs = {
|
|
18768
|
+
input: JiraWorkManagementCreateIssueInput;
|
|
18769
|
+
};
|
|
18766
18770
|
export type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
18767
18771
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
18768
18772
|
};
|
|
@@ -20132,6 +20136,34 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
20132
20136
|
TimeTracking = "TIME_TRACKING",
|
|
20133
20137
|
VotersAndWatchers = "VOTERS_AND_WATCHERS"
|
|
20134
20138
|
}
|
|
20139
|
+
export type JiraProjectRoleActorRecommendation = Node & {
|
|
20140
|
+
__typename?: 'JiraProjectRoleActorRecommendation';
|
|
20141
|
+
id: Scalars['ID']['output'];
|
|
20142
|
+
project?: Maybe<JiraProject>;
|
|
20143
|
+
projectRoleActorAction?: Maybe<JiraProjectRoleActorRecommendationAction>;
|
|
20144
|
+
recommendationId?: Maybe<Scalars['Long']['output']>;
|
|
20145
|
+
status?: Maybe<JiraResourceUsageRecommendationStatus>;
|
|
20146
|
+
user?: Maybe<JiraUserMetadata>;
|
|
20147
|
+
};
|
|
20148
|
+
export declare enum JiraProjectRoleActorRecommendationAction {
|
|
20149
|
+
Trash = "TRASH"
|
|
20150
|
+
}
|
|
20151
|
+
export type JiraProjectRoleActorRecommendationConnection = {
|
|
20152
|
+
__typename?: 'JiraProjectRoleActorRecommendationConnection';
|
|
20153
|
+
edges?: Maybe<Array<Maybe<JiraProjectRoleActorRecommendationEdge>>>;
|
|
20154
|
+
nodes?: Maybe<Array<Maybe<JiraProjectRoleActorRecommendation>>>;
|
|
20155
|
+
pageInfo: PageInfo;
|
|
20156
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20157
|
+
};
|
|
20158
|
+
export type JiraProjectRoleActorRecommendationEdge = {
|
|
20159
|
+
__typename?: 'JiraProjectRoleActorRecommendationEdge';
|
|
20160
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
20161
|
+
node?: Maybe<JiraProjectRoleActorRecommendation>;
|
|
20162
|
+
};
|
|
20163
|
+
export declare enum JiraProjectRoleActorUserStatus {
|
|
20164
|
+
Deleted = "DELETED",
|
|
20165
|
+
Inactive = "INACTIVE"
|
|
20166
|
+
}
|
|
20135
20167
|
export type JiraProjectRoleGrantTypeValue = Node & {
|
|
20136
20168
|
__typename?: 'JiraProjectRoleGrantTypeValue';
|
|
20137
20169
|
id: Scalars['ID']['output'];
|
|
@@ -20297,6 +20329,7 @@ export type JiraQuery = {
|
|
|
20297
20329
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
20298
20330
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
20299
20331
|
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
20332
|
+
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
20300
20333
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
20301
20334
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
20302
20335
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -20690,6 +20723,14 @@ export type JiraQueryProjectListViewTemplatesArgs = {
|
|
|
20690
20723
|
experimentKey?: InputMaybe<Scalars['String']['input']>;
|
|
20691
20724
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20692
20725
|
};
|
|
20726
|
+
export type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
20727
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
20728
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
20729
|
+
cloudId: Scalars['ID']['input'];
|
|
20730
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20731
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
20732
|
+
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
20733
|
+
};
|
|
20693
20734
|
export type JiraQueryRequestTypeTemplateByIdArgs = {
|
|
20694
20735
|
cloudId: Scalars['ID']['input'];
|
|
20695
20736
|
templateId: Scalars['ID']['input'];
|
|
@@ -23170,6 +23211,11 @@ export type JiraUserInput = {
|
|
|
23170
23211
|
export type JiraUserIssueFieldConfiguration = {
|
|
23171
23212
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
23172
23213
|
};
|
|
23214
|
+
export type JiraUserMetadata = {
|
|
23215
|
+
__typename?: 'JiraUserMetadata';
|
|
23216
|
+
info?: Maybe<User>;
|
|
23217
|
+
status?: Maybe<JiraProjectRoleActorUserStatus>;
|
|
23218
|
+
};
|
|
23173
23219
|
export type JiraUserPreferences = {
|
|
23174
23220
|
__typename?: 'JiraUserPreferences';
|
|
23175
23221
|
colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
|
|
@@ -23821,6 +23867,19 @@ export type JiraWorkManagementCommentSummary = {
|
|
|
23821
23867
|
__typename?: 'JiraWorkManagementCommentSummary';
|
|
23822
23868
|
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
23823
23869
|
};
|
|
23870
|
+
export type JiraWorkManagementCreateIssueInput = {
|
|
23871
|
+
fields: JiraIssueFieldsInput;
|
|
23872
|
+
issueType: Scalars['ID']['input'];
|
|
23873
|
+
projectId: Scalars['ID']['input'];
|
|
23874
|
+
rank?: InputMaybe<JiraWorkManagementRankInput>;
|
|
23875
|
+
transitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
23876
|
+
};
|
|
23877
|
+
export type JiraWorkManagementCreateIssuePayload = {
|
|
23878
|
+
__typename?: 'JiraWorkManagementCreateIssuePayload';
|
|
23879
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23880
|
+
issue?: Maybe<JiraIssue>;
|
|
23881
|
+
success: Scalars['Boolean']['output'];
|
|
23882
|
+
};
|
|
23824
23883
|
export type JiraWorkManagementCreateOverviewInput = {
|
|
23825
23884
|
name: Scalars['String']['input'];
|
|
23826
23885
|
projectIds: Array<Scalars['ID']['input']>;
|
|
@@ -23946,6 +24005,10 @@ export type JiraWorkManagementProjectNavigationMetadata = {
|
|
|
23946
24005
|
__typename?: 'JiraWorkManagementProjectNavigationMetadata';
|
|
23947
24006
|
boardName: Scalars['String']['output'];
|
|
23948
24007
|
};
|
|
24008
|
+
export type JiraWorkManagementRankInput = {
|
|
24009
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
24010
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
24011
|
+
};
|
|
23949
24012
|
export type JiraWorkManagementUpdateOverviewInput = {
|
|
23950
24013
|
id: Scalars['ID']['input'];
|
|
23951
24014
|
name?: InputMaybe<Scalars['String']['input']>;
|