@forge/cli-shared 3.6.1-next.3 → 3.6.1-next.5
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 +21 -0
- package/out/graphql/graphql-types.d.ts +21 -3
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/service/feature-flag-service.d.ts +2 -0
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +5 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.6.1-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bd43f8f: feature flagged experimental changes to scope validation
|
|
8
|
+
- Updated dependencies [37eee39]
|
|
9
|
+
- Updated dependencies [ce555b4]
|
|
10
|
+
- @forge/manifest@4.7.0-next.3
|
|
11
|
+
|
|
12
|
+
## 3.6.1-next.4
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- ba6d381: Bumping dependencies via Renovate:
|
|
17
|
+
|
|
18
|
+
- @types/cross-spawn
|
|
19
|
+
|
|
20
|
+
- 203f465: Bumping dependencies via Renovate:
|
|
21
|
+
|
|
22
|
+
- @types/inquirer
|
|
23
|
+
|
|
3
24
|
## 3.6.1-next.3
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -812,10 +812,14 @@ export declare type AppRecDismissal = {
|
|
|
812
812
|
export declare type AppRecMutation = {
|
|
813
813
|
__typename?: 'AppRecMutation';
|
|
814
814
|
dismissRecommendation?: Maybe<AppRecDismissRecommendationPayload>;
|
|
815
|
+
undoDismissal?: Maybe<AppRecUndoDismissalPayload>;
|
|
815
816
|
};
|
|
816
817
|
export declare type AppRecMutationDismissRecommendationArgs = {
|
|
817
818
|
input: AppRecDismissRecommendationInput;
|
|
818
819
|
};
|
|
820
|
+
export declare type AppRecMutationUndoDismissalArgs = {
|
|
821
|
+
input: AppRecUndoDismissalInput;
|
|
822
|
+
};
|
|
819
823
|
export declare type AppRecQuery = {
|
|
820
824
|
__typename?: 'AppRecQuery';
|
|
821
825
|
recommendations?: Maybe<Array<AppRecRecommendationResult>>;
|
|
@@ -830,6 +834,21 @@ export declare type AppRecRecommendation = {
|
|
|
830
834
|
reasons?: Maybe<Array<Scalars['String']>>;
|
|
831
835
|
};
|
|
832
836
|
export declare type AppRecRecommendationResult = QueryError | AppRecRecommendation;
|
|
837
|
+
export declare type AppRecUndoDismissalInput = {
|
|
838
|
+
appId: Scalars['ID'];
|
|
839
|
+
context: AppRecContext;
|
|
840
|
+
};
|
|
841
|
+
export declare type AppRecUndoDismissalPayload = Payload & {
|
|
842
|
+
__typename?: 'AppRecUndoDismissalPayload';
|
|
843
|
+
success: Scalars['Boolean'];
|
|
844
|
+
errors?: Maybe<Array<MutationError>>;
|
|
845
|
+
result?: Maybe<AppRecUndoDismissalResult>;
|
|
846
|
+
};
|
|
847
|
+
export declare type AppRecUndoDismissalResult = {
|
|
848
|
+
__typename?: 'AppRecUndoDismissalResult';
|
|
849
|
+
undone: Scalars['Boolean'];
|
|
850
|
+
description: Scalars['String'];
|
|
851
|
+
};
|
|
833
852
|
export declare type AppSecurityPoliciesPermission = {
|
|
834
853
|
__typename?: 'AppSecurityPoliciesPermission';
|
|
835
854
|
type?: Maybe<AppSecurityPoliciesPermissionType>;
|
|
@@ -8884,6 +8903,7 @@ export declare type JiraCannedResponseConnection = {
|
|
|
8884
8903
|
nodes?: Maybe<Array<Maybe<JiraCannedResponse>>>;
|
|
8885
8904
|
pageInfo: PageInfo;
|
|
8886
8905
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8906
|
+
errors?: Maybe<Array<QueryError>>;
|
|
8887
8907
|
};
|
|
8888
8908
|
export declare type JiraCannedResponseCreateInput = {
|
|
8889
8909
|
projectAri: Scalars['ID'];
|
|
@@ -8931,7 +8951,7 @@ export declare type JiraCannedResponseMutationApiDeleteCannedResponseArgs = {
|
|
|
8931
8951
|
export declare type JiraCannedResponseQueryApi = {
|
|
8932
8952
|
__typename?: 'JiraCannedResponseQueryApi';
|
|
8933
8953
|
cannedResponseById?: Maybe<JiraCannedResponseQueryResult>;
|
|
8934
|
-
searchCannedResponses?: Maybe<
|
|
8954
|
+
searchCannedResponses?: Maybe<JiraCannedResponseConnection>;
|
|
8935
8955
|
};
|
|
8936
8956
|
export declare type JiraCannedResponseQueryApiCannedResponseByIdArgs = {
|
|
8937
8957
|
id: Scalars['ID'];
|
|
@@ -8947,7 +8967,6 @@ export declare enum JiraCannedResponseScope {
|
|
|
8947
8967
|
Project = "PROJECT",
|
|
8948
8968
|
Personal = "PERSONAL"
|
|
8949
8969
|
}
|
|
8950
|
-
export declare type JiraCannedResponseSearchQueryResult = JiraCannedResponseConnection | QueryError;
|
|
8951
8970
|
export declare type JiraCannedResponseSort = {
|
|
8952
8971
|
name?: Maybe<Scalars['String']>;
|
|
8953
8972
|
order?: Maybe<JiraCannedResponseSortOrder>;
|
|
@@ -10982,7 +11001,6 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
10982
11001
|
export declare type JiraJqlBuilder = {
|
|
10983
11002
|
__typename?: 'JiraJqlBuilder';
|
|
10984
11003
|
functions: Array<JiraJqlFunction>;
|
|
10985
|
-
lastUsedMode?: Maybe<JiraJqlBuilderMode>;
|
|
10986
11004
|
hydrateJqlQuery?: Maybe<JiraJqlHydratedQueryResult>;
|
|
10987
11005
|
hydrateJqlQueryForFilter?: Maybe<JiraJqlHydratedQueryResult>;
|
|
10988
11006
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|