@wildix/wda-insights-client 1.1.30 → 1.1.34
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/dist-cjs/WdaInsights.js +6 -0
- package/dist-cjs/commands/GetAnalysisSettingsCommand.js +21 -0
- package/dist-cjs/commands/PutAnalysisSettingsCommand.js +21 -0
- package/dist-cjs/commands/UpdateProjectionAnalysisSettingsCommand.js +21 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +7 -13
- package/dist-cjs/protocols/Aws_restJson1.js +107 -5
- package/dist-es/WdaInsights.js +6 -0
- package/dist-es/commands/GetAnalysisSettingsCommand.js +17 -0
- package/dist-es/commands/PutAnalysisSettingsCommand.js +17 -0
- package/dist-es/commands/UpdateProjectionAnalysisSettingsCommand.js +17 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +5 -11
- package/dist-es/protocols/Aws_restJson1.js +98 -2
- package/dist-types/WdaInsights.d.ts +23 -0
- package/dist-types/WdaInsightsClient.d.ts +5 -2
- package/dist-types/commands/CreateProjectionCommand.d.ts +10 -8
- package/dist-types/commands/DisableProjectionCommand.d.ts +5 -4
- package/dist-types/commands/EnableProjectionCommand.d.ts +5 -4
- package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +78 -0
- package/dist-types/commands/GetProjectionCommand.d.ts +5 -4
- package/dist-types/commands/ListConversationsCommand.d.ts +30 -22
- package/dist-types/commands/ListPlaylistItemsCommand.d.ts +30 -22
- package/dist-types/commands/ListProjectionsCommand.d.ts +5 -4
- package/dist-types/commands/ListWatchHistoryCommand.d.ts +30 -22
- package/dist-types/commands/PauseProjectionCommand.d.ts +5 -4
- package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +79 -0
- package/dist-types/commands/UpdateProjectionAnalysisSettingsCommand.d.ts +145 -0
- package/dist-types/commands/UpdateProjectionCommand.d.ts +8 -8
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +120 -78
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/package.json +1 -1
package/dist-cjs/WdaInsights.js
CHANGED
|
@@ -15,6 +15,7 @@ const DeleteProjectionCommand_1 = require("./commands/DeleteProjectionCommand");
|
|
|
15
15
|
const DeleteProjectionsCategoryCommand_1 = require("./commands/DeleteProjectionsCategoryCommand");
|
|
16
16
|
const DisableProjectionCommand_1 = require("./commands/DisableProjectionCommand");
|
|
17
17
|
const EnableProjectionCommand_1 = require("./commands/EnableProjectionCommand");
|
|
18
|
+
const GetAnalysisSettingsCommand_1 = require("./commands/GetAnalysisSettingsCommand");
|
|
18
19
|
const GetCallCharacteristicsCommand_1 = require("./commands/GetCallCharacteristicsCommand");
|
|
19
20
|
const GetCallInsightsCommand_1 = require("./commands/GetCallInsightsCommand");
|
|
20
21
|
const GetCallStateCommand_1 = require("./commands/GetCallStateCommand");
|
|
@@ -43,6 +44,7 @@ const ListPlaylistsCommand_1 = require("./commands/ListPlaylistsCommand");
|
|
|
43
44
|
const ListProjectionsCommand_1 = require("./commands/ListProjectionsCommand");
|
|
44
45
|
const ListWatchHistoryCommand_1 = require("./commands/ListWatchHistoryCommand");
|
|
45
46
|
const PauseProjectionCommand_1 = require("./commands/PauseProjectionCommand");
|
|
47
|
+
const PutAnalysisSettingsCommand_1 = require("./commands/PutAnalysisSettingsCommand");
|
|
46
48
|
const PutPlaylistItemCommand_1 = require("./commands/PutPlaylistItemCommand");
|
|
47
49
|
const QueryConversationsCountCommand_1 = require("./commands/QueryConversationsCountCommand");
|
|
48
50
|
const ScheduleCallSummaryGenerationCommand_1 = require("./commands/ScheduleCallSummaryGenerationCommand");
|
|
@@ -53,6 +55,7 @@ const UpdateFilterCommand_1 = require("./commands/UpdateFilterCommand");
|
|
|
53
55
|
const UpdatePinnedDashboardsCommand_1 = require("./commands/UpdatePinnedDashboardsCommand");
|
|
54
56
|
const UpdatePlaylistAccessCommand_1 = require("./commands/UpdatePlaylistAccessCommand");
|
|
55
57
|
const UpdatePlaylistCommand_1 = require("./commands/UpdatePlaylistCommand");
|
|
58
|
+
const UpdateProjectionAnalysisSettingsCommand_1 = require("./commands/UpdateProjectionAnalysisSettingsCommand");
|
|
56
59
|
const UpdateProjectionCommand_1 = require("./commands/UpdateProjectionCommand");
|
|
57
60
|
const UpdateProjectionsCategoryCommand_1 = require("./commands/UpdateProjectionsCategoryCommand");
|
|
58
61
|
const WatchCommand_1 = require("./commands/WatchCommand");
|
|
@@ -71,6 +74,7 @@ const commands = {
|
|
|
71
74
|
DeleteProjectionsCategoryCommand: DeleteProjectionsCategoryCommand_1.DeleteProjectionsCategoryCommand,
|
|
72
75
|
DisableProjectionCommand: DisableProjectionCommand_1.DisableProjectionCommand,
|
|
73
76
|
EnableProjectionCommand: EnableProjectionCommand_1.EnableProjectionCommand,
|
|
77
|
+
GetAnalysisSettingsCommand: GetAnalysisSettingsCommand_1.GetAnalysisSettingsCommand,
|
|
74
78
|
GetCallCharacteristicsCommand: GetCallCharacteristicsCommand_1.GetCallCharacteristicsCommand,
|
|
75
79
|
GetCallInsightsCommand: GetCallInsightsCommand_1.GetCallInsightsCommand,
|
|
76
80
|
GetCallStateCommand: GetCallStateCommand_1.GetCallStateCommand,
|
|
@@ -99,6 +103,7 @@ const commands = {
|
|
|
99
103
|
ListProjectionsCommand: ListProjectionsCommand_1.ListProjectionsCommand,
|
|
100
104
|
ListWatchHistoryCommand: ListWatchHistoryCommand_1.ListWatchHistoryCommand,
|
|
101
105
|
PauseProjectionCommand: PauseProjectionCommand_1.PauseProjectionCommand,
|
|
106
|
+
PutAnalysisSettingsCommand: PutAnalysisSettingsCommand_1.PutAnalysisSettingsCommand,
|
|
102
107
|
PutPlaylistItemCommand: PutPlaylistItemCommand_1.PutPlaylistItemCommand,
|
|
103
108
|
QueryConversationsCountCommand: QueryConversationsCountCommand_1.QueryConversationsCountCommand,
|
|
104
109
|
ScheduleCallSummaryGenerationCommand: ScheduleCallSummaryGenerationCommand_1.ScheduleCallSummaryGenerationCommand,
|
|
@@ -110,6 +115,7 @@ const commands = {
|
|
|
110
115
|
UpdatePlaylistCommand: UpdatePlaylistCommand_1.UpdatePlaylistCommand,
|
|
111
116
|
UpdatePlaylistAccessCommand: UpdatePlaylistAccessCommand_1.UpdatePlaylistAccessCommand,
|
|
112
117
|
UpdateProjectionCommand: UpdateProjectionCommand_1.UpdateProjectionCommand,
|
|
118
|
+
UpdateProjectionAnalysisSettingsCommand: UpdateProjectionAnalysisSettingsCommand_1.UpdateProjectionAnalysisSettingsCommand,
|
|
113
119
|
UpdateProjectionsCategoryCommand: UpdateProjectionsCategoryCommand_1.UpdateProjectionsCategoryCommand,
|
|
114
120
|
WatchCommand: WatchCommand_1.WatchCommand,
|
|
115
121
|
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetAnalysisSettingsCommand = exports.$Command = void 0;
|
|
4
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
class GetAnalysisSettingsCommand extends smithy_client_1.Command.classBuilder()
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [
|
|
11
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
+
];
|
|
13
|
+
})
|
|
14
|
+
.s("WdaInsights", "GetAnalysisSettings", {})
|
|
15
|
+
.n("WdaInsightsClient", "GetAnalysisSettingsCommand")
|
|
16
|
+
.f(void 0, void 0)
|
|
17
|
+
.ser(Aws_restJson1_1.se_GetAnalysisSettingsCommand)
|
|
18
|
+
.de(Aws_restJson1_1.de_GetAnalysisSettingsCommand)
|
|
19
|
+
.build() {
|
|
20
|
+
}
|
|
21
|
+
exports.GetAnalysisSettingsCommand = GetAnalysisSettingsCommand;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PutAnalysisSettingsCommand = exports.$Command = void 0;
|
|
4
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
class PutAnalysisSettingsCommand extends smithy_client_1.Command.classBuilder()
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [
|
|
11
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
+
];
|
|
13
|
+
})
|
|
14
|
+
.s("WdaInsights", "PutAnalysisSettings", {})
|
|
15
|
+
.n("WdaInsightsClient", "PutAnalysisSettingsCommand")
|
|
16
|
+
.f(void 0, void 0)
|
|
17
|
+
.ser(Aws_restJson1_1.se_PutAnalysisSettingsCommand)
|
|
18
|
+
.de(Aws_restJson1_1.de_PutAnalysisSettingsCommand)
|
|
19
|
+
.build() {
|
|
20
|
+
}
|
|
21
|
+
exports.PutAnalysisSettingsCommand = PutAnalysisSettingsCommand;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateProjectionAnalysisSettingsCommand = exports.$Command = void 0;
|
|
4
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
class UpdateProjectionAnalysisSettingsCommand extends smithy_client_1.Command.classBuilder()
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [
|
|
11
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
+
];
|
|
13
|
+
})
|
|
14
|
+
.s("WdaInsights", "UpdateProjectionAnalysisSettings", {})
|
|
15
|
+
.n("WdaInsightsClient", "UpdateProjectionAnalysisSettingsCommand")
|
|
16
|
+
.f(void 0, void 0)
|
|
17
|
+
.ser(Aws_restJson1_1.se_UpdateProjectionAnalysisSettingsCommand)
|
|
18
|
+
.de(Aws_restJson1_1.de_UpdateProjectionAnalysisSettingsCommand)
|
|
19
|
+
.build() {
|
|
20
|
+
}
|
|
21
|
+
exports.UpdateProjectionAnalysisSettingsCommand = UpdateProjectionAnalysisSettingsCommand;
|
|
@@ -14,6 +14,7 @@ tslib_1.__exportStar(require("./DeleteProjectionCommand"), exports);
|
|
|
14
14
|
tslib_1.__exportStar(require("./DeleteProjectionsCategoryCommand"), exports);
|
|
15
15
|
tslib_1.__exportStar(require("./DisableProjectionCommand"), exports);
|
|
16
16
|
tslib_1.__exportStar(require("./EnableProjectionCommand"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./GetAnalysisSettingsCommand"), exports);
|
|
17
18
|
tslib_1.__exportStar(require("./GetCallCharacteristicsCommand"), exports);
|
|
18
19
|
tslib_1.__exportStar(require("./GetCallInsightsCommand"), exports);
|
|
19
20
|
tslib_1.__exportStar(require("./GetCallStateCommand"), exports);
|
|
@@ -42,6 +43,7 @@ tslib_1.__exportStar(require("./ListPlaylistsCommand"), exports);
|
|
|
42
43
|
tslib_1.__exportStar(require("./ListProjectionsCommand"), exports);
|
|
43
44
|
tslib_1.__exportStar(require("./ListWatchHistoryCommand"), exports);
|
|
44
45
|
tslib_1.__exportStar(require("./PauseProjectionCommand"), exports);
|
|
46
|
+
tslib_1.__exportStar(require("./PutAnalysisSettingsCommand"), exports);
|
|
45
47
|
tslib_1.__exportStar(require("./PutPlaylistItemCommand"), exports);
|
|
46
48
|
tslib_1.__exportStar(require("./QueryConversationsCountCommand"), exports);
|
|
47
49
|
tslib_1.__exportStar(require("./ScheduleCallSummaryGenerationCommand"), exports);
|
|
@@ -53,5 +55,6 @@ tslib_1.__exportStar(require("./UpdatePinnedDashboardsCommand"), exports);
|
|
|
53
55
|
tslib_1.__exportStar(require("./UpdatePlaylistCommand"), exports);
|
|
54
56
|
tslib_1.__exportStar(require("./UpdatePlaylistAccessCommand"), exports);
|
|
55
57
|
tslib_1.__exportStar(require("./UpdateProjectionCommand"), exports);
|
|
58
|
+
tslib_1.__exportStar(require("./UpdateProjectionAnalysisSettingsCommand"), exports);
|
|
56
59
|
tslib_1.__exportStar(require("./UpdateProjectionsCategoryCommand"), exports);
|
|
57
60
|
tslib_1.__exportStar(require("./WatchCommand"), exports);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.PlaylistItemStatus = exports.ListConversationsItemEvent = exports.FileNotFoundException = exports.DownloadStrategy = exports.ConversationFileCategory = exports.InsightsReason =
|
|
3
|
+
exports.InsightsStatus = exports.FilterNotFoundException = exports.ProjectionStatus = exports.ProjectionParameter = exports.ProjectionCondition = exports.ProjectionEntityConditionValue = exports.PlaylistVisibility = exports.PlaylistPrincipal = exports.PlaylistPermission = exports.DashboardVisibility = exports.DashboardPrincipal = exports.DashboardPermission = exports.AggregationDateInterval = exports.ListConversationsFilterParticipant = exports.ConversationTarget = exports.ListConversationsFilterDate = exports.ListConversationsFilterPredefinedDateType = exports.ListConversationsFilterField = exports.AggregationDefinition = exports.ConferenceTranscriptionStatus = exports.ConferenceParticipantType = exports.ConferenceParticipantRole = exports.PbxLicenseType = exports.ConferenceDirection = exports.ChatTag = exports.ChatStatus = exports.ChatParticipantType = exports.ChatParticipantRole = exports.ChatDirection = exports.ChannelWhatsAppStatus = exports.ChannelContextSource = exports.ChannelContextEventAttendeeStatus = exports.ChannelType = exports.ChannelAccess = exports.RecordType = exports.CallFlowTranscriptionStatus = exports.License = exports.CallDevice = exports.CallParticipantType = exports.CallParticipantRole = exports.CallFlowAttachmentType = exports.CallFlowAttachment = exports.CallRecordPauseReason = exports.CallFlowAttachmentStatus = exports.CallRecordOwner = exports.ConversationStatus = exports.CallDirection = exports.ValidationException = exports.NotFoundException = exports.ForbiddenException = void 0;
|
|
4
|
+
exports.PlaylistItemStatus = exports.ListConversationsItemEvent = exports.FileNotFoundException = exports.DownloadStrategy = exports.ConversationFileCategory = exports.InsightsReason = void 0;
|
|
5
5
|
const WdaInsightsServiceException_1 = require("./WdaInsightsServiceException");
|
|
6
6
|
class ForbiddenException extends WdaInsightsServiceException_1.WdaInsightsServiceException {
|
|
7
7
|
name = "ForbiddenException";
|
|
@@ -65,11 +65,6 @@ exports.CallRecordPauseReason = {
|
|
|
65
65
|
HOLD: "hold",
|
|
66
66
|
PAUSE: "pause",
|
|
67
67
|
};
|
|
68
|
-
exports.CallFlowTranscriptionStatus = {
|
|
69
|
-
AVAILABLE: "AVAILABLE",
|
|
70
|
-
POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
|
|
71
|
-
UNAVAILABLE: "UNAVAILABLE",
|
|
72
|
-
};
|
|
73
68
|
var CallFlowAttachment;
|
|
74
69
|
(function (CallFlowAttachment) {
|
|
75
70
|
CallFlowAttachment.visit = (value, visitor) => {
|
|
@@ -79,14 +74,11 @@ var CallFlowAttachment;
|
|
|
79
74
|
return visitor.fax(value.fax);
|
|
80
75
|
if (value.voicemail !== undefined)
|
|
81
76
|
return visitor.voicemail(value.voicemail);
|
|
82
|
-
if (value.transcription !== undefined)
|
|
83
|
-
return visitor.transcription(value.transcription);
|
|
84
77
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
85
78
|
};
|
|
86
79
|
})(CallFlowAttachment || (exports.CallFlowAttachment = CallFlowAttachment = {}));
|
|
87
80
|
exports.CallFlowAttachmentType = {
|
|
88
81
|
FAX: "FAX",
|
|
89
|
-
TRANSCRIPTION: "TRANSCRIPTION",
|
|
90
82
|
VOICEMAIL: "VOICEMAIL",
|
|
91
83
|
};
|
|
92
84
|
exports.CallParticipantRole = {
|
|
@@ -113,6 +105,11 @@ exports.License = {
|
|
|
113
105
|
UC: "uc",
|
|
114
106
|
XBEES: "x-bees",
|
|
115
107
|
};
|
|
108
|
+
exports.CallFlowTranscriptionStatus = {
|
|
109
|
+
AVAILABLE: "AVAILABLE",
|
|
110
|
+
POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
|
|
111
|
+
UNAVAILABLE: "UNAVAILABLE",
|
|
112
|
+
};
|
|
116
113
|
exports.RecordType = {
|
|
117
114
|
CALL: "call",
|
|
118
115
|
CALL_TRANSCRIPTION: "call_transcription",
|
|
@@ -396,9 +393,6 @@ var ProjectionParameter;
|
|
|
396
393
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
397
394
|
};
|
|
398
395
|
})(ProjectionParameter || (exports.ProjectionParameter = ProjectionParameter = {}));
|
|
399
|
-
exports.ProjectionProvider = {
|
|
400
|
-
OPENAI: "OPENAI",
|
|
401
|
-
};
|
|
402
396
|
exports.ProjectionStatus = {
|
|
403
397
|
DISABLED: "DISABLED",
|
|
404
398
|
ENABLED: "ENABLED",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.de_WatchCommand = exports.de_UpdateProjectionsCategoryCommand = exports.de_UpdateProjectionCommand = exports.de_UpdatePlaylistAccessCommand = exports.de_UpdatePlaylistCommand = exports.de_UpdatePinnedDashboardsCommand = exports.de_UpdateFilterCommand = exports.de_UpdateDashboardAccessCommand = void 0;
|
|
3
|
+
exports.se_UpdateFilterCommand = exports.se_UpdateDashboardAccessCommand = exports.se_UpdateDashboardCommand = exports.se_ScheduleConferenceSummaryGenerationCommand = exports.se_ScheduleCallSummaryGenerationCommand = exports.se_QueryConversationsCountCommand = exports.se_PutPlaylistItemCommand = exports.se_PutAnalysisSettingsCommand = exports.se_PauseProjectionCommand = exports.se_ListWatchHistoryCommand = exports.se_ListProjectionsCommand = exports.se_ListPlaylistsCommand = exports.se_ListPlaylistItemsCommand = exports.se_ListPinnedDashboardsCommand = exports.se_ListFiltersCommand = exports.se_ListDashboardsCommand = exports.se_ListConversationsNestedAggregationsCommand = exports.se_ListConversationsInsightsAggregationsCommand = exports.se_ListConversationsInsightsCommand = exports.se_ListConversationsAggregationsCommand = exports.se_ListConversationsCommand = exports.se_GetProjectionCommand = exports.se_GetPlaylistCommand = exports.se_GetDashboardCommand = exports.se_GetConferenceTimeFramesCommand = exports.se_GetConferenceSummaryCommand = exports.se_GetConferenceStateCommand = exports.se_GetConferenceRecordingPresignedDownloadUrlCommand = exports.se_GetConferenceInsightsCommand = exports.se_GetChatSummaryCommand = exports.se_GetChatStateCommand = exports.se_GetChatInsightsCommand = exports.se_GetCallSummaryCommand = exports.se_GetCallStateCommand = exports.se_GetCallInsightsCommand = exports.se_GetCallCharacteristicsCommand = exports.se_GetAnalysisSettingsCommand = exports.se_EnableProjectionCommand = exports.se_DisableProjectionCommand = exports.se_DeleteProjectionsCategoryCommand = exports.se_DeleteProjectionCommand = exports.se_DeletePlaylistItemCommand = exports.se_DeletePlaylistCommand = exports.se_DeleteFilterCommand = exports.se_DeleteDashboardCommand = exports.se_CreateProjectionsCategoryCommand = exports.se_CreateProjectionCommand = exports.se_CreatePlaylistCommand = exports.se_CreateFilterCommand = exports.se_CreateDashboardCommand = void 0;
|
|
4
|
+
exports.de_PutAnalysisSettingsCommand = exports.de_PauseProjectionCommand = exports.de_ListWatchHistoryCommand = exports.de_ListProjectionsCommand = exports.de_ListPlaylistsCommand = exports.de_ListPlaylistItemsCommand = exports.de_ListPinnedDashboardsCommand = exports.de_ListFiltersCommand = exports.de_ListDashboardsCommand = exports.de_ListConversationsNestedAggregationsCommand = exports.de_ListConversationsInsightsAggregationsCommand = exports.de_ListConversationsInsightsCommand = exports.de_ListConversationsAggregationsCommand = exports.de_ListConversationsCommand = exports.de_GetProjectionCommand = exports.de_GetPlaylistCommand = exports.de_GetDashboardCommand = exports.de_GetConferenceTimeFramesCommand = exports.de_GetConferenceSummaryCommand = exports.de_GetConferenceStateCommand = exports.de_GetConferenceRecordingPresignedDownloadUrlCommand = exports.de_GetConferenceInsightsCommand = exports.de_GetChatSummaryCommand = exports.de_GetChatStateCommand = exports.de_GetChatInsightsCommand = exports.de_GetCallSummaryCommand = exports.de_GetCallStateCommand = exports.de_GetCallInsightsCommand = exports.de_GetCallCharacteristicsCommand = exports.de_GetAnalysisSettingsCommand = exports.de_EnableProjectionCommand = exports.de_DisableProjectionCommand = exports.de_DeleteProjectionsCategoryCommand = exports.de_DeleteProjectionCommand = exports.de_DeletePlaylistItemCommand = exports.de_DeletePlaylistCommand = exports.de_DeleteFilterCommand = exports.de_DeleteDashboardCommand = exports.de_CreateProjectionsCategoryCommand = exports.de_CreateProjectionCommand = exports.de_CreatePlaylistCommand = exports.de_CreateFilterCommand = exports.de_CreateDashboardCommand = exports.se_WatchCommand = exports.se_UpdateProjectionsCategoryCommand = exports.se_UpdateProjectionAnalysisSettingsCommand = exports.se_UpdateProjectionCommand = exports.se_UpdatePlaylistAccessCommand = exports.se_UpdatePlaylistCommand = exports.se_UpdatePinnedDashboardsCommand = void 0;
|
|
5
|
+
exports.de_WatchCommand = exports.de_UpdateProjectionsCategoryCommand = exports.de_UpdateProjectionAnalysisSettingsCommand = exports.de_UpdateProjectionCommand = exports.de_UpdatePlaylistAccessCommand = exports.de_UpdatePlaylistCommand = exports.de_UpdatePinnedDashboardsCommand = exports.de_UpdateFilterCommand = exports.de_UpdateDashboardAccessCommand = exports.de_UpdateDashboardCommand = exports.de_ScheduleConferenceSummaryGenerationCommand = exports.de_ScheduleCallSummaryGenerationCommand = exports.de_QueryConversationsCountCommand = exports.de_PutPlaylistItemCommand = void 0;
|
|
6
6
|
const WdaInsightsServiceException_1 = require("../models/WdaInsightsServiceException");
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const core_1 = require("@aws-sdk/core");
|
|
@@ -87,9 +87,10 @@ const se_CreateProjectionCommand = async (input, context) => {
|
|
|
87
87
|
'conditions': _ => (0, smithy_client_1._json)(_),
|
|
88
88
|
'description': [],
|
|
89
89
|
'fields': _ => (0, smithy_client_1._json)(_),
|
|
90
|
+
'group': [],
|
|
90
91
|
'id': [],
|
|
91
92
|
'instructions': [],
|
|
92
|
-
'model':
|
|
93
|
+
'model': [],
|
|
93
94
|
'name': [],
|
|
94
95
|
}));
|
|
95
96
|
b.m("POST")
|
|
@@ -252,6 +253,21 @@ const se_EnableProjectionCommand = async (input, context) => {
|
|
|
252
253
|
return b.build();
|
|
253
254
|
};
|
|
254
255
|
exports.se_EnableProjectionCommand = se_EnableProjectionCommand;
|
|
256
|
+
const se_GetAnalysisSettingsCommand = async (input, context) => {
|
|
257
|
+
const b = (0, core_2.requestBuilder)(input, context);
|
|
258
|
+
const headers = {};
|
|
259
|
+
b.bp("/v2/insights/analysis/settings");
|
|
260
|
+
const query = (0, smithy_client_1.map)({
|
|
261
|
+
[_c]: [, input[_c]],
|
|
262
|
+
});
|
|
263
|
+
let body;
|
|
264
|
+
b.m("GET")
|
|
265
|
+
.h(headers)
|
|
266
|
+
.q(query)
|
|
267
|
+
.b(body);
|
|
268
|
+
return b.build();
|
|
269
|
+
};
|
|
270
|
+
exports.se_GetAnalysisSettingsCommand = se_GetAnalysisSettingsCommand;
|
|
255
271
|
const se_GetCallCharacteristicsCommand = async (input, context) => {
|
|
256
272
|
const b = (0, core_2.requestBuilder)(input, context);
|
|
257
273
|
const headers = {};
|
|
@@ -738,6 +754,26 @@ const se_PauseProjectionCommand = async (input, context) => {
|
|
|
738
754
|
return b.build();
|
|
739
755
|
};
|
|
740
756
|
exports.se_PauseProjectionCommand = se_PauseProjectionCommand;
|
|
757
|
+
const se_PutAnalysisSettingsCommand = async (input, context) => {
|
|
758
|
+
const b = (0, core_2.requestBuilder)(input, context);
|
|
759
|
+
const headers = {
|
|
760
|
+
'content-type': 'application/json',
|
|
761
|
+
};
|
|
762
|
+
b.bp("/v2/insights/analysis/settings");
|
|
763
|
+
const query = (0, smithy_client_1.map)({
|
|
764
|
+
[_c]: [, input[_c]],
|
|
765
|
+
});
|
|
766
|
+
let body;
|
|
767
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
768
|
+
'defaultModel': [],
|
|
769
|
+
}));
|
|
770
|
+
b.m("PUT")
|
|
771
|
+
.h(headers)
|
|
772
|
+
.q(query)
|
|
773
|
+
.b(body);
|
|
774
|
+
return b.build();
|
|
775
|
+
};
|
|
776
|
+
exports.se_PutAnalysisSettingsCommand = se_PutAnalysisSettingsCommand;
|
|
741
777
|
const se_PutPlaylistItemCommand = async (input, context) => {
|
|
742
778
|
const b = (0, core_2.requestBuilder)(input, context);
|
|
743
779
|
const headers = {
|
|
@@ -963,7 +999,6 @@ const se_UpdateProjectionCommand = async (input, context) => {
|
|
|
963
999
|
'description': [],
|
|
964
1000
|
'fields': _ => (0, smithy_client_1._json)(_),
|
|
965
1001
|
'instructions': [],
|
|
966
|
-
'model': _ => (0, smithy_client_1._json)(_),
|
|
967
1002
|
'name': [],
|
|
968
1003
|
}));
|
|
969
1004
|
b.m("PUT")
|
|
@@ -973,6 +1008,28 @@ const se_UpdateProjectionCommand = async (input, context) => {
|
|
|
973
1008
|
return b.build();
|
|
974
1009
|
};
|
|
975
1010
|
exports.se_UpdateProjectionCommand = se_UpdateProjectionCommand;
|
|
1011
|
+
const se_UpdateProjectionAnalysisSettingsCommand = async (input, context) => {
|
|
1012
|
+
const b = (0, core_2.requestBuilder)(input, context);
|
|
1013
|
+
const headers = {
|
|
1014
|
+
'content-type': 'application/json',
|
|
1015
|
+
};
|
|
1016
|
+
b.bp("/v2/insights/projections/{id}/analysis-settings");
|
|
1017
|
+
b.p('id', () => input.id, '{id}', false);
|
|
1018
|
+
const query = (0, smithy_client_1.map)({
|
|
1019
|
+
[_c]: [, input[_c]],
|
|
1020
|
+
});
|
|
1021
|
+
let body;
|
|
1022
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
1023
|
+
'group': [],
|
|
1024
|
+
'model': [],
|
|
1025
|
+
}));
|
|
1026
|
+
b.m("PATCH")
|
|
1027
|
+
.h(headers)
|
|
1028
|
+
.q(query)
|
|
1029
|
+
.b(body);
|
|
1030
|
+
return b.build();
|
|
1031
|
+
};
|
|
1032
|
+
exports.se_UpdateProjectionAnalysisSettingsCommand = se_UpdateProjectionAnalysisSettingsCommand;
|
|
976
1033
|
const se_UpdateProjectionsCategoryCommand = async (input, context) => {
|
|
977
1034
|
const b = (0, core_2.requestBuilder)(input, context);
|
|
978
1035
|
const headers = {
|
|
@@ -1187,6 +1244,21 @@ const de_EnableProjectionCommand = async (output, context) => {
|
|
|
1187
1244
|
return contents;
|
|
1188
1245
|
};
|
|
1189
1246
|
exports.de_EnableProjectionCommand = de_EnableProjectionCommand;
|
|
1247
|
+
const de_GetAnalysisSettingsCommand = async (output, context) => {
|
|
1248
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1249
|
+
return de_CommandError(output, context);
|
|
1250
|
+
}
|
|
1251
|
+
const contents = (0, smithy_client_1.map)({
|
|
1252
|
+
$metadata: deserializeMetadata(output),
|
|
1253
|
+
});
|
|
1254
|
+
const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context))), "body");
|
|
1255
|
+
const doc = (0, smithy_client_1.take)(data, {
|
|
1256
|
+
'settings': smithy_client_1._json,
|
|
1257
|
+
});
|
|
1258
|
+
Object.assign(contents, doc);
|
|
1259
|
+
return contents;
|
|
1260
|
+
};
|
|
1261
|
+
exports.de_GetAnalysisSettingsCommand = de_GetAnalysisSettingsCommand;
|
|
1190
1262
|
const de_GetCallCharacteristicsCommand = async (output, context) => {
|
|
1191
1263
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1192
1264
|
return de_CommandError(output, context);
|
|
@@ -1624,6 +1696,21 @@ const de_PauseProjectionCommand = async (output, context) => {
|
|
|
1624
1696
|
return contents;
|
|
1625
1697
|
};
|
|
1626
1698
|
exports.de_PauseProjectionCommand = de_PauseProjectionCommand;
|
|
1699
|
+
const de_PutAnalysisSettingsCommand = async (output, context) => {
|
|
1700
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1701
|
+
return de_CommandError(output, context);
|
|
1702
|
+
}
|
|
1703
|
+
const contents = (0, smithy_client_1.map)({
|
|
1704
|
+
$metadata: deserializeMetadata(output),
|
|
1705
|
+
});
|
|
1706
|
+
const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context))), "body");
|
|
1707
|
+
const doc = (0, smithy_client_1.take)(data, {
|
|
1708
|
+
'settings': smithy_client_1._json,
|
|
1709
|
+
});
|
|
1710
|
+
Object.assign(contents, doc);
|
|
1711
|
+
return contents;
|
|
1712
|
+
};
|
|
1713
|
+
exports.de_PutAnalysisSettingsCommand = de_PutAnalysisSettingsCommand;
|
|
1627
1714
|
const de_PutPlaylistItemCommand = async (output, context) => {
|
|
1628
1715
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1629
1716
|
return de_CommandError(output, context);
|
|
@@ -1773,6 +1860,21 @@ const de_UpdateProjectionCommand = async (output, context) => {
|
|
|
1773
1860
|
return contents;
|
|
1774
1861
|
};
|
|
1775
1862
|
exports.de_UpdateProjectionCommand = de_UpdateProjectionCommand;
|
|
1863
|
+
const de_UpdateProjectionAnalysisSettingsCommand = async (output, context) => {
|
|
1864
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1865
|
+
return de_CommandError(output, context);
|
|
1866
|
+
}
|
|
1867
|
+
const contents = (0, smithy_client_1.map)({
|
|
1868
|
+
$metadata: deserializeMetadata(output),
|
|
1869
|
+
});
|
|
1870
|
+
const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context))), "body");
|
|
1871
|
+
const doc = (0, smithy_client_1.take)(data, {
|
|
1872
|
+
'projection': smithy_client_1._json,
|
|
1873
|
+
});
|
|
1874
|
+
Object.assign(contents, doc);
|
|
1875
|
+
return contents;
|
|
1876
|
+
};
|
|
1877
|
+
exports.de_UpdateProjectionAnalysisSettingsCommand = de_UpdateProjectionAnalysisSettingsCommand;
|
|
1776
1878
|
const de_UpdateProjectionsCategoryCommand = async (output, context) => {
|
|
1777
1879
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1778
1880
|
return de_CommandError(output, context);
|
package/dist-es/WdaInsights.js
CHANGED
|
@@ -12,6 +12,7 @@ import { DeleteProjectionCommand, } from "./commands/DeleteProjectionCommand";
|
|
|
12
12
|
import { DeleteProjectionsCategoryCommand, } from "./commands/DeleteProjectionsCategoryCommand";
|
|
13
13
|
import { DisableProjectionCommand, } from "./commands/DisableProjectionCommand";
|
|
14
14
|
import { EnableProjectionCommand, } from "./commands/EnableProjectionCommand";
|
|
15
|
+
import { GetAnalysisSettingsCommand, } from "./commands/GetAnalysisSettingsCommand";
|
|
15
16
|
import { GetCallCharacteristicsCommand, } from "./commands/GetCallCharacteristicsCommand";
|
|
16
17
|
import { GetCallInsightsCommand, } from "./commands/GetCallInsightsCommand";
|
|
17
18
|
import { GetCallStateCommand, } from "./commands/GetCallStateCommand";
|
|
@@ -40,6 +41,7 @@ import { ListPlaylistsCommand, } from "./commands/ListPlaylistsCommand";
|
|
|
40
41
|
import { ListProjectionsCommand, } from "./commands/ListProjectionsCommand";
|
|
41
42
|
import { ListWatchHistoryCommand, } from "./commands/ListWatchHistoryCommand";
|
|
42
43
|
import { PauseProjectionCommand, } from "./commands/PauseProjectionCommand";
|
|
44
|
+
import { PutAnalysisSettingsCommand, } from "./commands/PutAnalysisSettingsCommand";
|
|
43
45
|
import { PutPlaylistItemCommand, } from "./commands/PutPlaylistItemCommand";
|
|
44
46
|
import { QueryConversationsCountCommand, } from "./commands/QueryConversationsCountCommand";
|
|
45
47
|
import { ScheduleCallSummaryGenerationCommand, } from "./commands/ScheduleCallSummaryGenerationCommand";
|
|
@@ -50,6 +52,7 @@ import { UpdateFilterCommand, } from "./commands/UpdateFilterCommand";
|
|
|
50
52
|
import { UpdatePinnedDashboardsCommand, } from "./commands/UpdatePinnedDashboardsCommand";
|
|
51
53
|
import { UpdatePlaylistAccessCommand, } from "./commands/UpdatePlaylistAccessCommand";
|
|
52
54
|
import { UpdatePlaylistCommand, } from "./commands/UpdatePlaylistCommand";
|
|
55
|
+
import { UpdateProjectionAnalysisSettingsCommand, } from "./commands/UpdateProjectionAnalysisSettingsCommand";
|
|
53
56
|
import { UpdateProjectionCommand, } from "./commands/UpdateProjectionCommand";
|
|
54
57
|
import { UpdateProjectionsCategoryCommand, } from "./commands/UpdateProjectionsCategoryCommand";
|
|
55
58
|
import { WatchCommand, } from "./commands/WatchCommand";
|
|
@@ -68,6 +71,7 @@ const commands = {
|
|
|
68
71
|
DeleteProjectionsCategoryCommand,
|
|
69
72
|
DisableProjectionCommand,
|
|
70
73
|
EnableProjectionCommand,
|
|
74
|
+
GetAnalysisSettingsCommand,
|
|
71
75
|
GetCallCharacteristicsCommand,
|
|
72
76
|
GetCallInsightsCommand,
|
|
73
77
|
GetCallStateCommand,
|
|
@@ -96,6 +100,7 @@ const commands = {
|
|
|
96
100
|
ListProjectionsCommand,
|
|
97
101
|
ListWatchHistoryCommand,
|
|
98
102
|
PauseProjectionCommand,
|
|
103
|
+
PutAnalysisSettingsCommand,
|
|
99
104
|
PutPlaylistItemCommand,
|
|
100
105
|
QueryConversationsCountCommand,
|
|
101
106
|
ScheduleCallSummaryGenerationCommand,
|
|
@@ -107,6 +112,7 @@ const commands = {
|
|
|
107
112
|
UpdatePlaylistCommand,
|
|
108
113
|
UpdatePlaylistAccessCommand,
|
|
109
114
|
UpdateProjectionCommand,
|
|
115
|
+
UpdateProjectionAnalysisSettingsCommand,
|
|
110
116
|
UpdateProjectionsCategoryCommand,
|
|
111
117
|
WatchCommand,
|
|
112
118
|
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetAnalysisSettingsCommand, se_GetAnalysisSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetAnalysisSettingsCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("WdaInsights", "GetAnalysisSettings", {})
|
|
12
|
+
.n("WdaInsightsClient", "GetAnalysisSettingsCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetAnalysisSettingsCommand)
|
|
15
|
+
.de(de_GetAnalysisSettingsCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_PutAnalysisSettingsCommand, se_PutAnalysisSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class PutAnalysisSettingsCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("WdaInsights", "PutAnalysisSettings", {})
|
|
12
|
+
.n("WdaInsightsClient", "PutAnalysisSettingsCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_PutAnalysisSettingsCommand)
|
|
15
|
+
.de(de_PutAnalysisSettingsCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_UpdateProjectionAnalysisSettingsCommand, se_UpdateProjectionAnalysisSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class UpdateProjectionAnalysisSettingsCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("WdaInsights", "UpdateProjectionAnalysisSettings", {})
|
|
12
|
+
.n("WdaInsightsClient", "UpdateProjectionAnalysisSettingsCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_UpdateProjectionAnalysisSettingsCommand)
|
|
15
|
+
.de(de_UpdateProjectionAnalysisSettingsCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -11,6 +11,7 @@ export * from "./DeleteProjectionCommand";
|
|
|
11
11
|
export * from "./DeleteProjectionsCategoryCommand";
|
|
12
12
|
export * from "./DisableProjectionCommand";
|
|
13
13
|
export * from "./EnableProjectionCommand";
|
|
14
|
+
export * from "./GetAnalysisSettingsCommand";
|
|
14
15
|
export * from "./GetCallCharacteristicsCommand";
|
|
15
16
|
export * from "./GetCallInsightsCommand";
|
|
16
17
|
export * from "./GetCallStateCommand";
|
|
@@ -39,6 +40,7 @@ export * from "./ListPlaylistsCommand";
|
|
|
39
40
|
export * from "./ListProjectionsCommand";
|
|
40
41
|
export * from "./ListWatchHistoryCommand";
|
|
41
42
|
export * from "./PauseProjectionCommand";
|
|
43
|
+
export * from "./PutAnalysisSettingsCommand";
|
|
42
44
|
export * from "./PutPlaylistItemCommand";
|
|
43
45
|
export * from "./QueryConversationsCountCommand";
|
|
44
46
|
export * from "./ScheduleCallSummaryGenerationCommand";
|
|
@@ -50,5 +52,6 @@ export * from "./UpdatePinnedDashboardsCommand";
|
|
|
50
52
|
export * from "./UpdatePlaylistCommand";
|
|
51
53
|
export * from "./UpdatePlaylistAccessCommand";
|
|
52
54
|
export * from "./UpdateProjectionCommand";
|
|
55
|
+
export * from "./UpdateProjectionAnalysisSettingsCommand";
|
|
53
56
|
export * from "./UpdateProjectionsCategoryCommand";
|
|
54
57
|
export * from "./WatchCommand";
|
|
@@ -58,11 +58,6 @@ export const CallRecordPauseReason = {
|
|
|
58
58
|
HOLD: "hold",
|
|
59
59
|
PAUSE: "pause",
|
|
60
60
|
};
|
|
61
|
-
export const CallFlowTranscriptionStatus = {
|
|
62
|
-
AVAILABLE: "AVAILABLE",
|
|
63
|
-
POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
|
|
64
|
-
UNAVAILABLE: "UNAVAILABLE",
|
|
65
|
-
};
|
|
66
61
|
export var CallFlowAttachment;
|
|
67
62
|
(function (CallFlowAttachment) {
|
|
68
63
|
CallFlowAttachment.visit = (value, visitor) => {
|
|
@@ -72,14 +67,11 @@ export var CallFlowAttachment;
|
|
|
72
67
|
return visitor.fax(value.fax);
|
|
73
68
|
if (value.voicemail !== undefined)
|
|
74
69
|
return visitor.voicemail(value.voicemail);
|
|
75
|
-
if (value.transcription !== undefined)
|
|
76
|
-
return visitor.transcription(value.transcription);
|
|
77
70
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
78
71
|
};
|
|
79
72
|
})(CallFlowAttachment || (CallFlowAttachment = {}));
|
|
80
73
|
export const CallFlowAttachmentType = {
|
|
81
74
|
FAX: "FAX",
|
|
82
|
-
TRANSCRIPTION: "TRANSCRIPTION",
|
|
83
75
|
VOICEMAIL: "VOICEMAIL",
|
|
84
76
|
};
|
|
85
77
|
export const CallParticipantRole = {
|
|
@@ -106,6 +98,11 @@ export const License = {
|
|
|
106
98
|
UC: "uc",
|
|
107
99
|
XBEES: "x-bees",
|
|
108
100
|
};
|
|
101
|
+
export const CallFlowTranscriptionStatus = {
|
|
102
|
+
AVAILABLE: "AVAILABLE",
|
|
103
|
+
POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
|
|
104
|
+
UNAVAILABLE: "UNAVAILABLE",
|
|
105
|
+
};
|
|
109
106
|
export const RecordType = {
|
|
110
107
|
CALL: "call",
|
|
111
108
|
CALL_TRANSCRIPTION: "call_transcription",
|
|
@@ -389,9 +386,6 @@ export var ProjectionParameter;
|
|
|
389
386
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
390
387
|
};
|
|
391
388
|
})(ProjectionParameter || (ProjectionParameter = {}));
|
|
392
|
-
export const ProjectionProvider = {
|
|
393
|
-
OPENAI: "OPENAI",
|
|
394
|
-
};
|
|
395
389
|
export const ProjectionStatus = {
|
|
396
390
|
DISABLED: "DISABLED",
|
|
397
391
|
ENABLED: "ENABLED",
|