mavenagi 1.2.48 → 1.2.50
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/BaseClient.js +2 -2
- package/api/resources/commons/types/ConversationKickoffResult.d.ts +7 -0
- package/api/resources/commons/types/ConversationKickoffResult.js +3 -0
- package/api/resources/commons/types/ConversationKickoffStatus.d.ts +5 -0
- package/api/resources/commons/types/ConversationKickoffStatus.js +8 -0
- package/api/resources/commons/types/ConversationMessageBase.d.ts +9 -0
- package/api/resources/commons/types/ConversationResponse.d.ts +3 -0
- package/api/resources/commons/types/ConversationSummary.d.ts +6 -0
- package/api/resources/commons/types/EntityType.d.ts +3 -0
- package/api/resources/commons/types/EntityType.js +3 -0
- package/api/resources/commons/types/InitializeConversationResponse.d.ts +14 -0
- package/api/resources/commons/types/InitializeConversationResponse.js +3 -0
- package/api/resources/commons/types/IntelligentFieldCondition.d.ts +5 -1
- package/api/resources/commons/types/JsonSchemaSettingsSchemaEntry.d.ts +6 -0
- package/api/resources/commons/types/JsonSchemaSettingsSchemaEntry.js +3 -0
- package/api/resources/commons/types/PresenceCondition.d.ts +9 -0
- package/api/resources/commons/types/PresenceCondition.js +3 -0
- package/api/resources/commons/types/PresenceOperator.d.ts +15 -0
- package/api/resources/commons/types/PresenceOperator.js +18 -0
- package/api/resources/commons/types/SettingsSchemaEntry.d.ts +7 -1
- package/api/resources/commons/types/SwitchSettingsSchemaEntry.d.ts +4 -0
- package/api/resources/commons/types/SwitchSettingsSchemaEntry.js +3 -0
- package/api/resources/commons/types/UniversalCondition.d.ts +13 -0
- package/api/resources/commons/types/UniversalCondition.js +3 -0
- package/api/resources/commons/types/index.d.ts +8 -0
- package/api/resources/commons/types/index.js +8 -0
- package/api/resources/conversation/client/Client.d.ts +1 -1
- package/api/resources/conversation/client/Client.js +1 -1
- package/api/resources/conversation/types/AskRequest.d.ts +9 -0
- package/api/resources/conversation/types/ConversationField.d.ts +1 -0
- package/api/resources/conversation/types/ConversationField.js +1 -0
- package/api/resources/knowledge/client/Client.d.ts +17 -0
- package/api/resources/knowledge/client/Client.js +88 -0
- package/api/resources/knowledge/types/KnowledgeBaseIndexingStatus.d.ts +2 -0
- package/api/resources/knowledge/types/KnowledgeBaseIndexingStatus.js +2 -0
- package/package.json +1 -1
- package/reference.md +64 -1
- package/serialization/resources/commons/types/ConversationKickoffResult.d.ts +11 -0
- package/serialization/resources/commons/types/ConversationKickoffResult.js +43 -0
- package/serialization/resources/commons/types/ConversationKickoffStatus.d.ts +7 -0
- package/serialization/resources/commons/types/ConversationKickoffStatus.js +39 -0
- package/serialization/resources/commons/types/ConversationMessageBase.d.ts +1 -0
- package/serialization/resources/commons/types/ConversationMessageBase.js +1 -0
- package/serialization/resources/commons/types/ConversationSummary.d.ts +3 -0
- package/serialization/resources/commons/types/ConversationSummary.js +3 -0
- package/serialization/resources/commons/types/EntityType.d.ts +1 -1
- package/serialization/resources/commons/types/EntityType.js +3 -0
- package/serialization/resources/commons/types/InitializeConversationResponse.d.ts +11 -0
- package/serialization/resources/commons/types/InitializeConversationResponse.js +45 -0
- package/serialization/resources/commons/types/IntelligentFieldCondition.d.ts +6 -1
- package/serialization/resources/commons/types/IntelligentFieldCondition.js +4 -0
- package/serialization/resources/commons/types/JsonSchemaSettingsSchemaEntry.d.ts +11 -0
- package/serialization/resources/commons/types/JsonSchemaSettingsSchemaEntry.js +45 -0
- package/serialization/resources/commons/types/PresenceCondition.d.ts +10 -0
- package/serialization/resources/commons/types/PresenceCondition.js +42 -0
- package/serialization/resources/commons/types/PresenceOperator.d.ts +7 -0
- package/serialization/resources/commons/types/PresenceOperator.js +39 -0
- package/serialization/resources/commons/types/SettingsSchemaEntry.d.ts +9 -1
- package/serialization/resources/commons/types/SettingsSchemaEntry.js +4 -0
- package/serialization/resources/commons/types/SwitchSettingsSchemaEntry.d.ts +10 -0
- package/serialization/resources/commons/types/SwitchSettingsSchemaEntry.js +44 -0
- package/serialization/resources/commons/types/UniversalCondition.d.ts +11 -0
- package/serialization/resources/commons/types/UniversalCondition.js +47 -0
- package/serialization/resources/commons/types/index.d.ts +8 -0
- package/serialization/resources/commons/types/index.js +8 -0
- package/serialization/resources/conversation/types/AskRequest.d.ts +1 -0
- package/serialization/resources/conversation/types/AskRequest.js +1 -0
- package/serialization/resources/conversation/types/ConversationField.d.ts +1 -1
- package/serialization/resources/conversation/types/ConversationField.js +1 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseIndexingStatus.d.ts +1 -1
- package/serialization/resources/knowledge/types/KnowledgeBaseIndexingStatus.js +10 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -59,6 +59,8 @@ export * from "./ContextInfo";
|
|
|
59
59
|
export * from "./ConversationAnalysis";
|
|
60
60
|
export * from "./ConversationExecutedActionPrecondition";
|
|
61
61
|
export * from "./ConversationInformation";
|
|
62
|
+
export * from "./ConversationKickoffResult";
|
|
63
|
+
export * from "./ConversationKickoffStatus";
|
|
62
64
|
export * from "./ConversationMessageBase";
|
|
63
65
|
export * from "./ConversationMessageResponse";
|
|
64
66
|
export * from "./ConversationPrecondition";
|
|
@@ -108,11 +110,13 @@ export * from "./InboxItemMissingKnowledge";
|
|
|
108
110
|
export * from "./InboxItemSeverity";
|
|
109
111
|
export * from "./InboxItemStatus";
|
|
110
112
|
export * from "./InboxItemType";
|
|
113
|
+
export * from "./InitializeConversationResponse";
|
|
111
114
|
export * from "./IntelligentFieldCondition";
|
|
112
115
|
export * from "./IntelligentFieldPrecondition";
|
|
113
116
|
export * from "./IntelligentFieldPreconditionResponse";
|
|
114
117
|
export * from "./IntelligentFieldValueResponse";
|
|
115
118
|
export * from "./IpInfo";
|
|
119
|
+
export * from "./JsonSchemaSettingsSchemaEntry";
|
|
116
120
|
export * from "./KnowledgeContextByEntities";
|
|
117
121
|
export * from "./KnowledgeContextByEntityTypes";
|
|
118
122
|
export * from "./KnowledgeContextFilter";
|
|
@@ -147,6 +151,8 @@ export * from "./PreconditionGroupOperator";
|
|
|
147
151
|
export * from "./PreconditionGroupResponse";
|
|
148
152
|
export * from "./PreconditionOperator";
|
|
149
153
|
export * from "./PreconditionResponse";
|
|
154
|
+
export * from "./PresenceCondition";
|
|
155
|
+
export * from "./PresenceOperator";
|
|
150
156
|
export * from "./Quality";
|
|
151
157
|
export * from "./QualityReason";
|
|
152
158
|
export * from "./ResolutionStatus";
|
|
@@ -179,10 +185,12 @@ export * from "./StringCondition";
|
|
|
179
185
|
export * from "./StringMembershipCondition";
|
|
180
186
|
export * from "./StringMembershipOperator";
|
|
181
187
|
export * from "./SurveyInfo";
|
|
188
|
+
export * from "./SwitchSettingsSchemaEntry";
|
|
182
189
|
export * from "./SystemEvent";
|
|
183
190
|
export * from "./SystemEventName";
|
|
184
191
|
export * from "./TagsPrecondition";
|
|
185
192
|
export * from "./TextSettingsSchemaEntry";
|
|
193
|
+
export * from "./UniversalCondition";
|
|
186
194
|
export * from "./UserConversationMessageType";
|
|
187
195
|
export * from "./UserData";
|
|
188
196
|
export * from "./UserDataWithReference";
|
|
@@ -75,6 +75,8 @@ __exportStar(require("./ContextInfo"), exports);
|
|
|
75
75
|
__exportStar(require("./ConversationAnalysis"), exports);
|
|
76
76
|
__exportStar(require("./ConversationExecutedActionPrecondition"), exports);
|
|
77
77
|
__exportStar(require("./ConversationInformation"), exports);
|
|
78
|
+
__exportStar(require("./ConversationKickoffResult"), exports);
|
|
79
|
+
__exportStar(require("./ConversationKickoffStatus"), exports);
|
|
78
80
|
__exportStar(require("./ConversationMessageBase"), exports);
|
|
79
81
|
__exportStar(require("./ConversationMessageResponse"), exports);
|
|
80
82
|
__exportStar(require("./ConversationPrecondition"), exports);
|
|
@@ -124,11 +126,13 @@ __exportStar(require("./InboxItemMissingKnowledge"), exports);
|
|
|
124
126
|
__exportStar(require("./InboxItemSeverity"), exports);
|
|
125
127
|
__exportStar(require("./InboxItemStatus"), exports);
|
|
126
128
|
__exportStar(require("./InboxItemType"), exports);
|
|
129
|
+
__exportStar(require("./InitializeConversationResponse"), exports);
|
|
127
130
|
__exportStar(require("./IntelligentFieldCondition"), exports);
|
|
128
131
|
__exportStar(require("./IntelligentFieldPrecondition"), exports);
|
|
129
132
|
__exportStar(require("./IntelligentFieldPreconditionResponse"), exports);
|
|
130
133
|
__exportStar(require("./IntelligentFieldValueResponse"), exports);
|
|
131
134
|
__exportStar(require("./IpInfo"), exports);
|
|
135
|
+
__exportStar(require("./JsonSchemaSettingsSchemaEntry"), exports);
|
|
132
136
|
__exportStar(require("./KnowledgeContextByEntities"), exports);
|
|
133
137
|
__exportStar(require("./KnowledgeContextByEntityTypes"), exports);
|
|
134
138
|
__exportStar(require("./KnowledgeContextFilter"), exports);
|
|
@@ -163,6 +167,8 @@ __exportStar(require("./PreconditionGroupOperator"), exports);
|
|
|
163
167
|
__exportStar(require("./PreconditionGroupResponse"), exports);
|
|
164
168
|
__exportStar(require("./PreconditionOperator"), exports);
|
|
165
169
|
__exportStar(require("./PreconditionResponse"), exports);
|
|
170
|
+
__exportStar(require("./PresenceCondition"), exports);
|
|
171
|
+
__exportStar(require("./PresenceOperator"), exports);
|
|
166
172
|
__exportStar(require("./Quality"), exports);
|
|
167
173
|
__exportStar(require("./QualityReason"), exports);
|
|
168
174
|
__exportStar(require("./ResolutionStatus"), exports);
|
|
@@ -195,10 +201,12 @@ __exportStar(require("./StringCondition"), exports);
|
|
|
195
201
|
__exportStar(require("./StringMembershipCondition"), exports);
|
|
196
202
|
__exportStar(require("./StringMembershipOperator"), exports);
|
|
197
203
|
__exportStar(require("./SurveyInfo"), exports);
|
|
204
|
+
__exportStar(require("./SwitchSettingsSchemaEntry"), exports);
|
|
198
205
|
__exportStar(require("./SystemEvent"), exports);
|
|
199
206
|
__exportStar(require("./SystemEventName"), exports);
|
|
200
207
|
__exportStar(require("./TagsPrecondition"), exports);
|
|
201
208
|
__exportStar(require("./TextSettingsSchemaEntry"), exports);
|
|
209
|
+
__exportStar(require("./UniversalCondition"), exports);
|
|
202
210
|
__exportStar(require("./UserConversationMessageType"), exports);
|
|
203
211
|
__exportStar(require("./UserData"), exports);
|
|
204
212
|
__exportStar(require("./UserDataWithReference"), exports);
|
|
@@ -45,4 +45,5 @@ exports.AskRequest = core.serialization.object({
|
|
|
45
45
|
attachments: core.serialization.list(AttachmentRequest_1.AttachmentRequest).optional(),
|
|
46
46
|
transientData: core.serialization.record(core.serialization.string(), core.serialization.string()).optional(),
|
|
47
47
|
timezone: core.serialization.string().optional(),
|
|
48
|
+
appMetadata: core.serialization.record(core.serialization.string(), core.serialization.string()).optional(),
|
|
48
49
|
});
|
|
@@ -3,5 +3,5 @@ import * as core from "../../../../core";
|
|
|
3
3
|
import type * as serializers from "../../../index";
|
|
4
4
|
export declare const ConversationField: core.serialization.Schema<serializers.ConversationField.Raw, MavenAGI.ConversationField>;
|
|
5
5
|
export declare namespace ConversationField {
|
|
6
|
-
type Raw = "Category" | "FirstResponseTime" | "HandleTime" | "HumanAgents" | "HumanAgentsWithInserts" | "App" | "Sentiment" | "QualityReason" | "ResolutionStatus" | "ResolvedByMaven" | "Quality" | "Users" | "ResponseLength" | "ThumbsUpCount" | "ThumbsDownCount" | "InsertCount" | "Tags" | "UserMessageCount" | "BotMessageCount" | "Languages" | "Actions" | "IncompleteActions" | "Sources" | "CreatedAt" | "PredictedNPS" | "Csat" | "OrganizationId" | "AgentId" | "InboxItems" | "InvolvedApps";
|
|
6
|
+
type Raw = "Category" | "FirstResponseTime" | "HandleTime" | "HumanAgents" | "HumanAgentsWithInserts" | "App" | "Sentiment" | "QualityReason" | "ResolutionStatus" | "ResolvedByMaven" | "Quality" | "Users" | "ResponseLength" | "ThumbsUpCount" | "ThumbsDownCount" | "InsertCount" | "Tags" | "UserMessageCount" | "BotMessageCount" | "Languages" | "Actions" | "IncompleteActions" | "Charters" | "Sources" | "CreatedAt" | "PredictedNPS" | "Csat" | "OrganizationId" | "AgentId" | "InboxItems" | "InvolvedApps";
|
|
7
7
|
}
|
|
@@ -3,5 +3,5 @@ import * as core from "../../../../core";
|
|
|
3
3
|
import type * as serializers from "../../../index";
|
|
4
4
|
export declare const KnowledgeBaseIndexingStatus: core.serialization.Schema<serializers.KnowledgeBaseIndexingStatus.Raw, MavenAGI.KnowledgeBaseIndexingStatus>;
|
|
5
5
|
export declare namespace KnowledgeBaseIndexingStatus {
|
|
6
|
-
type Raw = "BUILDING" | "INDEXING" | "INDEXED" | "PUBLISHED" | "FAILED" | "SUPERSEDED";
|
|
6
|
+
type Raw = "BUILDING" | "INDEXING" | "INDEXED" | "PUBLISHED" | "ROLLING_BACK" | "FAILED" | "SUPERSEDED" | "ROLLED_BACK";
|
|
7
7
|
}
|
|
@@ -36,4 +36,13 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
36
36
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
37
|
exports.KnowledgeBaseIndexingStatus = void 0;
|
|
38
38
|
const core = __importStar(require("../../../../core"));
|
|
39
|
-
exports.KnowledgeBaseIndexingStatus = core.serialization.forwardCompatibleEnum_([
|
|
39
|
+
exports.KnowledgeBaseIndexingStatus = core.serialization.forwardCompatibleEnum_([
|
|
40
|
+
"BUILDING",
|
|
41
|
+
"INDEXING",
|
|
42
|
+
"INDEXED",
|
|
43
|
+
"PUBLISHED",
|
|
44
|
+
"ROLLING_BACK",
|
|
45
|
+
"FAILED",
|
|
46
|
+
"SUPERSEDED",
|
|
47
|
+
"ROLLED_BACK",
|
|
48
|
+
]);
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.2.
|
|
1
|
+
export declare const SDK_VERSION = "1.2.50";
|
package/version.js
CHANGED