@forge/cli-shared 4.2.0-next.3 → 4.2.0-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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 4.2.0-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [6f758c0]
8
+ - @forge/manifest@7.2.2-next.2
9
+
3
10
  ## 4.2.0-next.3
4
11
 
5
12
  ### Patch Changes
@@ -27545,6 +27545,7 @@ export declare type Insights = {
27545
27545
  };
27546
27546
  export declare type InsightsGithubOnboardingDetailsArgs = {
27547
27547
  cloudId: Scalars['ID']['input'];
27548
+ projectAri?: InputMaybe<Scalars['ID']['input']>;
27548
27549
  };
27549
27550
  export declare type InsightsNextBestTasksByContextAriArgs = {
27550
27551
  contextAri: InsightsContextAri;
@@ -40724,9 +40725,9 @@ export declare type JsmChatCreateChannelOutput = {
40724
40725
  status: Scalars['Boolean']['output'];
40725
40726
  };
40726
40727
  export declare type JsmChatCreateCommentInput = {
40727
- jiraIssueAri: Scalars['ID']['input'];
40728
- message: Scalars['String']['input'];
40729
- messageSource: Scalars['String']['input'];
40728
+ message: Scalars['JSON']['input'];
40729
+ messageSource: JsmChatMessageSource;
40730
+ messageType: JsmChatMessageType;
40730
40731
  };
40731
40732
  export declare type JsmChatCreateCommentOutput = {
40732
40733
  __typename?: 'JsmChatCreateCommentOutput';
@@ -40757,6 +40758,12 @@ export declare type JsmChatInitializeNativeConfigResponse = {
40757
40758
  __typename?: 'JsmChatInitializeNativeConfigResponse';
40758
40759
  nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
40759
40760
  };
40761
+ export declare enum JsmChatMessageSource {
40762
+ Email = "EMAIL"
40763
+ }
40764
+ export declare enum JsmChatMessageType {
40765
+ Adf = "ADF"
40766
+ }
40760
40767
  export declare type JsmChatMutation = {
40761
40768
  __typename?: 'JsmChatMutation';
40762
40769
  createChannel: JsmChatCreateChannelOutput;
@@ -40771,6 +40778,8 @@ export declare type JsmChatMutationCreateChannelArgs = {
40771
40778
  };
40772
40779
  export declare type JsmChatMutationCreateCommentArgs = {
40773
40780
  input: JsmChatCreateCommentInput;
40781
+ jiraIssueAri: Scalars['ID']['input'];
40782
+ workspaceAri: Scalars['ID']['input'];
40774
40783
  };
40775
40784
  export declare type JsmChatMutationDisconnectJiraProjectArgs = {
40776
40785
  input: JsmChatDisconnectJiraProjectInput;
@@ -47277,6 +47286,7 @@ export declare enum SearchSortOrder {
47277
47286
  }
47278
47287
  export declare type SearchThirdPartyFilter = {
47279
47288
  range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
47289
+ thirdPartyTypes?: InputMaybe<Array<Scalars['String']['input']>>;
47280
47290
  titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
47281
47291
  };
47282
47292
  export declare enum SearchThirdPartyRangeField {
@@ -47923,6 +47933,7 @@ export declare type ShepherdCustomDetectionMutationPayload = Payload & {
47923
47933
  };
47924
47934
  export declare type ShepherdCustomDetectionValueType = ShepherdCustomContentScanningDetection;
47925
47935
  export declare enum ShepherdCustomScanningMatchType {
47936
+ Regex = "REGEX",
47926
47937
  String = "STRING",
47927
47938
  Word = "WORD"
47928
47939
  }