@forge/cli-shared 8.12.0-next.6 → 8.12.1-next.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,29 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.12.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 8b66e6f: Improve logic of container tunnel config restrictions
8
+ - Updated dependencies [8b66e6f]
9
+ - @forge/manifest@11.3.1-next.0
10
+
11
+ ## 8.12.0
12
+
13
+ ### Minor Changes
14
+
15
+ - 8a5024f: Added proxy setting for running CLI commands behind a proxy
16
+
17
+ ### Patch Changes
18
+
19
+ - 8b24052: fix bug in forge containers tunnel docker compose logic
20
+ - 8bf8249: Remove (Preview) from forge build command
21
+ - Updated dependencies [c7544d8]
22
+ - Updated dependencies [7c2186c]
23
+ - Updated dependencies [0c3a0df]
24
+ - Updated dependencies [bb5cb57]
25
+ - @forge/manifest@11.3.0
26
+
3
27
  ## 8.12.0-next.6
4
28
 
5
29
  ### Minor Changes
@@ -8351,6 +8351,12 @@ export declare type CcpEntitlementMeteredChargeElementUsageLatestArgs = {
8351
8351
  export declare type CcpEntitlementOfferingTransitionRouteArgs = {
8352
8352
  routeBehaviour: CcpOfferingRouteBehaviourEnum;
8353
8353
  };
8354
+ export declare type CcpEntitlementRelatesFromEntitlementsArgs = {
8355
+ relationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
8356
+ };
8357
+ export declare type CcpEntitlementRelatesToEntitlementsArgs = {
8358
+ relationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
8359
+ };
8354
8360
  export declare type CcpEntitlementDisplayInfo = {
8355
8361
  __typename?: 'CcpEntitlementDisplayInfo';
8356
8362
  provisionedResource?: Maybe<CcpEntitlementProvisionedResource>;
@@ -92989,7 +92995,7 @@ export declare type LiveChatStarted = {
92989
92995
  export declare type LiveChatSystemMessage = {
92990
92996
  __typename?: 'LiveChatSystemMessage';
92991
92997
  content?: Maybe<Scalars['String']['output']>;
92992
- id?: Maybe<Scalars['ID']['output']>;
92998
+ id: Scalars['ID']['output'];
92993
92999
  timestamp?: Maybe<Scalars['DateTime']['output']>;
92994
93000
  };
92995
93001
  export declare type LiveChatUpdate = LiveChatClosed | LiveChatParticipantJoined | LiveChatParticipantLeft | LiveChatStarted | LiveChatSystemMessage | LiveChatUserMessage | QueryError;
@@ -107977,6 +107983,7 @@ export declare type Query = {
107977
107983
  jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
107978
107984
  jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
107979
107985
  jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
107986
+ jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
107980
107987
  jira_view?: Maybe<JiraViewResult>;
107981
107988
  jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
107982
107989
  jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
@@ -111098,6 +111105,19 @@ export declare type QueryJira_UserSegRedirectAdviceArgs = {
111098
111105
  accountId: Scalars['ID']['input'];
111099
111106
  cloudId: Scalars['ID']['input'];
111100
111107
  };
111108
+ export declare type QueryJira_VersionsForProjectByKeyArgs = {
111109
+ after?: InputMaybe<Scalars['String']['input']>;
111110
+ before?: InputMaybe<Scalars['String']['input']>;
111111
+ cloudId: Scalars['ID']['input'];
111112
+ filter?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
111113
+ first?: InputMaybe<Scalars['Int']['input']>;
111114
+ last?: InputMaybe<Scalars['Int']['input']>;
111115
+ projectKey: Scalars['String']['input'];
111116
+ releaseDateAfter?: InputMaybe<Scalars['Date']['input']>;
111117
+ releaseDateBefore?: InputMaybe<Scalars['Date']['input']>;
111118
+ searchString?: InputMaybe<Scalars['String']['input']>;
111119
+ sortBy?: InputMaybe<JiraVersionSortInput>;
111120
+ };
111101
111121
  export declare type QueryJira_ViewArgs = {
111102
111122
  input: JiraViewQueryInput;
111103
111123
  };