@wildix/wda-insights-client 1.0.42 → 1.0.44

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.
Files changed (64) hide show
  1. package/dist-cjs/WdaInsights.js +28 -0
  2. package/dist-cjs/commands/CreateProjectionCommand.js +21 -0
  3. package/dist-cjs/commands/CreateProjectionsCategoryCommand.js +21 -0
  4. package/dist-cjs/commands/DeleteProjectionCommand.js +21 -0
  5. package/dist-cjs/commands/DeleteProjectionsCategoryCommand.js +21 -0
  6. package/dist-cjs/commands/DisableProjectionCommand.js +21 -0
  7. package/dist-cjs/commands/EnableProjectionCommand.js +21 -0
  8. package/dist-cjs/commands/GetCallInsightsCommand.js +21 -0
  9. package/dist-cjs/commands/GetConferenceInsightsCommand.js +21 -0
  10. package/dist-cjs/commands/GetProjectionCommand.js +21 -0
  11. package/dist-cjs/commands/ListConversationsInsightsCommand.js +21 -0
  12. package/dist-cjs/commands/ListProjectionsCommand.js +21 -0
  13. package/dist-cjs/commands/QueryConversationsCountCommand.js +21 -0
  14. package/dist-cjs/commands/UpdateProjectionCommand.js +21 -0
  15. package/dist-cjs/commands/UpdateProjectionsCategoryCommand.js +21 -0
  16. package/dist-cjs/commands/index.js +14 -0
  17. package/dist-cjs/models/models_0.js +60 -4
  18. package/dist-cjs/protocols/Aws_restJson1.js +522 -28
  19. package/dist-es/WdaInsights.js +28 -0
  20. package/dist-es/commands/CreateProjectionCommand.js +17 -0
  21. package/dist-es/commands/CreateProjectionsCategoryCommand.js +17 -0
  22. package/dist-es/commands/DeleteProjectionCommand.js +17 -0
  23. package/dist-es/commands/DeleteProjectionsCategoryCommand.js +17 -0
  24. package/dist-es/commands/DisableProjectionCommand.js +17 -0
  25. package/dist-es/commands/EnableProjectionCommand.js +17 -0
  26. package/dist-es/commands/GetCallInsightsCommand.js +17 -0
  27. package/dist-es/commands/GetConferenceInsightsCommand.js +17 -0
  28. package/dist-es/commands/GetProjectionCommand.js +17 -0
  29. package/dist-es/commands/ListConversationsInsightsCommand.js +17 -0
  30. package/dist-es/commands/ListProjectionsCommand.js +17 -0
  31. package/dist-es/commands/QueryConversationsCountCommand.js +17 -0
  32. package/dist-es/commands/UpdateProjectionCommand.js +17 -0
  33. package/dist-es/commands/UpdateProjectionsCategoryCommand.js +17 -0
  34. package/dist-es/commands/index.js +14 -0
  35. package/dist-es/models/models_0.js +59 -3
  36. package/dist-es/protocols/Aws_restJson1.js +493 -28
  37. package/dist-types/WdaInsights.d.ts +100 -0
  38. package/dist-types/WdaInsightsClient.d.ts +16 -2
  39. package/dist-types/commands/CreateProjectionCommand.d.ts +181 -0
  40. package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +81 -0
  41. package/dist-types/commands/DeleteProjectionCommand.d.ts +77 -0
  42. package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +77 -0
  43. package/dist-types/commands/DisableProjectionCommand.d.ts +134 -0
  44. package/dist-types/commands/EnableProjectionCommand.d.ts +134 -0
  45. package/dist-types/commands/GetCallInsightsCommand.d.ts +96 -0
  46. package/dist-types/commands/GetCallSummaryCommand.d.ts +4 -18
  47. package/dist-types/commands/GetConferenceInsightsCommand.d.ts +95 -0
  48. package/dist-types/commands/GetConferenceSummaryCommand.d.ts +4 -18
  49. package/dist-types/commands/GetConferenceTimeFramesCommand.d.ts +0 -4
  50. package/dist-types/commands/GetProjectionCommand.d.ts +132 -0
  51. package/dist-types/commands/ListConversationsCommand.d.ts +10 -1
  52. package/dist-types/commands/ListConversationsInsightsCommand.d.ts +218 -0
  53. package/dist-types/commands/ListProjectionsCommand.d.ts +139 -0
  54. package/dist-types/commands/QueryConversationsCountCommand.d.ts +133 -0
  55. package/dist-types/commands/ScheduleCallPostAnalysisCommand.d.ts +1 -0
  56. package/dist-types/commands/ScheduleCallSummaryGenerationCommand.d.ts +1 -4
  57. package/dist-types/commands/ScheduleConferencePostAnalysisCommand.d.ts +1 -0
  58. package/dist-types/commands/ScheduleConferenceSummaryGenerationCommand.d.ts +1 -4
  59. package/dist-types/commands/UpdateProjectionCommand.d.ts +183 -0
  60. package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +83 -0
  61. package/dist-types/commands/index.d.ts +14 -0
  62. package/dist-types/models/models_0.d.ts +736 -38
  63. package/dist-types/protocols/Aws_restJson1.d.ts +126 -0
  64. package/package.json +1 -1
@@ -3,35 +3,63 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.WdaInsights = void 0;
4
4
  const WdaInsightsClient_1 = require("./WdaInsightsClient");
5
5
  const CreateFilterCommand_1 = require("./commands/CreateFilterCommand");
6
+ const CreateProjectionCommand_1 = require("./commands/CreateProjectionCommand");
7
+ const CreateProjectionsCategoryCommand_1 = require("./commands/CreateProjectionsCategoryCommand");
6
8
  const DeleteFilterCommand_1 = require("./commands/DeleteFilterCommand");
9
+ const DeleteProjectionCommand_1 = require("./commands/DeleteProjectionCommand");
10
+ const DeleteProjectionsCategoryCommand_1 = require("./commands/DeleteProjectionsCategoryCommand");
11
+ const DisableProjectionCommand_1 = require("./commands/DisableProjectionCommand");
12
+ const EnableProjectionCommand_1 = require("./commands/EnableProjectionCommand");
7
13
  const GetCallCharacteristicsCommand_1 = require("./commands/GetCallCharacteristicsCommand");
14
+ const GetCallInsightsCommand_1 = require("./commands/GetCallInsightsCommand");
8
15
  const GetCallSummaryCommand_1 = require("./commands/GetCallSummaryCommand");
16
+ const GetConferenceInsightsCommand_1 = require("./commands/GetConferenceInsightsCommand");
9
17
  const GetConferenceRecordingPresignedDownloadUrlCommand_1 = require("./commands/GetConferenceRecordingPresignedDownloadUrlCommand");
10
18
  const GetConferenceSummaryCommand_1 = require("./commands/GetConferenceSummaryCommand");
11
19
  const GetConferenceTimeFramesCommand_1 = require("./commands/GetConferenceTimeFramesCommand");
20
+ const GetProjectionCommand_1 = require("./commands/GetProjectionCommand");
12
21
  const ListConversationsCommand_1 = require("./commands/ListConversationsCommand");
22
+ const ListConversationsInsightsCommand_1 = require("./commands/ListConversationsInsightsCommand");
13
23
  const ListFiltersCommand_1 = require("./commands/ListFiltersCommand");
24
+ const ListProjectionsCommand_1 = require("./commands/ListProjectionsCommand");
25
+ const QueryConversationsCountCommand_1 = require("./commands/QueryConversationsCountCommand");
14
26
  const ScheduleCallPostAnalysisCommand_1 = require("./commands/ScheduleCallPostAnalysisCommand");
15
27
  const ScheduleCallSummaryGenerationCommand_1 = require("./commands/ScheduleCallSummaryGenerationCommand");
16
28
  const ScheduleConferencePostAnalysisCommand_1 = require("./commands/ScheduleConferencePostAnalysisCommand");
17
29
  const ScheduleConferenceSummaryGenerationCommand_1 = require("./commands/ScheduleConferenceSummaryGenerationCommand");
18
30
  const UpdateFilterCommand_1 = require("./commands/UpdateFilterCommand");
31
+ const UpdateProjectionCommand_1 = require("./commands/UpdateProjectionCommand");
32
+ const UpdateProjectionsCategoryCommand_1 = require("./commands/UpdateProjectionsCategoryCommand");
19
33
  const smithy_client_1 = require("@smithy/smithy-client");
20
34
  const commands = {
21
35
  CreateFilterCommand: CreateFilterCommand_1.CreateFilterCommand,
36
+ CreateProjectionCommand: CreateProjectionCommand_1.CreateProjectionCommand,
37
+ CreateProjectionsCategoryCommand: CreateProjectionsCategoryCommand_1.CreateProjectionsCategoryCommand,
22
38
  DeleteFilterCommand: DeleteFilterCommand_1.DeleteFilterCommand,
39
+ DeleteProjectionCommand: DeleteProjectionCommand_1.DeleteProjectionCommand,
40
+ DeleteProjectionsCategoryCommand: DeleteProjectionsCategoryCommand_1.DeleteProjectionsCategoryCommand,
41
+ DisableProjectionCommand: DisableProjectionCommand_1.DisableProjectionCommand,
42
+ EnableProjectionCommand: EnableProjectionCommand_1.EnableProjectionCommand,
23
43
  GetCallCharacteristicsCommand: GetCallCharacteristicsCommand_1.GetCallCharacteristicsCommand,
44
+ GetCallInsightsCommand: GetCallInsightsCommand_1.GetCallInsightsCommand,
24
45
  GetCallSummaryCommand: GetCallSummaryCommand_1.GetCallSummaryCommand,
46
+ GetConferenceInsightsCommand: GetConferenceInsightsCommand_1.GetConferenceInsightsCommand,
25
47
  GetConferenceRecordingPresignedDownloadUrlCommand: GetConferenceRecordingPresignedDownloadUrlCommand_1.GetConferenceRecordingPresignedDownloadUrlCommand,
26
48
  GetConferenceSummaryCommand: GetConferenceSummaryCommand_1.GetConferenceSummaryCommand,
27
49
  GetConferenceTimeFramesCommand: GetConferenceTimeFramesCommand_1.GetConferenceTimeFramesCommand,
50
+ GetProjectionCommand: GetProjectionCommand_1.GetProjectionCommand,
28
51
  ListConversationsCommand: ListConversationsCommand_1.ListConversationsCommand,
52
+ ListConversationsInsightsCommand: ListConversationsInsightsCommand_1.ListConversationsInsightsCommand,
29
53
  ListFiltersCommand: ListFiltersCommand_1.ListFiltersCommand,
54
+ ListProjectionsCommand: ListProjectionsCommand_1.ListProjectionsCommand,
55
+ QueryConversationsCountCommand: QueryConversationsCountCommand_1.QueryConversationsCountCommand,
30
56
  ScheduleCallPostAnalysisCommand: ScheduleCallPostAnalysisCommand_1.ScheduleCallPostAnalysisCommand,
31
57
  ScheduleCallSummaryGenerationCommand: ScheduleCallSummaryGenerationCommand_1.ScheduleCallSummaryGenerationCommand,
32
58
  ScheduleConferencePostAnalysisCommand: ScheduleConferencePostAnalysisCommand_1.ScheduleConferencePostAnalysisCommand,
33
59
  ScheduleConferenceSummaryGenerationCommand: ScheduleConferenceSummaryGenerationCommand_1.ScheduleConferenceSummaryGenerationCommand,
34
60
  UpdateFilterCommand: UpdateFilterCommand_1.UpdateFilterCommand,
61
+ UpdateProjectionCommand: UpdateProjectionCommand_1.UpdateProjectionCommand,
62
+ UpdateProjectionsCategoryCommand: UpdateProjectionsCategoryCommand_1.UpdateProjectionsCategoryCommand,
35
63
  };
36
64
  class WdaInsights extends WdaInsightsClient_1.WdaInsightsClient {
37
65
  }
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateProjectionCommand = 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 CreateProjectionCommand 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", "CreateProjection", {})
15
+ .n("WdaInsightsClient", "CreateProjectionCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_CreateProjectionCommand)
18
+ .de(Aws_restJson1_1.de_CreateProjectionCommand)
19
+ .build() {
20
+ }
21
+ exports.CreateProjectionCommand = CreateProjectionCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateProjectionsCategoryCommand = 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 CreateProjectionsCategoryCommand 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", "CreateProjectionsCategory", {})
15
+ .n("WdaInsightsClient", "CreateProjectionsCategoryCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_CreateProjectionsCategoryCommand)
18
+ .de(Aws_restJson1_1.de_CreateProjectionsCategoryCommand)
19
+ .build() {
20
+ }
21
+ exports.CreateProjectionsCategoryCommand = CreateProjectionsCategoryCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteProjectionCommand = 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 DeleteProjectionCommand 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", "DeleteProjection", {})
15
+ .n("WdaInsightsClient", "DeleteProjectionCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_DeleteProjectionCommand)
18
+ .de(Aws_restJson1_1.de_DeleteProjectionCommand)
19
+ .build() {
20
+ }
21
+ exports.DeleteProjectionCommand = DeleteProjectionCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteProjectionsCategoryCommand = 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 DeleteProjectionsCategoryCommand 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", "DeleteProjectionsCategory", {})
15
+ .n("WdaInsightsClient", "DeleteProjectionsCategoryCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_DeleteProjectionsCategoryCommand)
18
+ .de(Aws_restJson1_1.de_DeleteProjectionsCategoryCommand)
19
+ .build() {
20
+ }
21
+ exports.DeleteProjectionsCategoryCommand = DeleteProjectionsCategoryCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DisableProjectionCommand = 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 DisableProjectionCommand 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", "DisableProjection", {})
15
+ .n("WdaInsightsClient", "DisableProjectionCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_DisableProjectionCommand)
18
+ .de(Aws_restJson1_1.de_DisableProjectionCommand)
19
+ .build() {
20
+ }
21
+ exports.DisableProjectionCommand = DisableProjectionCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EnableProjectionCommand = 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 EnableProjectionCommand 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", "EnableProjection", {})
15
+ .n("WdaInsightsClient", "EnableProjectionCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_EnableProjectionCommand)
18
+ .de(Aws_restJson1_1.de_EnableProjectionCommand)
19
+ .build() {
20
+ }
21
+ exports.EnableProjectionCommand = EnableProjectionCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetCallInsightsCommand = 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 GetCallInsightsCommand 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", "GetCallInsights", {})
15
+ .n("WdaInsightsClient", "GetCallInsightsCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_GetCallInsightsCommand)
18
+ .de(Aws_restJson1_1.de_GetCallInsightsCommand)
19
+ .build() {
20
+ }
21
+ exports.GetCallInsightsCommand = GetCallInsightsCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetConferenceInsightsCommand = 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 GetConferenceInsightsCommand 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", "GetConferenceInsights", {})
15
+ .n("WdaInsightsClient", "GetConferenceInsightsCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_GetConferenceInsightsCommand)
18
+ .de(Aws_restJson1_1.de_GetConferenceInsightsCommand)
19
+ .build() {
20
+ }
21
+ exports.GetConferenceInsightsCommand = GetConferenceInsightsCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetProjectionCommand = 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 GetProjectionCommand 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", "GetProjection", {})
15
+ .n("WdaInsightsClient", "GetProjectionCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_GetProjectionCommand)
18
+ .de(Aws_restJson1_1.de_GetProjectionCommand)
19
+ .build() {
20
+ }
21
+ exports.GetProjectionCommand = GetProjectionCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListConversationsInsightsCommand = 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 ListConversationsInsightsCommand 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", "ListConversationsInsights", {})
15
+ .n("WdaInsightsClient", "ListConversationsInsightsCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListConversationsInsightsCommand)
18
+ .de(Aws_restJson1_1.de_ListConversationsInsightsCommand)
19
+ .build() {
20
+ }
21
+ exports.ListConversationsInsightsCommand = ListConversationsInsightsCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListProjectionsCommand = 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 ListProjectionsCommand 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", "ListProjections", {})
15
+ .n("WdaInsightsClient", "ListProjectionsCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListProjectionsCommand)
18
+ .de(Aws_restJson1_1.de_ListProjectionsCommand)
19
+ .build() {
20
+ }
21
+ exports.ListProjectionsCommand = ListProjectionsCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.QueryConversationsCountCommand = 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 QueryConversationsCountCommand 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", "QueryConversationsCount", {})
15
+ .n("WdaInsightsClient", "QueryConversationsCountCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_QueryConversationsCountCommand)
18
+ .de(Aws_restJson1_1.de_QueryConversationsCountCommand)
19
+ .build() {
20
+ }
21
+ exports.QueryConversationsCountCommand = QueryConversationsCountCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateProjectionCommand = 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 UpdateProjectionCommand 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", "UpdateProjection", {})
15
+ .n("WdaInsightsClient", "UpdateProjectionCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_UpdateProjectionCommand)
18
+ .de(Aws_restJson1_1.de_UpdateProjectionCommand)
19
+ .build() {
20
+ }
21
+ exports.UpdateProjectionCommand = UpdateProjectionCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateProjectionsCategoryCommand = 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 UpdateProjectionsCategoryCommand 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", "UpdateProjectionsCategory", {})
15
+ .n("WdaInsightsClient", "UpdateProjectionsCategoryCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_UpdateProjectionsCategoryCommand)
18
+ .de(Aws_restJson1_1.de_UpdateProjectionsCategoryCommand)
19
+ .build() {
20
+ }
21
+ exports.UpdateProjectionsCategoryCommand = UpdateProjectionsCategoryCommand;
@@ -2,16 +2,30 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./CreateFilterCommand"), exports);
5
+ tslib_1.__exportStar(require("./CreateProjectionCommand"), exports);
6
+ tslib_1.__exportStar(require("./CreateProjectionsCategoryCommand"), exports);
5
7
  tslib_1.__exportStar(require("./DeleteFilterCommand"), exports);
8
+ tslib_1.__exportStar(require("./DeleteProjectionCommand"), exports);
9
+ tslib_1.__exportStar(require("./DeleteProjectionsCategoryCommand"), exports);
10
+ tslib_1.__exportStar(require("./DisableProjectionCommand"), exports);
11
+ tslib_1.__exportStar(require("./EnableProjectionCommand"), exports);
6
12
  tslib_1.__exportStar(require("./GetCallCharacteristicsCommand"), exports);
13
+ tslib_1.__exportStar(require("./GetCallInsightsCommand"), exports);
7
14
  tslib_1.__exportStar(require("./GetCallSummaryCommand"), exports);
15
+ tslib_1.__exportStar(require("./GetConferenceInsightsCommand"), exports);
8
16
  tslib_1.__exportStar(require("./GetConferenceRecordingPresignedDownloadUrlCommand"), exports);
9
17
  tslib_1.__exportStar(require("./GetConferenceSummaryCommand"), exports);
10
18
  tslib_1.__exportStar(require("./GetConferenceTimeFramesCommand"), exports);
19
+ tslib_1.__exportStar(require("./GetProjectionCommand"), exports);
11
20
  tslib_1.__exportStar(require("./ListConversationsCommand"), exports);
21
+ tslib_1.__exportStar(require("./ListConversationsInsightsCommand"), exports);
12
22
  tslib_1.__exportStar(require("./ListFiltersCommand"), exports);
23
+ tslib_1.__exportStar(require("./ListProjectionsCommand"), exports);
24
+ tslib_1.__exportStar(require("./QueryConversationsCountCommand"), exports);
13
25
  tslib_1.__exportStar(require("./ScheduleCallPostAnalysisCommand"), exports);
14
26
  tslib_1.__exportStar(require("./ScheduleCallSummaryGenerationCommand"), exports);
15
27
  tslib_1.__exportStar(require("./ScheduleConferencePostAnalysisCommand"), exports);
16
28
  tslib_1.__exportStar(require("./ScheduleConferenceSummaryGenerationCommand"), exports);
17
29
  tslib_1.__exportStar(require("./UpdateFilterCommand"), exports);
30
+ tslib_1.__exportStar(require("./UpdateProjectionCommand"), exports);
31
+ tslib_1.__exportStar(require("./UpdateProjectionsCategoryCommand"), exports);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListConversationsItemEvent = exports.ListConversationsFilterParticipant = exports.ListConversationsFilterDate = exports.ListConversationsFilterPredefinedDateType = exports.FileNotFoundException = exports.DownloadStrategy = exports.ConversationFileCategory = exports.InsightsQuality = exports.InsightsStatus = exports.FilterNotFoundException = exports.ConferenceTranscriptionStatus = exports.ConferenceParticipantType = exports.ConferenceParticipantRole = exports.PbxLicenseType = exports.ConferenceDirection = exports.RecordType = exports.CallFlowTranscriptionStatus = exports.License = exports.CallDevice = exports.CallParticipantType = exports.CallParticipantRole = exports.CallFlowAttachmentType = exports.CallFlowAttachment = exports.CallRecordPauseReason = exports.CallFlowAttachmentStatus = exports.CallRecordOwner = exports.ForbiddenException = exports.ConversationStatus = exports.CallDirection = exports.ValidationException = exports.NotFoundException = void 0;
3
+ exports.ListConversationsItemEvent = exports.ListConversationsFilterParticipant = exports.ListConversationsFilterDate = exports.ListConversationsFilterPredefinedDateType = exports.FileNotFoundException = exports.DownloadStrategy = exports.ConversationFileCategory = exports.InsightsReason = exports.InsightsStatus = exports.FilterNotFoundException = exports.ProjectionStatus = exports.ProjectionProvider = exports.ProjectionParameter = exports.ProjectionCondition = exports.AggregationDefinition = exports.ConferenceTranscriptionStatus = exports.ConferenceParticipantType = exports.ConferenceParticipantRole = exports.PbxLicenseType = exports.ConferenceDirection = exports.RecordType = exports.CallFlowTranscriptionStatus = exports.License = exports.CallDevice = exports.CallParticipantType = exports.CallParticipantRole = exports.CallFlowAttachmentType = exports.CallFlowAttachment = exports.CallRecordPauseReason = exports.CallFlowAttachmentStatus = exports.CallRecordOwner = exports.ForbiddenException = exports.ConversationStatus = exports.CallDirection = exports.ValidationException = exports.NotFoundException = void 0;
4
4
  const WdaInsightsServiceException_1 = require("./WdaInsightsServiceException");
5
5
  class NotFoundException extends WdaInsightsServiceException_1.WdaInsightsServiceException {
6
6
  name = "NotFoundException";
@@ -141,6 +141,61 @@ exports.ConferenceTranscriptionStatus = {
141
141
  AVAILABLE: "AVAILABLE",
142
142
  UNAVAILABLE: "UNAVAILABLE",
143
143
  };
144
+ var AggregationDefinition;
145
+ (function (AggregationDefinition) {
146
+ AggregationDefinition.visit = (value, visitor) => {
147
+ if (value.projection !== undefined)
148
+ return visitor.projection(value.projection);
149
+ if (value.direction !== undefined)
150
+ return visitor.direction(value.direction);
151
+ if (value.duration !== undefined)
152
+ return visitor.duration(value.duration);
153
+ if (value.service !== undefined)
154
+ return visitor.service(value.service);
155
+ if (value.extension !== undefined)
156
+ return visitor.extension(value.extension);
157
+ if (value.group !== undefined)
158
+ return visitor.group(value.group);
159
+ if (value.type !== undefined)
160
+ return visitor.type(value.type);
161
+ if (value.day !== undefined)
162
+ return visitor.day(value.day);
163
+ if (value.recorded !== undefined)
164
+ return visitor.recorded(value.recorded);
165
+ return visitor._(value.$unknown[0], value.$unknown[1]);
166
+ };
167
+ })(AggregationDefinition || (exports.AggregationDefinition = AggregationDefinition = {}));
168
+ var ProjectionCondition;
169
+ (function (ProjectionCondition) {
170
+ ProjectionCondition.visit = (value, visitor) => {
171
+ if (value.direction !== undefined)
172
+ return visitor.direction(value.direction);
173
+ if (value.participants !== undefined)
174
+ return visitor.participants(value.participants);
175
+ if (value.duration !== undefined)
176
+ return visitor.duration(value.duration);
177
+ return visitor._(value.$unknown[0], value.$unknown[1]);
178
+ };
179
+ })(ProjectionCondition || (exports.ProjectionCondition = ProjectionCondition = {}));
180
+ var ProjectionParameter;
181
+ (function (ProjectionParameter) {
182
+ ProjectionParameter.visit = (value, visitor) => {
183
+ if (value.text !== undefined)
184
+ return visitor.text(value.text);
185
+ if (value.multiline !== undefined)
186
+ return visitor.multiline(value.multiline);
187
+ if (value.selection !== undefined)
188
+ return visitor.selection(value.selection);
189
+ return visitor._(value.$unknown[0], value.$unknown[1]);
190
+ };
191
+ })(ProjectionParameter || (exports.ProjectionParameter = ProjectionParameter = {}));
192
+ exports.ProjectionProvider = {
193
+ OPENAI: "OPENAI",
194
+ };
195
+ exports.ProjectionStatus = {
196
+ DISABLED: "DISABLED",
197
+ ENABLED: "ENABLED",
198
+ };
144
199
  class FilterNotFoundException extends WdaInsightsServiceException_1.WdaInsightsServiceException {
145
200
  name = "FilterNotFoundException";
146
201
  $fault = "client";
@@ -162,9 +217,10 @@ exports.InsightsStatus = {
162
217
  SUCCEEDED: "SUCCEEDED",
163
218
  UNAVAILABLE: "UNAVAILABLE",
164
219
  };
165
- exports.InsightsQuality = {
166
- MAX: "MAX",
167
- RECOMMENDED: "RECOMMENDED",
220
+ exports.InsightsReason = {
221
+ CONDITIONS_NOT_MATCH: "CONDITIONS_NOT_MATCH",
222
+ INTERNAL_ERROR: "INTERNAL_ERROR",
223
+ TRANSCRIPTION_TOO_SMALL: "TRANSCRIPTION_TOO_SMALL",
168
224
  };
169
225
  exports.ConversationFileCategory = {
170
226
  GENERAL: "channels",