@forge/cli-shared 3.23.4-next.1 → 3.23.4-next.3
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,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.23.4-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [a44f2ba]
|
|
8
|
+
- @forge/manifest@6.0.0-next.2
|
|
9
|
+
|
|
10
|
+
## 3.23.4-next.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [b44f823]
|
|
15
|
+
- @forge/manifest@6.0.0-next.1
|
|
16
|
+
|
|
3
17
|
## 3.23.4-next.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -46691,6 +46691,7 @@ export declare type VirtualAgentChannelConfig = {
|
|
|
46691
46691
|
};
|
|
46692
46692
|
export declare type VirtualAgentConfiguration = Node & {
|
|
46693
46693
|
__typename?: 'VirtualAgentConfiguration';
|
|
46694
|
+
conversations?: Maybe<VirtualAgentConversationsConnection>;
|
|
46694
46695
|
flowEditorFlow?: Maybe<VirtualAgentFlowEditor>;
|
|
46695
46696
|
id: Scalars['ID']['output'];
|
|
46696
46697
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
|
|
@@ -46701,6 +46702,11 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
46701
46702
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
46702
46703
|
virtualAgentStatisticsProjection?: Maybe<VirtualAgentStatisticsProjection>;
|
|
46703
46704
|
};
|
|
46705
|
+
export declare type VirtualAgentConfigurationConversationsArgs = {
|
|
46706
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46707
|
+
filter: VirtualAgentConversationsFilter;
|
|
46708
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46709
|
+
};
|
|
46704
46710
|
export declare type VirtualAgentConfigurationFlowEditorFlowArgs = {
|
|
46705
46711
|
flowRevisionId: Scalars['String']['input'];
|
|
46706
46712
|
};
|
|
@@ -46720,6 +46726,53 @@ export declare type VirtualAgentConfigurationVirtualAgentStatisticsProjectionArg
|
|
|
46720
46726
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
46721
46727
|
};
|
|
46722
46728
|
export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
|
|
46729
|
+
export declare type VirtualAgentConversation = Node & {
|
|
46730
|
+
__typename?: 'VirtualAgentConversation';
|
|
46731
|
+
action?: Maybe<VirtualAgentConversationActionType>;
|
|
46732
|
+
csat?: Maybe<Scalars['Int']['output']>;
|
|
46733
|
+
firstMessageContent?: Maybe<Scalars['String']['output']>;
|
|
46734
|
+
id: Scalars['ID']['output'];
|
|
46735
|
+
intentProjectionTmp?: Maybe<VirtualAgentIntentProjectionTmp>;
|
|
46736
|
+
linkToSource?: Maybe<Scalars['String']['output']>;
|
|
46737
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
46738
|
+
state?: Maybe<VirtualAgentConversationState>;
|
|
46739
|
+
};
|
|
46740
|
+
export declare enum VirtualAgentConversationActionType {
|
|
46741
|
+
AiAnswered = "AI_ANSWERED",
|
|
46742
|
+
Matched = "MATCHED",
|
|
46743
|
+
Unhandled = "UNHANDLED"
|
|
46744
|
+
}
|
|
46745
|
+
export declare enum VirtualAgentConversationCsatOptionType {
|
|
46746
|
+
CsatOption_1 = "CSAT_OPTION_1",
|
|
46747
|
+
CsatOption_2 = "CSAT_OPTION_2",
|
|
46748
|
+
CsatOption_3 = "CSAT_OPTION_3",
|
|
46749
|
+
CsatOption_4 = "CSAT_OPTION_4",
|
|
46750
|
+
CsatOption_5 = "CSAT_OPTION_5"
|
|
46751
|
+
}
|
|
46752
|
+
export declare type VirtualAgentConversationEdge = {
|
|
46753
|
+
__typename?: 'VirtualAgentConversationEdge';
|
|
46754
|
+
cursor: Scalars['String']['output'];
|
|
46755
|
+
node?: Maybe<VirtualAgentConversation>;
|
|
46756
|
+
};
|
|
46757
|
+
export declare enum VirtualAgentConversationState {
|
|
46758
|
+
Closed = "CLOSED",
|
|
46759
|
+
Escalated = "ESCALATED",
|
|
46760
|
+
Open = "OPEN",
|
|
46761
|
+
Resolved = "RESOLVED"
|
|
46762
|
+
}
|
|
46763
|
+
export declare type VirtualAgentConversationsConnection = {
|
|
46764
|
+
__typename?: 'VirtualAgentConversationsConnection';
|
|
46765
|
+
edges?: Maybe<Array<Maybe<VirtualAgentConversationEdge>>>;
|
|
46766
|
+
nodes?: Maybe<Array<Maybe<VirtualAgentConversation>>>;
|
|
46767
|
+
pageInfo: PageInfo;
|
|
46768
|
+
};
|
|
46769
|
+
export declare type VirtualAgentConversationsFilter = {
|
|
46770
|
+
actions?: InputMaybe<Array<VirtualAgentConversationActionType>>;
|
|
46771
|
+
csatOptions?: InputMaybe<Array<VirtualAgentConversationCsatOptionType>>;
|
|
46772
|
+
endDate: Scalars['DateTime']['input'];
|
|
46773
|
+
startDate: Scalars['DateTime']['input'];
|
|
46774
|
+
states?: InputMaybe<Array<VirtualAgentConversationState>>;
|
|
46775
|
+
};
|
|
46723
46776
|
export declare type VirtualAgentCreateChatChannelInput = {
|
|
46724
46777
|
isTriageChannel: Scalars['Boolean']['input'];
|
|
46725
46778
|
isVirtualAgentTestChannel: Scalars['Boolean']['input'];
|
|
@@ -46830,6 +46883,12 @@ export declare type VirtualAgentIntentProjectionQuestionProjectionsArgs = {
|
|
|
46830
46883
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46831
46884
|
};
|
|
46832
46885
|
export declare type VirtualAgentIntentProjectionResult = VirtualAgentIntentProjection | VirtualAgentQueryError;
|
|
46886
|
+
export declare type VirtualAgentIntentProjectionTmp = Node & {
|
|
46887
|
+
__typename?: 'VirtualAgentIntentProjectionTmp';
|
|
46888
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
46889
|
+
id: Scalars['ID']['output'];
|
|
46890
|
+
name: Scalars['String']['output'];
|
|
46891
|
+
};
|
|
46833
46892
|
export declare type VirtualAgentIntentQuestionProjection = Node & {
|
|
46834
46893
|
__typename?: 'VirtualAgentIntentQuestionProjection';
|
|
46835
46894
|
id: Scalars['ID']['output'];
|