@wildix/wda-insights-client 1.1.15 → 1.1.16

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 (84) hide show
  1. package/dist-cjs/WdaInsights.js +44 -0
  2. package/dist-cjs/commands/CreateDashboardCommand.js +21 -0
  3. package/dist-cjs/commands/CreatePlaylistCommand.js +21 -0
  4. package/dist-cjs/commands/DeleteDashboardCommand.js +21 -0
  5. package/dist-cjs/commands/DeletePlaylistCommand.js +21 -0
  6. package/dist-cjs/commands/DeletePlaylistItemCommand.js +21 -0
  7. package/dist-cjs/commands/GetCallStateCommand.js +21 -0
  8. package/dist-cjs/commands/GetChatStateCommand.js +21 -0
  9. package/dist-cjs/commands/GetConferenceStateCommand.js +21 -0
  10. package/dist-cjs/commands/GetDashboardCommand.js +21 -0
  11. package/dist-cjs/commands/GetPlaylistCommand.js +21 -0
  12. package/dist-cjs/commands/ListDashboardsCommand.js +21 -0
  13. package/dist-cjs/commands/ListPinnedDashboardsCommand.js +21 -0
  14. package/dist-cjs/commands/ListPlaylistItemsCommand.js +21 -0
  15. package/dist-cjs/commands/ListPlaylistsCommand.js +21 -0
  16. package/dist-cjs/commands/ListWatchHistoryCommand.js +21 -0
  17. package/dist-cjs/commands/PutPlaylistItemCommand.js +21 -0
  18. package/dist-cjs/commands/UpdateDashboardAccessCommand.js +21 -0
  19. package/dist-cjs/commands/UpdateDashboardCommand.js +21 -0
  20. package/dist-cjs/commands/UpdatePinnedDashboardsCommand.js +21 -0
  21. package/dist-cjs/commands/UpdatePlaylistAccessCommand.js +21 -0
  22. package/dist-cjs/commands/UpdatePlaylistCommand.js +21 -0
  23. package/dist-cjs/commands/WatchCommand.js +21 -0
  24. package/dist-cjs/commands/index.js +22 -0
  25. package/dist-cjs/models/models_0.js +120 -84
  26. package/dist-cjs/protocols/Aws_restJson1.js +1015 -116
  27. package/dist-es/WdaInsights.js +44 -0
  28. package/dist-es/commands/CreateDashboardCommand.js +17 -0
  29. package/dist-es/commands/CreatePlaylistCommand.js +17 -0
  30. package/dist-es/commands/DeleteDashboardCommand.js +17 -0
  31. package/dist-es/commands/DeletePlaylistCommand.js +17 -0
  32. package/dist-es/commands/DeletePlaylistItemCommand.js +17 -0
  33. package/dist-es/commands/GetCallStateCommand.js +17 -0
  34. package/dist-es/commands/GetChatStateCommand.js +17 -0
  35. package/dist-es/commands/GetConferenceStateCommand.js +17 -0
  36. package/dist-es/commands/GetDashboardCommand.js +17 -0
  37. package/dist-es/commands/GetPlaylistCommand.js +17 -0
  38. package/dist-es/commands/ListDashboardsCommand.js +17 -0
  39. package/dist-es/commands/ListPinnedDashboardsCommand.js +17 -0
  40. package/dist-es/commands/ListPlaylistItemsCommand.js +17 -0
  41. package/dist-es/commands/ListPlaylistsCommand.js +17 -0
  42. package/dist-es/commands/ListWatchHistoryCommand.js +17 -0
  43. package/dist-es/commands/PutPlaylistItemCommand.js +17 -0
  44. package/dist-es/commands/UpdateDashboardAccessCommand.js +17 -0
  45. package/dist-es/commands/UpdateDashboardCommand.js +17 -0
  46. package/dist-es/commands/UpdatePinnedDashboardsCommand.js +17 -0
  47. package/dist-es/commands/UpdatePlaylistAccessCommand.js +17 -0
  48. package/dist-es/commands/UpdatePlaylistCommand.js +17 -0
  49. package/dist-es/commands/WatchCommand.js +17 -0
  50. package/dist-es/commands/index.js +22 -0
  51. package/dist-es/models/models_0.js +117 -82
  52. package/dist-es/protocols/Aws_restJson1.js +943 -89
  53. package/dist-types/WdaInsights.d.ts +158 -0
  54. package/dist-types/WdaInsightsClient.d.ts +24 -2
  55. package/dist-types/commands/CreateDashboardCommand.d.ts +596 -0
  56. package/dist-types/commands/CreatePlaylistCommand.d.ts +112 -0
  57. package/dist-types/commands/DeleteDashboardCommand.d.ts +76 -0
  58. package/dist-types/commands/DeletePlaylistCommand.d.ts +76 -0
  59. package/dist-types/commands/DeletePlaylistItemCommand.d.ts +88 -0
  60. package/dist-types/commands/GetCallStateCommand.d.ts +89 -0
  61. package/dist-types/commands/GetChatStateCommand.d.ts +88 -0
  62. package/dist-types/commands/GetConferenceStateCommand.d.ts +88 -0
  63. package/dist-types/commands/GetDashboardCommand.d.ts +345 -0
  64. package/dist-types/commands/GetPlaylistCommand.d.ts +101 -0
  65. package/dist-types/commands/ListConversationsCommand.d.ts +34 -9
  66. package/dist-types/commands/ListConversationsInsightsAggregationsCommand.d.ts +75 -17
  67. package/dist-types/commands/ListConversationsInsightsCommand.d.ts +81 -16
  68. package/dist-types/commands/ListDashboardsCommand.d.ts +344 -0
  69. package/dist-types/commands/ListPinnedDashboardsCommand.d.ts +347 -0
  70. package/dist-types/commands/ListPlaylistItemsCommand.d.ts +463 -0
  71. package/dist-types/commands/ListPlaylistsCommand.d.ts +100 -0
  72. package/dist-types/commands/ListWatchHistoryCommand.d.ts +476 -0
  73. package/dist-types/commands/PutPlaylistItemCommand.d.ts +89 -0
  74. package/dist-types/commands/QueryConversationsCountCommand.d.ts +29 -4
  75. package/dist-types/commands/UpdateDashboardAccessCommand.d.ts +355 -0
  76. package/dist-types/commands/UpdateDashboardCommand.d.ts +585 -0
  77. package/dist-types/commands/UpdatePinnedDashboardsCommand.d.ts +78 -0
  78. package/dist-types/commands/UpdatePlaylistAccessCommand.d.ts +111 -0
  79. package/dist-types/commands/UpdatePlaylistCommand.d.ts +101 -0
  80. package/dist-types/commands/WatchCommand.d.ts +91 -0
  81. package/dist-types/commands/index.d.ts +22 -0
  82. package/dist-types/models/models_0.d.ts +1786 -852
  83. package/dist-types/protocols/Aws_restJson1.d.ts +198 -0
  84. package/package.json +5 -5
@@ -2,68 +2,112 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.WdaInsights = void 0;
4
4
  const WdaInsightsClient_1 = require("./WdaInsightsClient");
5
+ const CreateDashboardCommand_1 = require("./commands/CreateDashboardCommand");
5
6
  const CreateFilterCommand_1 = require("./commands/CreateFilterCommand");
7
+ const CreatePlaylistCommand_1 = require("./commands/CreatePlaylistCommand");
6
8
  const CreateProjectionCommand_1 = require("./commands/CreateProjectionCommand");
7
9
  const CreateProjectionsCategoryCommand_1 = require("./commands/CreateProjectionsCategoryCommand");
10
+ const DeleteDashboardCommand_1 = require("./commands/DeleteDashboardCommand");
8
11
  const DeleteFilterCommand_1 = require("./commands/DeleteFilterCommand");
12
+ const DeletePlaylistCommand_1 = require("./commands/DeletePlaylistCommand");
13
+ const DeletePlaylistItemCommand_1 = require("./commands/DeletePlaylistItemCommand");
9
14
  const DeleteProjectionCommand_1 = require("./commands/DeleteProjectionCommand");
10
15
  const DeleteProjectionsCategoryCommand_1 = require("./commands/DeleteProjectionsCategoryCommand");
11
16
  const DisableProjectionCommand_1 = require("./commands/DisableProjectionCommand");
12
17
  const EnableProjectionCommand_1 = require("./commands/EnableProjectionCommand");
13
18
  const GetCallCharacteristicsCommand_1 = require("./commands/GetCallCharacteristicsCommand");
14
19
  const GetCallInsightsCommand_1 = require("./commands/GetCallInsightsCommand");
20
+ const GetCallStateCommand_1 = require("./commands/GetCallStateCommand");
15
21
  const GetCallSummaryCommand_1 = require("./commands/GetCallSummaryCommand");
16
22
  const GetChatInsightsCommand_1 = require("./commands/GetChatInsightsCommand");
23
+ const GetChatStateCommand_1 = require("./commands/GetChatStateCommand");
17
24
  const GetChatSummaryCommand_1 = require("./commands/GetChatSummaryCommand");
18
25
  const GetConferenceInsightsCommand_1 = require("./commands/GetConferenceInsightsCommand");
19
26
  const GetConferenceRecordingPresignedDownloadUrlCommand_1 = require("./commands/GetConferenceRecordingPresignedDownloadUrlCommand");
27
+ const GetConferenceStateCommand_1 = require("./commands/GetConferenceStateCommand");
20
28
  const GetConferenceSummaryCommand_1 = require("./commands/GetConferenceSummaryCommand");
21
29
  const GetConferenceTimeFramesCommand_1 = require("./commands/GetConferenceTimeFramesCommand");
30
+ const GetDashboardCommand_1 = require("./commands/GetDashboardCommand");
31
+ const GetPlaylistCommand_1 = require("./commands/GetPlaylistCommand");
22
32
  const GetProjectionCommand_1 = require("./commands/GetProjectionCommand");
23
33
  const ListConversationsCommand_1 = require("./commands/ListConversationsCommand");
24
34
  const ListConversationsInsightsAggregationsCommand_1 = require("./commands/ListConversationsInsightsAggregationsCommand");
25
35
  const ListConversationsInsightsCommand_1 = require("./commands/ListConversationsInsightsCommand");
36
+ const ListDashboardsCommand_1 = require("./commands/ListDashboardsCommand");
26
37
  const ListFiltersCommand_1 = require("./commands/ListFiltersCommand");
38
+ const ListPinnedDashboardsCommand_1 = require("./commands/ListPinnedDashboardsCommand");
39
+ const ListPlaylistItemsCommand_1 = require("./commands/ListPlaylistItemsCommand");
40
+ const ListPlaylistsCommand_1 = require("./commands/ListPlaylistsCommand");
27
41
  const ListProjectionsCommand_1 = require("./commands/ListProjectionsCommand");
42
+ const ListWatchHistoryCommand_1 = require("./commands/ListWatchHistoryCommand");
28
43
  const PauseProjectionCommand_1 = require("./commands/PauseProjectionCommand");
44
+ const PutPlaylistItemCommand_1 = require("./commands/PutPlaylistItemCommand");
29
45
  const QueryConversationsCountCommand_1 = require("./commands/QueryConversationsCountCommand");
30
46
  const ScheduleCallSummaryGenerationCommand_1 = require("./commands/ScheduleCallSummaryGenerationCommand");
31
47
  const ScheduleConferenceSummaryGenerationCommand_1 = require("./commands/ScheduleConferenceSummaryGenerationCommand");
48
+ const UpdateDashboardAccessCommand_1 = require("./commands/UpdateDashboardAccessCommand");
49
+ const UpdateDashboardCommand_1 = require("./commands/UpdateDashboardCommand");
32
50
  const UpdateFilterCommand_1 = require("./commands/UpdateFilterCommand");
51
+ const UpdatePinnedDashboardsCommand_1 = require("./commands/UpdatePinnedDashboardsCommand");
52
+ const UpdatePlaylistAccessCommand_1 = require("./commands/UpdatePlaylistAccessCommand");
53
+ const UpdatePlaylistCommand_1 = require("./commands/UpdatePlaylistCommand");
33
54
  const UpdateProjectionCommand_1 = require("./commands/UpdateProjectionCommand");
34
55
  const UpdateProjectionsCategoryCommand_1 = require("./commands/UpdateProjectionsCategoryCommand");
56
+ const WatchCommand_1 = require("./commands/WatchCommand");
35
57
  const smithy_client_1 = require("@smithy/smithy-client");
36
58
  const commands = {
59
+ CreateDashboardCommand: CreateDashboardCommand_1.CreateDashboardCommand,
37
60
  CreateFilterCommand: CreateFilterCommand_1.CreateFilterCommand,
61
+ CreatePlaylistCommand: CreatePlaylistCommand_1.CreatePlaylistCommand,
38
62
  CreateProjectionCommand: CreateProjectionCommand_1.CreateProjectionCommand,
39
63
  CreateProjectionsCategoryCommand: CreateProjectionsCategoryCommand_1.CreateProjectionsCategoryCommand,
64
+ DeleteDashboardCommand: DeleteDashboardCommand_1.DeleteDashboardCommand,
40
65
  DeleteFilterCommand: DeleteFilterCommand_1.DeleteFilterCommand,
66
+ DeletePlaylistCommand: DeletePlaylistCommand_1.DeletePlaylistCommand,
67
+ DeletePlaylistItemCommand: DeletePlaylistItemCommand_1.DeletePlaylistItemCommand,
41
68
  DeleteProjectionCommand: DeleteProjectionCommand_1.DeleteProjectionCommand,
42
69
  DeleteProjectionsCategoryCommand: DeleteProjectionsCategoryCommand_1.DeleteProjectionsCategoryCommand,
43
70
  DisableProjectionCommand: DisableProjectionCommand_1.DisableProjectionCommand,
44
71
  EnableProjectionCommand: EnableProjectionCommand_1.EnableProjectionCommand,
45
72
  GetCallCharacteristicsCommand: GetCallCharacteristicsCommand_1.GetCallCharacteristicsCommand,
46
73
  GetCallInsightsCommand: GetCallInsightsCommand_1.GetCallInsightsCommand,
74
+ GetCallStateCommand: GetCallStateCommand_1.GetCallStateCommand,
47
75
  GetCallSummaryCommand: GetCallSummaryCommand_1.GetCallSummaryCommand,
48
76
  GetChatInsightsCommand: GetChatInsightsCommand_1.GetChatInsightsCommand,
77
+ GetChatStateCommand: GetChatStateCommand_1.GetChatStateCommand,
49
78
  GetChatSummaryCommand: GetChatSummaryCommand_1.GetChatSummaryCommand,
50
79
  GetConferenceInsightsCommand: GetConferenceInsightsCommand_1.GetConferenceInsightsCommand,
51
80
  GetConferenceRecordingPresignedDownloadUrlCommand: GetConferenceRecordingPresignedDownloadUrlCommand_1.GetConferenceRecordingPresignedDownloadUrlCommand,
81
+ GetConferenceStateCommand: GetConferenceStateCommand_1.GetConferenceStateCommand,
52
82
  GetConferenceSummaryCommand: GetConferenceSummaryCommand_1.GetConferenceSummaryCommand,
53
83
  GetConferenceTimeFramesCommand: GetConferenceTimeFramesCommand_1.GetConferenceTimeFramesCommand,
84
+ GetDashboardCommand: GetDashboardCommand_1.GetDashboardCommand,
85
+ GetPlaylistCommand: GetPlaylistCommand_1.GetPlaylistCommand,
54
86
  GetProjectionCommand: GetProjectionCommand_1.GetProjectionCommand,
55
87
  ListConversationsCommand: ListConversationsCommand_1.ListConversationsCommand,
56
88
  ListConversationsInsightsCommand: ListConversationsInsightsCommand_1.ListConversationsInsightsCommand,
57
89
  ListConversationsInsightsAggregationsCommand: ListConversationsInsightsAggregationsCommand_1.ListConversationsInsightsAggregationsCommand,
90
+ ListDashboardsCommand: ListDashboardsCommand_1.ListDashboardsCommand,
58
91
  ListFiltersCommand: ListFiltersCommand_1.ListFiltersCommand,
92
+ ListPinnedDashboardsCommand: ListPinnedDashboardsCommand_1.ListPinnedDashboardsCommand,
93
+ ListPlaylistItemsCommand: ListPlaylistItemsCommand_1.ListPlaylistItemsCommand,
94
+ ListPlaylistsCommand: ListPlaylistsCommand_1.ListPlaylistsCommand,
59
95
  ListProjectionsCommand: ListProjectionsCommand_1.ListProjectionsCommand,
96
+ ListWatchHistoryCommand: ListWatchHistoryCommand_1.ListWatchHistoryCommand,
60
97
  PauseProjectionCommand: PauseProjectionCommand_1.PauseProjectionCommand,
98
+ PutPlaylistItemCommand: PutPlaylistItemCommand_1.PutPlaylistItemCommand,
61
99
  QueryConversationsCountCommand: QueryConversationsCountCommand_1.QueryConversationsCountCommand,
62
100
  ScheduleCallSummaryGenerationCommand: ScheduleCallSummaryGenerationCommand_1.ScheduleCallSummaryGenerationCommand,
63
101
  ScheduleConferenceSummaryGenerationCommand: ScheduleConferenceSummaryGenerationCommand_1.ScheduleConferenceSummaryGenerationCommand,
102
+ UpdateDashboardCommand: UpdateDashboardCommand_1.UpdateDashboardCommand,
103
+ UpdateDashboardAccessCommand: UpdateDashboardAccessCommand_1.UpdateDashboardAccessCommand,
64
104
  UpdateFilterCommand: UpdateFilterCommand_1.UpdateFilterCommand,
105
+ UpdatePinnedDashboardsCommand: UpdatePinnedDashboardsCommand_1.UpdatePinnedDashboardsCommand,
106
+ UpdatePlaylistCommand: UpdatePlaylistCommand_1.UpdatePlaylistCommand,
107
+ UpdatePlaylistAccessCommand: UpdatePlaylistAccessCommand_1.UpdatePlaylistAccessCommand,
65
108
  UpdateProjectionCommand: UpdateProjectionCommand_1.UpdateProjectionCommand,
66
109
  UpdateProjectionsCategoryCommand: UpdateProjectionsCategoryCommand_1.UpdateProjectionsCategoryCommand,
110
+ WatchCommand: WatchCommand_1.WatchCommand,
67
111
  };
68
112
  class WdaInsights extends WdaInsightsClient_1.WdaInsightsClient {
69
113
  }
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateDashboardCommand = 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 CreateDashboardCommand 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", "CreateDashboard", {})
15
+ .n("WdaInsightsClient", "CreateDashboardCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_CreateDashboardCommand)
18
+ .de(Aws_restJson1_1.de_CreateDashboardCommand)
19
+ .build() {
20
+ }
21
+ exports.CreateDashboardCommand = CreateDashboardCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreatePlaylistCommand = 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 CreatePlaylistCommand 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", "CreatePlaylist", {})
15
+ .n("WdaInsightsClient", "CreatePlaylistCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_CreatePlaylistCommand)
18
+ .de(Aws_restJson1_1.de_CreatePlaylistCommand)
19
+ .build() {
20
+ }
21
+ exports.CreatePlaylistCommand = CreatePlaylistCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteDashboardCommand = 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 DeleteDashboardCommand 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", "DeleteDashboard", {})
15
+ .n("WdaInsightsClient", "DeleteDashboardCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_DeleteDashboardCommand)
18
+ .de(Aws_restJson1_1.de_DeleteDashboardCommand)
19
+ .build() {
20
+ }
21
+ exports.DeleteDashboardCommand = DeleteDashboardCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeletePlaylistCommand = 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 DeletePlaylistCommand 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", "DeletePlaylist", {})
15
+ .n("WdaInsightsClient", "DeletePlaylistCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_DeletePlaylistCommand)
18
+ .de(Aws_restJson1_1.de_DeletePlaylistCommand)
19
+ .build() {
20
+ }
21
+ exports.DeletePlaylistCommand = DeletePlaylistCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeletePlaylistItemCommand = 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 DeletePlaylistItemCommand 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", "DeletePlaylistItem", {})
15
+ .n("WdaInsightsClient", "DeletePlaylistItemCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_DeletePlaylistItemCommand)
18
+ .de(Aws_restJson1_1.de_DeletePlaylistItemCommand)
19
+ .build() {
20
+ }
21
+ exports.DeletePlaylistItemCommand = DeletePlaylistItemCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetCallStateCommand = 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 GetCallStateCommand 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", "GetCallState", {})
15
+ .n("WdaInsightsClient", "GetCallStateCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_GetCallStateCommand)
18
+ .de(Aws_restJson1_1.de_GetCallStateCommand)
19
+ .build() {
20
+ }
21
+ exports.GetCallStateCommand = GetCallStateCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetChatStateCommand = 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 GetChatStateCommand 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", "GetChatState", {})
15
+ .n("WdaInsightsClient", "GetChatStateCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_GetChatStateCommand)
18
+ .de(Aws_restJson1_1.de_GetChatStateCommand)
19
+ .build() {
20
+ }
21
+ exports.GetChatStateCommand = GetChatStateCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetConferenceStateCommand = 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 GetConferenceStateCommand 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", "GetConferenceState", {})
15
+ .n("WdaInsightsClient", "GetConferenceStateCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_GetConferenceStateCommand)
18
+ .de(Aws_restJson1_1.de_GetConferenceStateCommand)
19
+ .build() {
20
+ }
21
+ exports.GetConferenceStateCommand = GetConferenceStateCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetDashboardCommand = 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 GetDashboardCommand 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", "GetDashboard", {})
15
+ .n("WdaInsightsClient", "GetDashboardCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_GetDashboardCommand)
18
+ .de(Aws_restJson1_1.de_GetDashboardCommand)
19
+ .build() {
20
+ }
21
+ exports.GetDashboardCommand = GetDashboardCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetPlaylistCommand = 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 GetPlaylistCommand 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", "GetPlaylist", {})
15
+ .n("WdaInsightsClient", "GetPlaylistCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_GetPlaylistCommand)
18
+ .de(Aws_restJson1_1.de_GetPlaylistCommand)
19
+ .build() {
20
+ }
21
+ exports.GetPlaylistCommand = GetPlaylistCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListDashboardsCommand = 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 ListDashboardsCommand 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", "ListDashboards", {})
15
+ .n("WdaInsightsClient", "ListDashboardsCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListDashboardsCommand)
18
+ .de(Aws_restJson1_1.de_ListDashboardsCommand)
19
+ .build() {
20
+ }
21
+ exports.ListDashboardsCommand = ListDashboardsCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListPinnedDashboardsCommand = 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 ListPinnedDashboardsCommand 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", "ListPinnedDashboards", {})
15
+ .n("WdaInsightsClient", "ListPinnedDashboardsCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListPinnedDashboardsCommand)
18
+ .de(Aws_restJson1_1.de_ListPinnedDashboardsCommand)
19
+ .build() {
20
+ }
21
+ exports.ListPinnedDashboardsCommand = ListPinnedDashboardsCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListPlaylistItemsCommand = 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 ListPlaylistItemsCommand 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", "ListPlaylistItems", {})
15
+ .n("WdaInsightsClient", "ListPlaylistItemsCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListPlaylistItemsCommand)
18
+ .de(Aws_restJson1_1.de_ListPlaylistItemsCommand)
19
+ .build() {
20
+ }
21
+ exports.ListPlaylistItemsCommand = ListPlaylistItemsCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListPlaylistsCommand = 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 ListPlaylistsCommand 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", "ListPlaylists", {})
15
+ .n("WdaInsightsClient", "ListPlaylistsCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListPlaylistsCommand)
18
+ .de(Aws_restJson1_1.de_ListPlaylistsCommand)
19
+ .build() {
20
+ }
21
+ exports.ListPlaylistsCommand = ListPlaylistsCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListWatchHistoryCommand = 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 ListWatchHistoryCommand 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", "ListWatchHistory", {})
15
+ .n("WdaInsightsClient", "ListWatchHistoryCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListWatchHistoryCommand)
18
+ .de(Aws_restJson1_1.de_ListWatchHistoryCommand)
19
+ .build() {
20
+ }
21
+ exports.ListWatchHistoryCommand = ListWatchHistoryCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PutPlaylistItemCommand = 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 PutPlaylistItemCommand 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", "PutPlaylistItem", {})
15
+ .n("WdaInsightsClient", "PutPlaylistItemCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_PutPlaylistItemCommand)
18
+ .de(Aws_restJson1_1.de_PutPlaylistItemCommand)
19
+ .build() {
20
+ }
21
+ exports.PutPlaylistItemCommand = PutPlaylistItemCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateDashboardAccessCommand = 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 UpdateDashboardAccessCommand 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", "UpdateDashboardAccess", {})
15
+ .n("WdaInsightsClient", "UpdateDashboardAccessCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_UpdateDashboardAccessCommand)
18
+ .de(Aws_restJson1_1.de_UpdateDashboardAccessCommand)
19
+ .build() {
20
+ }
21
+ exports.UpdateDashboardAccessCommand = UpdateDashboardAccessCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateDashboardCommand = 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 UpdateDashboardCommand 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", "UpdateDashboard", {})
15
+ .n("WdaInsightsClient", "UpdateDashboardCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_UpdateDashboardCommand)
18
+ .de(Aws_restJson1_1.de_UpdateDashboardCommand)
19
+ .build() {
20
+ }
21
+ exports.UpdateDashboardCommand = UpdateDashboardCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdatePinnedDashboardsCommand = 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 UpdatePinnedDashboardsCommand 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", "UpdatePinnedDashboards", {})
15
+ .n("WdaInsightsClient", "UpdatePinnedDashboardsCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_UpdatePinnedDashboardsCommand)
18
+ .de(Aws_restJson1_1.de_UpdatePinnedDashboardsCommand)
19
+ .build() {
20
+ }
21
+ exports.UpdatePinnedDashboardsCommand = UpdatePinnedDashboardsCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdatePlaylistAccessCommand = 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 UpdatePlaylistAccessCommand 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", "UpdatePlaylistAccess", {})
15
+ .n("WdaInsightsClient", "UpdatePlaylistAccessCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_UpdatePlaylistAccessCommand)
18
+ .de(Aws_restJson1_1.de_UpdatePlaylistAccessCommand)
19
+ .build() {
20
+ }
21
+ exports.UpdatePlaylistAccessCommand = UpdatePlaylistAccessCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdatePlaylistCommand = 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 UpdatePlaylistCommand 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", "UpdatePlaylist", {})
15
+ .n("WdaInsightsClient", "UpdatePlaylistCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_UpdatePlaylistCommand)
18
+ .de(Aws_restJson1_1.de_UpdatePlaylistCommand)
19
+ .build() {
20
+ }
21
+ exports.UpdatePlaylistCommand = UpdatePlaylistCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WatchCommand = 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 WatchCommand 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", "Watch", {})
15
+ .n("WdaInsightsClient", "WatchCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_WatchCommand)
18
+ .de(Aws_restJson1_1.de_WatchCommand)
19
+ .build() {
20
+ }
21
+ exports.WatchCommand = WatchCommand;