@forge/cli-shared 8.12.0 → 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,13 @@
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
+
3
11
  ## 8.12.0
4
12
 
5
13
  ### Minor Changes
@@ -92995,7 +92995,7 @@ export declare type LiveChatStarted = {
92995
92995
  export declare type LiveChatSystemMessage = {
92996
92996
  __typename?: 'LiveChatSystemMessage';
92997
92997
  content?: Maybe<Scalars['String']['output']>;
92998
- id?: Maybe<Scalars['ID']['output']>;
92998
+ id: Scalars['ID']['output'];
92999
92999
  timestamp?: Maybe<Scalars['DateTime']['output']>;
93000
93000
  };
93001
93001
  export declare type LiveChatUpdate = LiveChatClosed | LiveChatParticipantJoined | LiveChatParticipantLeft | LiveChatStarted | LiveChatSystemMessage | LiveChatUserMessage | QueryError;
@@ -107983,6 +107983,7 @@ export declare type Query = {
107983
107983
  jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
107984
107984
  jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
107985
107985
  jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
107986
+ jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
107986
107987
  jira_view?: Maybe<JiraViewResult>;
107987
107988
  jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
107988
107989
  jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
@@ -111104,6 +111105,19 @@ export declare type QueryJira_UserSegRedirectAdviceArgs = {
111104
111105
  accountId: Scalars['ID']['input'];
111105
111106
  cloudId: Scalars['ID']['input'];
111106
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
+ };
111107
111121
  export declare type QueryJira_ViewArgs = {
111108
111122
  input: JiraViewQueryInput;
111109
111123
  };