@forge/cli-shared 3.6.1-next.4 → 3.6.1-next.6

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.6.1-next.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 66da5d9: Bumping dependencies via Renovate:
8
+
9
+ - conf
10
+
11
+ - Updated dependencies [8e0605e]
12
+ - @forge/manifest@4.7.0-next.4
13
+
14
+ ## 3.6.1-next.5
15
+
16
+ ### Patch Changes
17
+
18
+ - bd43f8f: feature flagged experimental changes to scope validation
19
+ - Updated dependencies [37eee39]
20
+ - Updated dependencies [ce555b4]
21
+ - @forge/manifest@4.7.0-next.3
22
+
3
23
  ## 3.6.1-next.4
4
24
 
5
25
  ### 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>;
@@ -4892,6 +4911,8 @@ export declare type ContentPlatformReleaseNoteFilterOptions = {
4892
4911
  featureRolloutDates?: Maybe<Array<Scalars['String']>>;
4893
4912
  releaseNoteFlags?: Maybe<Array<Scalars['String']>>;
4894
4913
  productFeatureFlags?: Maybe<Scalars['JSON']>;
4914
+ featureFlagEnvironment?: Maybe<Scalars['JSON']>;
4915
+ featureFlagProject?: Maybe<Scalars['JSON']>;
4895
4916
  releaseNoteFlagOffValues?: Maybe<Array<Scalars['String']>>;
4896
4917
  updatedAt?: Maybe<ContentPlatformDateRangeFilter>;
4897
4918
  };
@@ -8884,6 +8905,7 @@ export declare type JiraCannedResponseConnection = {
8884
8905
  nodes?: Maybe<Array<Maybe<JiraCannedResponse>>>;
8885
8906
  pageInfo: PageInfo;
8886
8907
  totalCount?: Maybe<Scalars['Int']>;
8908
+ errors?: Maybe<Array<QueryError>>;
8887
8909
  };
8888
8910
  export declare type JiraCannedResponseCreateInput = {
8889
8911
  projectAri: Scalars['ID'];
@@ -8931,7 +8953,7 @@ export declare type JiraCannedResponseMutationApiDeleteCannedResponseArgs = {
8931
8953
  export declare type JiraCannedResponseQueryApi = {
8932
8954
  __typename?: 'JiraCannedResponseQueryApi';
8933
8955
  cannedResponseById?: Maybe<JiraCannedResponseQueryResult>;
8934
- searchCannedResponses?: Maybe<JiraCannedResponseSearchQueryResult>;
8956
+ searchCannedResponses?: Maybe<JiraCannedResponseConnection>;
8935
8957
  };
8936
8958
  export declare type JiraCannedResponseQueryApiCannedResponseByIdArgs = {
8937
8959
  id: Scalars['ID'];
@@ -8947,7 +8969,6 @@ export declare enum JiraCannedResponseScope {
8947
8969
  Project = "PROJECT",
8948
8970
  Personal = "PERSONAL"
8949
8971
  }
8950
- export declare type JiraCannedResponseSearchQueryResult = JiraCannedResponseConnection | QueryError;
8951
8972
  export declare type JiraCannedResponseSort = {
8952
8973
  name?: Maybe<Scalars['String']>;
8953
8974
  order?: Maybe<JiraCannedResponseSortOrder>;
@@ -10982,7 +11003,6 @@ export declare enum JiraJqlAutocompleteType {
10982
11003
  export declare type JiraJqlBuilder = {
10983
11004
  __typename?: 'JiraJqlBuilder';
10984
11005
  functions: Array<JiraJqlFunction>;
10985
- lastUsedMode?: Maybe<JiraJqlBuilderMode>;
10986
11006
  hydrateJqlQuery?: Maybe<JiraJqlHydratedQueryResult>;
10987
11007
  hydrateJqlQueryForFilter?: Maybe<JiraJqlHydratedQueryResult>;
10988
11008
  fields?: Maybe<JiraJqlFieldConnectionResult>;
@@ -18843,6 +18863,8 @@ export declare type QueryReleaseNotesArgs = {
18843
18863
  filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
18844
18864
  filterByAnnouncementPlan?: Maybe<Scalars['Boolean']>;
18845
18865
  productFeatureFlags?: Maybe<Scalars['JSON']>;
18866
+ featureFlagEnvironment?: Maybe<Scalars['JSON']>;
18867
+ featureFlagProject?: Maybe<Scalars['JSON']>;
18846
18868
  publishedOnly?: Maybe<Scalars['Boolean']>;
18847
18869
  orderBy?: Maybe<Scalars['String']>;
18848
18870
  };