@forge/cli-shared 6.8.0-next.11 → 6.8.0-next.12
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 +18 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/command-line-ui.d.ts +1 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +3 -2
- package/out/ui/text.js +4 -4
- package/out/ui/ui.d.ts +1 -1
- package/out/ui/ui.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -81723,6 +81723,7 @@ export declare type Query = {
|
|
|
81723
81723
|
jiraReleases?: Maybe<JiraReleases>;
|
|
81724
81724
|
jiraServers?: Maybe<JiraServersResult>;
|
|
81725
81725
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
81726
|
+
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
81726
81727
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
81727
81728
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
81728
81729
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
@@ -83921,6 +83922,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
83921
83922
|
export declare type QueryJira_BoardViewArgs = {
|
|
83922
83923
|
input: JiraBoardViewInput;
|
|
83923
83924
|
};
|
|
83925
|
+
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
83926
|
+
cloudId: Scalars['ID']['input'];
|
|
83927
|
+
};
|
|
83924
83928
|
export declare type QueryJira_IssueSearchViewsByIdsArgs = {
|
|
83925
83929
|
ids: Array<Scalars['ID']['input']>;
|
|
83926
83930
|
};
|
|
@@ -97056,6 +97060,7 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
97056
97060
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
97057
97061
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
97058
97062
|
liveIntentsCount?: Maybe<Scalars['Int']['output']>;
|
|
97063
|
+
offerEscalationConfig?: Maybe<VirtualAgentOfferEscalationConfig>;
|
|
97059
97064
|
respondToQueries: Scalars['Boolean']['output'];
|
|
97060
97065
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
97061
97066
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
@@ -97154,6 +97159,7 @@ export declare type VirtualAgentCreateChatChannelPayload = Payload & {
|
|
|
97154
97159
|
export declare type VirtualAgentCreateConfigurationInput = {
|
|
97155
97160
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
97156
97161
|
isAiResponsesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97162
|
+
offerEscalationConfig?: InputMaybe<VirtualAgentOfferEscalationOptionsInput>;
|
|
97157
97163
|
respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97158
97164
|
};
|
|
97159
97165
|
export declare type VirtualAgentCreateConfigurationPayload = Payload & {
|
|
@@ -97425,6 +97431,17 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
97425
97431
|
input: VirtualAgentUpdateConfigurationInput;
|
|
97426
97432
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
97427
97433
|
};
|
|
97434
|
+
export declare type VirtualAgentOfferEscalationConfig = {
|
|
97435
|
+
__typename?: 'VirtualAgentOfferEscalationConfig';
|
|
97436
|
+
isRaiseARequestEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
97437
|
+
isSeeSearchResultsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
97438
|
+
isTryAskingAnotherWayEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
97439
|
+
};
|
|
97440
|
+
export declare type VirtualAgentOfferEscalationOptionsInput = {
|
|
97441
|
+
isRaiseARequestEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97442
|
+
isSeeSearchResultsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97443
|
+
isTryAskingAnotherWayEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97444
|
+
};
|
|
97428
97445
|
export declare type VirtualAgentQueryApi = {
|
|
97429
97446
|
__typename?: 'VirtualAgentQueryApi';
|
|
97430
97447
|
availableToHelpCenter?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -97523,6 +97540,7 @@ export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
|
|
|
97523
97540
|
export declare type VirtualAgentUpdateConfigurationInput = {
|
|
97524
97541
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
97525
97542
|
isAiResponsesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97543
|
+
offerEscalationConfig?: InputMaybe<VirtualAgentOfferEscalationOptionsInput>;
|
|
97526
97544
|
respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97527
97545
|
};
|
|
97528
97546
|
export declare type VirtualAgentUpdateConfigurationPayload = Payload & {
|