@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 +8 -0
- package/out/graphql/graphql-types.d.ts +15 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.d.ts +6 -0
- package/out/tunnel/docker-compose-lifecycle.d.ts.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.js +21 -2
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -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
|
|
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
|
};
|