@forge/cli-shared 4.2.0-next.3 → 4.2.0

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,26 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 4.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 35b01cd: Move tunnel to Cloudflare
8
+ - 8ace637: Fix egress related error messages during deployment
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies [ebaf7ed]
13
+ - Updated dependencies [6f758c0]
14
+ - Updated dependencies [6f17340]
15
+ - @forge/manifest@7.2.2
16
+
17
+ ## 4.2.0-next.4
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [6f758c0]
22
+ - @forge/manifest@7.2.2-next.2
23
+
3
24
  ## 4.2.0-next.3
4
25
 
5
26
  ### Patch Changes
@@ -9223,7 +9223,7 @@ export declare type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
9223
9223
  };
9224
9224
  export declare type CustomerServiceUserDetailValue = {
9225
9225
  __typename?: 'CustomerServiceUserDetailValue';
9226
- accountId: Scalars['ID']['output'];
9226
+ accountId?: Maybe<Scalars['ID']['output']>;
9227
9227
  avatarUrl?: Maybe<Scalars['String']['output']>;
9228
9228
  name?: Maybe<Scalars['String']['output']>;
9229
9229
  };
@@ -27393,9 +27393,15 @@ export declare type InfluentsNotificationEntityModel = {
27393
27393
  };
27394
27394
  export declare type InfluentsNotificationFeedConnection = {
27395
27395
  __typename?: 'InfluentsNotificationFeedConnection';
27396
+ edges: Array<InfluentsNotificationFeedEdge>;
27396
27397
  nodes: Array<InfluentsNotificationHeadItem>;
27397
27398
  pageInfo: InfluentsNotificationPageInfo;
27398
27399
  };
27400
+ export declare type InfluentsNotificationFeedEdge = {
27401
+ __typename?: 'InfluentsNotificationFeedEdge';
27402
+ cursor?: Maybe<Scalars['String']['output']>;
27403
+ node: InfluentsNotificationHeadItem;
27404
+ };
27399
27405
  export declare type InfluentsNotificationFilter = {
27400
27406
  categoryFilter?: InputMaybe<InfluentsNotificationCategory>;
27401
27407
  productFilter?: InputMaybe<Scalars['String']['input']>;
@@ -27404,9 +27410,15 @@ export declare type InfluentsNotificationFilter = {
27404
27410
  };
27405
27411
  export declare type InfluentsNotificationGroupConnection = {
27406
27412
  __typename?: 'InfluentsNotificationGroupConnection';
27413
+ edges: Array<InfluentsNotificationGroupEdge>;
27407
27414
  nodes: Array<InfluentsNotificationItem>;
27408
27415
  pageInfo: InfluentsNotificationPageInfo;
27409
27416
  };
27417
+ export declare type InfluentsNotificationGroupEdge = {
27418
+ __typename?: 'InfluentsNotificationGroupEdge';
27419
+ cursor?: Maybe<Scalars['String']['output']>;
27420
+ node: InfluentsNotificationItem;
27421
+ };
27410
27422
  export declare type InfluentsNotificationHeadItem = {
27411
27423
  __typename?: 'InfluentsNotificationHeadItem';
27412
27424
  additionalActors: Array<InfluentsNotificationActor>;
@@ -27545,6 +27557,7 @@ export declare type Insights = {
27545
27557
  };
27546
27558
  export declare type InsightsGithubOnboardingDetailsArgs = {
27547
27559
  cloudId: Scalars['ID']['input'];
27560
+ projectAri?: InputMaybe<Scalars['ID']['input']>;
27548
27561
  };
27549
27562
  export declare type InsightsNextBestTasksByContextAriArgs = {
27550
27563
  contextAri: InsightsContextAri;
@@ -40724,9 +40737,9 @@ export declare type JsmChatCreateChannelOutput = {
40724
40737
  status: Scalars['Boolean']['output'];
40725
40738
  };
40726
40739
  export declare type JsmChatCreateCommentInput = {
40727
- jiraIssueAri: Scalars['ID']['input'];
40728
- message: Scalars['String']['input'];
40729
- messageSource: Scalars['String']['input'];
40740
+ message: Scalars['JSON']['input'];
40741
+ messageSource: JsmChatMessageSource;
40742
+ messageType: JsmChatMessageType;
40730
40743
  };
40731
40744
  export declare type JsmChatCreateCommentOutput = {
40732
40745
  __typename?: 'JsmChatCreateCommentOutput';
@@ -40757,6 +40770,12 @@ export declare type JsmChatInitializeNativeConfigResponse = {
40757
40770
  __typename?: 'JsmChatInitializeNativeConfigResponse';
40758
40771
  nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
40759
40772
  };
40773
+ export declare enum JsmChatMessageSource {
40774
+ Email = "EMAIL"
40775
+ }
40776
+ export declare enum JsmChatMessageType {
40777
+ Adf = "ADF"
40778
+ }
40760
40779
  export declare type JsmChatMutation = {
40761
40780
  __typename?: 'JsmChatMutation';
40762
40781
  createChannel: JsmChatCreateChannelOutput;
@@ -40771,6 +40790,8 @@ export declare type JsmChatMutationCreateChannelArgs = {
40771
40790
  };
40772
40791
  export declare type JsmChatMutationCreateCommentArgs = {
40773
40792
  input: JsmChatCreateCommentInput;
40793
+ jiraIssueAri: Scalars['ID']['input'];
40794
+ workspaceAri: Scalars['ID']['input'];
40774
40795
  };
40775
40796
  export declare type JsmChatMutationDisconnectJiraProjectArgs = {
40776
40797
  input: JsmChatDisconnectJiraProjectInput;
@@ -40924,7 +40945,19 @@ export declare type KnowledgeBaseSources = {
40924
40945
  edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
40925
40946
  totalCount: Scalars['Int']['output'];
40926
40947
  };
40948
+ export declare type KnowledgeDiscoveryConfluenceBlogpost = KnowledgeDiscoveryEntity & {
40949
+ __typename?: 'KnowledgeDiscoveryConfluenceBlogpost';
40950
+ id: Scalars['ID']['output'];
40951
+ };
40927
40952
  export declare type KnowledgeDiscoveryConfluenceEntity = ConfluenceBlogPost | ConfluencePage;
40953
+ export declare type KnowledgeDiscoveryConfluencePage = KnowledgeDiscoveryEntity & {
40954
+ __typename?: 'KnowledgeDiscoveryConfluencePage';
40955
+ id: Scalars['ID']['output'];
40956
+ };
40957
+ export declare type KnowledgeDiscoveryConfluenceSpace = KnowledgeDiscoveryEntity & {
40958
+ __typename?: 'KnowledgeDiscoveryConfluenceSpace';
40959
+ id: Scalars['ID']['output'];
40960
+ };
40928
40961
  export declare type KnowledgeDiscoveryCreateDefinitionInput = {
40929
40962
  definition: Scalars['String']['input'];
40930
40963
  keyPhrase: Scalars['String']['input'];
@@ -40967,6 +41000,10 @@ export declare enum KnowledgeDiscoveryEntityType {
40967
41000
  Topic = "TOPIC",
40968
41001
  User = "USER"
40969
41002
  }
41003
+ export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
41004
+ __typename?: 'KnowledgeDiscoveryJiraProject';
41005
+ id: Scalars['ID']['output'];
41006
+ };
40970
41007
  export declare type KnowledgeDiscoveryKeyPhrase = {
40971
41008
  __typename?: 'KnowledgeDiscoveryKeyPhrase';
40972
41009
  keyPhrase: Scalars['String']['output'];
@@ -41080,6 +41117,10 @@ export declare enum KnowledgeDiscoveryTopicType {
41080
41117
  Program = "PROGRAM",
41081
41118
  Team = "TEAM"
41082
41119
  }
41120
+ export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
41121
+ __typename?: 'KnowledgeDiscoveryUser';
41122
+ id: Scalars['ID']['output'];
41123
+ };
41083
41124
  export declare type LabelUsage = {
41084
41125
  __typename?: 'LabelUsage';
41085
41126
  count: Scalars['Int']['output'];
@@ -47277,6 +47318,7 @@ export declare enum SearchSortOrder {
47277
47318
  }
47278
47319
  export declare type SearchThirdPartyFilter = {
47279
47320
  range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
47321
+ thirdPartyTypes?: InputMaybe<Array<Scalars['String']['input']>>;
47280
47322
  titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
47281
47323
  };
47282
47324
  export declare enum SearchThirdPartyRangeField {
@@ -47923,6 +47965,7 @@ export declare type ShepherdCustomDetectionMutationPayload = Payload & {
47923
47965
  };
47924
47966
  export declare type ShepherdCustomDetectionValueType = ShepherdCustomContentScanningDetection;
47925
47967
  export declare enum ShepherdCustomScanningMatchType {
47968
+ Regex = "REGEX",
47926
47969
  String = "STRING",
47927
47970
  Word = "WORD"
47928
47971
  }