@forge/cli-shared 8.9.0-next.12 → 8.9.0-next.12-experimental-cd26ead

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,27 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.9.0-next.12-experimental-cd26ead
4
+
5
+ ### Minor Changes
6
+
7
+ - 5efbe5a: Added new watch flag to show services command
8
+
9
+ ### Patch Changes
10
+
11
+ - 49bbec0: Display local port by default when tunneling
12
+ - 6ab8f99: Re-order dependency between sidecar container and app container so the sidecar is ready for app container bootstrap code
13
+ - ef033a5: support container identity when tunneling
14
+ - 118f8af: switch `contexts` to `compatibility` for Forge create operation
15
+ - aaf8a03: forge tunnel with containers: delete auto generated docker compose files upon failing to startup
16
+ - Updated dependencies [9a6d346]
17
+ - Updated dependencies [260eb24]
18
+ - Updated dependencies [3228cf0]
19
+ - Updated dependencies [8962080]
20
+ - Updated dependencies [f0a5a03]
21
+ - Updated dependencies [d00ef59]
22
+ - Updated dependencies [78efec7]
23
+ - @forge/manifest@11.0.0-next.6-experimental-cd26ead
24
+
3
25
  ## 8.9.0-next.12
4
26
 
5
27
  ### Patch Changes
@@ -3902,6 +3902,7 @@ export declare type AppFeaturesExposedCredentialsInput = {
3902
3902
  export declare type AppFeaturesInput = {
3903
3903
  hasCustomLifecycle?: InputMaybe<Scalars['Boolean']['input']>;
3904
3904
  hasExposedCredentials?: InputMaybe<AppFeaturesExposedCredentialsInput>;
3905
+ hasResourceRestrictedToken?: InputMaybe<Scalars['Boolean']['input']>;
3905
3906
  };
3906
3907
  export declare type AppHostService = {
3907
3908
  __typename?: 'AppHostService';
@@ -22404,8 +22405,17 @@ export declare type ConvoAiHomeThreadSource = ConvoAiHomeThreadsFirstPartySource
22404
22405
  export declare type ConvoAiHomeThreadSuggestedAction = {
22405
22406
  __typename?: 'ConvoAiHomeThreadSuggestedAction';
22406
22407
  action?: Maybe<ConvoAiHomeThreadSuggestedActionType>;
22408
+ origin?: Maybe<ConvoAiHomeThreadSuggestedActionOriginType>;
22407
22409
  source?: Maybe<ConvoAiHomeThreadSource>;
22408
22410
  };
22411
+ export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
22412
+ CommentRule = "COMMENT_RULE",
22413
+ ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
22414
+ JiraIssueRule = "JIRA_ISSUE_RULE",
22415
+ Llm = "LLM",
22416
+ LoomVideoRule = "LOOM_VIDEO_RULE",
22417
+ PullRequestRule = "PULL_REQUEST_RULE"
22418
+ }
22409
22419
  export declare enum ConvoAiHomeThreadSuggestedActionType {
22410
22420
  Delete = "DELETE",
22411
22421
  Reply = "REPLY",
@@ -77701,6 +77711,7 @@ export declare type JiraQuery = {
77701
77711
  jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
77702
77712
  labelsFieldOptions?: Maybe<JiraLabelConnection>;
77703
77713
  labelsInBoard?: Maybe<JiraLabelConnection>;
77714
+ limitValues?: Maybe<Array<Maybe<JiraResourceUsageMetricLimitValue>>>;
77704
77715
  linkedWorkItems?: Maybe<JiraIssueConnection>;
77705
77716
  lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
77706
77717
  mediaClientId?: Maybe<Scalars['String']['output']>;
@@ -78483,6 +78494,10 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
78483
78494
  export declare type JiraQueryLabelsInBoardArgs = {
78484
78495
  boardId: Scalars['ID']['input'];
78485
78496
  };
78497
+ export declare type JiraQueryLimitValuesArgs = {
78498
+ cloudId: Scalars['ID']['input'];
78499
+ filterKeys?: InputMaybe<Array<Scalars['String']['input']>>;
78500
+ };
78486
78501
  export declare type JiraQueryLinkedWorkItemsArgs = {
78487
78502
  after?: InputMaybe<Scalars['String']['input']>;
78488
78503
  before?: InputMaybe<Scalars['String']['input']>;
@@ -79509,6 +79524,11 @@ export declare type JiraResourceUsageMetricEdgeV2 = {
79509
79524
  cursor: Scalars['String']['output'];
79510
79525
  node?: Maybe<JiraResourceUsageMetricV2>;
79511
79526
  };
79527
+ export declare type JiraResourceUsageMetricLimitValue = {
79528
+ __typename?: 'JiraResourceUsageMetricLimitValue';
79529
+ key?: Maybe<Scalars['String']['output']>;
79530
+ limitValue?: Maybe<Scalars['Int']['output']>;
79531
+ };
79512
79532
  export declare type JiraResourceUsageMetricV2 = {
79513
79533
  cleanupValue?: Maybe<Scalars['Long']['output']>;
79514
79534
  currentValue?: Maybe<Scalars['Long']['output']>;
@@ -79573,6 +79593,16 @@ export declare enum JiraResourcesSortDirection {
79573
79593
  Asc = "ASC",
79574
79594
  Desc = "DESC"
79575
79595
  }
79596
+ export declare type JiraRestoreCustomFieldsInput = {
79597
+ fieldIds: Array<Scalars['String']['input']>;
79598
+ };
79599
+ export declare type JiraRestoreCustomFieldsPayload = Payload & {
79600
+ __typename?: 'JiraRestoreCustomFieldsPayload';
79601
+ errors?: Maybe<Array<MutationError>>;
79602
+ failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
79603
+ succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
79604
+ success: Scalars['Boolean']['output'];
79605
+ };
79576
79606
  export declare type JiraRestoreGlobalCustomFieldsInput = {
79577
79607
  fieldIds: Array<Scalars['String']['input']>;
79578
79608
  };
@@ -94847,6 +94877,7 @@ export declare type Mutation = {
94847
94877
  jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
94848
94878
  jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
94849
94879
  jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
94880
+ jira_restoreCustomFields?: Maybe<JiraRestoreCustomFieldsPayload>;
94850
94881
  jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
94851
94882
  jira_scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
94852
94883
  jira_setBacklogViewAssigneeFilters?: Maybe<JiraSetBacklogViewPayload>;
@@ -96795,6 +96826,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
96795
96826
  export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
96796
96827
  input: JiraReorderSidebarMenuItemInput;
96797
96828
  };
96829
+ export declare type MutationJira_RestoreCustomFieldsArgs = {
96830
+ cloudId: Scalars['ID']['input'];
96831
+ input: JiraRestoreCustomFieldsInput;
96832
+ };
96798
96833
  export declare type MutationJira_RestoreGlobalCustomFieldsArgs = {
96799
96834
  cloudId: Scalars['ID']['input'];
96800
96835
  input: JiraRestoreGlobalCustomFieldsInput;
@@ -108628,6 +108663,7 @@ export declare type SearchThirdPartyProduct = {
108628
108663
  connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
108629
108664
  containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
108630
108665
  datasourceId?: InputMaybe<Scalars['String']['input']>;
108666
+ entities?: InputMaybe<Array<Scalars['String']['input']>>;
108631
108667
  integrationId?: InputMaybe<Scalars['String']['input']>;
108632
108668
  linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
108633
108669
  product?: InputMaybe<Scalars['String']['input']>;