@forge/cli-shared
8.12.08.12.1-next.0
out/graphql/graphql-types.d.tsout/graphql/graphql-types.d.ts+15−1
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -92994,9 +92994,9 @@
};
export declare type LiveChatSystemMessage = {
__typename?: 'LiveChatSystemMessage';
content?: Maybe<Scalars['String']['output']>;
- id?: Maybe<Scalars['ID']['output']>;
+ id: Scalars['ID']['output'];
timestamp?: Maybe<Scalars['DateTime']['output']>;
};
export declare type LiveChatUpdate = LiveChatClosed | LiveChatParticipantJoined | LiveChatParticipantLeft | LiveChatStarted | LiveChatSystemMessage | LiveChatUserMessage | QueryError;
export declare type LiveChatUserMessage = {
@@ -107982,8 +107982,9 @@
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
+ jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
jira_view?: Maybe<JiraViewResult>;
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
@@ -111103,8 +111104,21 @@
export declare type QueryJira_UserSegRedirectAdviceArgs = {
accountId: Scalars['ID']['input'];
cloudId: Scalars['ID']['input'];
};
+export declare type QueryJira_VersionsForProjectByKeyArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ before?: InputMaybe<Scalars['String']['input']>;
+ cloudId: Scalars['ID']['input'];
+ filter?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
+ first?: InputMaybe<Scalars['Int']['input']>;
+ last?: InputMaybe<Scalars['Int']['input']>;
+ projectKey: Scalars['String']['input'];
+ releaseDateAfter?: InputMaybe<Scalars['Date']['input']>;
+ releaseDateBefore?: InputMaybe<Scalars['Date']['input']>;
+ searchString?: InputMaybe<Scalars['String']['input']>;
+ sortBy?: InputMaybe<JiraVersionSortInput>;
+};
export declare type QueryJira_ViewArgs = {
input: JiraViewQueryInput;
};
export declare type QueryJpdViewsService_EchoArgs = {