@wildix/wda-insights-client 1.1.35 → 1.1.38
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/CreateProjectionsCategoryCommand.js +21 -0
- package/dist-cjs/commands/DeleteProjectionsCategoryCommand.js +21 -0
- package/dist-cjs/commands/UpdateProjectionsCategoryCommand.js +21 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +106 -3
- package/dist-es/WdaInsights.js +6 -0
- package/dist-es/commands/CreateProjectionsCategoryCommand.js +17 -0
- package/dist-es/commands/DeleteProjectionsCategoryCommand.js +17 -0
- package/dist-es/commands/UpdateProjectionsCategoryCommand.js +17 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +97 -0
- package/dist-types/WdaInsights.d.ts +21 -0
- package/dist-types/WdaInsightsClient.d.ts +5 -2
- package/dist-types/commands/CreateProjectionCommand.d.ts +4 -2
- package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +83 -0
- package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +77 -0
- package/dist-types/commands/DisableProjectionCommand.d.ts +2 -1
- package/dist-types/commands/EnableProjectionCommand.d.ts +2 -1
- package/dist-types/commands/GetProjectionCommand.d.ts +2 -1
- package/dist-types/commands/ListConversationsCommand.d.ts +6 -0
- package/dist-types/commands/ListPlaylistItemsCommand.d.ts +6 -0
- package/dist-types/commands/ListProjectionsCommand.d.ts +9 -2
- package/dist-types/commands/ListWatchHistoryCommand.d.ts +6 -0
- package/dist-types/commands/PauseProjectionCommand.d.ts +2 -1
- package/dist-types/commands/UpdateProjectionCommand.d.ts +4 -2
- package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +85 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +99 -6
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -1
- package/dist-types/runtimeConfig.d.ts +6 -1
- package/dist-types/runtimeConfig.native.d.ts +6 -1
- package/package.json +1 -1
|
@@ -3,11 +3,13 @@ import { CreateDashboardCommandInput, CreateDashboardCommandOutput } from "./com
|
|
|
3
3
|
import { CreateFilterCommandInput, CreateFilterCommandOutput } from "./commands/CreateFilterCommand";
|
|
4
4
|
import { CreatePlaylistCommandInput, CreatePlaylistCommandOutput } from "./commands/CreatePlaylistCommand";
|
|
5
5
|
import { CreateProjectionCommandInput, CreateProjectionCommandOutput } from "./commands/CreateProjectionCommand";
|
|
6
|
+
import { CreateProjectionsCategoryCommandInput, CreateProjectionsCategoryCommandOutput } from "./commands/CreateProjectionsCategoryCommand";
|
|
6
7
|
import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "./commands/DeleteDashboardCommand";
|
|
7
8
|
import { DeleteFilterCommandInput, DeleteFilterCommandOutput } from "./commands/DeleteFilterCommand";
|
|
8
9
|
import { DeletePlaylistCommandInput, DeletePlaylistCommandOutput } from "./commands/DeletePlaylistCommand";
|
|
9
10
|
import { DeletePlaylistItemCommandInput, DeletePlaylistItemCommandOutput } from "./commands/DeletePlaylistItemCommand";
|
|
10
11
|
import { DeleteProjectionCommandInput, DeleteProjectionCommandOutput } from "./commands/DeleteProjectionCommand";
|
|
12
|
+
import { DeleteProjectionsCategoryCommandInput, DeleteProjectionsCategoryCommandOutput } from "./commands/DeleteProjectionsCategoryCommand";
|
|
11
13
|
import { DisableProjectionCommandInput, DisableProjectionCommandOutput } from "./commands/DisableProjectionCommand";
|
|
12
14
|
import { EnableProjectionCommandInput, EnableProjectionCommandOutput } from "./commands/EnableProjectionCommand";
|
|
13
15
|
import { GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput } from "./commands/GetAnalysisSettingsCommand";
|
|
@@ -51,6 +53,7 @@ import { UpdatePinnedDashboardsCommandInput, UpdatePinnedDashboardsCommandOutput
|
|
|
51
53
|
import { UpdatePlaylistAccessCommandInput, UpdatePlaylistAccessCommandOutput } from "./commands/UpdatePlaylistAccessCommand";
|
|
52
54
|
import { UpdatePlaylistCommandInput, UpdatePlaylistCommandOutput } from "./commands/UpdatePlaylistCommand";
|
|
53
55
|
import { UpdateProjectionCommandInput, UpdateProjectionCommandOutput } from "./commands/UpdateProjectionCommand";
|
|
56
|
+
import { UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput } from "./commands/UpdateProjectionsCategoryCommand";
|
|
54
57
|
import { WatchCommandInput, WatchCommandOutput } from "./commands/WatchCommand";
|
|
55
58
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
56
59
|
export interface WdaInsights {
|
|
@@ -78,6 +81,12 @@ export interface WdaInsights {
|
|
|
78
81
|
createProjection(args: CreateProjectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectionCommandOutput>;
|
|
79
82
|
createProjection(args: CreateProjectionCommandInput, cb: (err: any, data?: CreateProjectionCommandOutput) => void): void;
|
|
80
83
|
createProjection(args: CreateProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectionCommandOutput) => void): void;
|
|
84
|
+
/**
|
|
85
|
+
* @see {@link CreateProjectionsCategoryCommand}
|
|
86
|
+
*/
|
|
87
|
+
createProjectionsCategory(args: CreateProjectionsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectionsCategoryCommandOutput>;
|
|
88
|
+
createProjectionsCategory(args: CreateProjectionsCategoryCommandInput, cb: (err: any, data?: CreateProjectionsCategoryCommandOutput) => void): void;
|
|
89
|
+
createProjectionsCategory(args: CreateProjectionsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectionsCategoryCommandOutput) => void): void;
|
|
81
90
|
/**
|
|
82
91
|
* @see {@link DeleteDashboardCommand}
|
|
83
92
|
*/
|
|
@@ -108,6 +117,12 @@ export interface WdaInsights {
|
|
|
108
117
|
deleteProjection(args: DeleteProjectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectionCommandOutput>;
|
|
109
118
|
deleteProjection(args: DeleteProjectionCommandInput, cb: (err: any, data?: DeleteProjectionCommandOutput) => void): void;
|
|
110
119
|
deleteProjection(args: DeleteProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectionCommandOutput) => void): void;
|
|
120
|
+
/**
|
|
121
|
+
* @see {@link DeleteProjectionsCategoryCommand}
|
|
122
|
+
*/
|
|
123
|
+
deleteProjectionsCategory(args: DeleteProjectionsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectionsCategoryCommandOutput>;
|
|
124
|
+
deleteProjectionsCategory(args: DeleteProjectionsCategoryCommandInput, cb: (err: any, data?: DeleteProjectionsCategoryCommandOutput) => void): void;
|
|
125
|
+
deleteProjectionsCategory(args: DeleteProjectionsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectionsCategoryCommandOutput) => void): void;
|
|
111
126
|
/**
|
|
112
127
|
* @see {@link DisableProjectionCommand}
|
|
113
128
|
*/
|
|
@@ -378,6 +393,12 @@ export interface WdaInsights {
|
|
|
378
393
|
updateProjection(args: UpdateProjectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectionCommandOutput>;
|
|
379
394
|
updateProjection(args: UpdateProjectionCommandInput, cb: (err: any, data?: UpdateProjectionCommandOutput) => void): void;
|
|
380
395
|
updateProjection(args: UpdateProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectionCommandOutput) => void): void;
|
|
396
|
+
/**
|
|
397
|
+
* @see {@link UpdateProjectionsCategoryCommand}
|
|
398
|
+
*/
|
|
399
|
+
updateProjectionsCategory(args: UpdateProjectionsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectionsCategoryCommandOutput>;
|
|
400
|
+
updateProjectionsCategory(args: UpdateProjectionsCategoryCommandInput, cb: (err: any, data?: UpdateProjectionsCategoryCommandOutput) => void): void;
|
|
401
|
+
updateProjectionsCategory(args: UpdateProjectionsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectionsCategoryCommandOutput) => void): void;
|
|
381
402
|
/**
|
|
382
403
|
* @see {@link WatchCommand}
|
|
383
404
|
*/
|
|
@@ -2,11 +2,13 @@ import { CreateDashboardCommandInput, CreateDashboardCommandOutput } from "./com
|
|
|
2
2
|
import { CreateFilterCommandInput, CreateFilterCommandOutput } from "./commands/CreateFilterCommand";
|
|
3
3
|
import { CreatePlaylistCommandInput, CreatePlaylistCommandOutput } from "./commands/CreatePlaylistCommand";
|
|
4
4
|
import { CreateProjectionCommandInput, CreateProjectionCommandOutput } from "./commands/CreateProjectionCommand";
|
|
5
|
+
import { CreateProjectionsCategoryCommandInput, CreateProjectionsCategoryCommandOutput } from "./commands/CreateProjectionsCategoryCommand";
|
|
5
6
|
import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "./commands/DeleteDashboardCommand";
|
|
6
7
|
import { DeleteFilterCommandInput, DeleteFilterCommandOutput } from "./commands/DeleteFilterCommand";
|
|
7
8
|
import { DeletePlaylistCommandInput, DeletePlaylistCommandOutput } from "./commands/DeletePlaylistCommand";
|
|
8
9
|
import { DeletePlaylistItemCommandInput, DeletePlaylistItemCommandOutput } from "./commands/DeletePlaylistItemCommand";
|
|
9
10
|
import { DeleteProjectionCommandInput, DeleteProjectionCommandOutput } from "./commands/DeleteProjectionCommand";
|
|
11
|
+
import { DeleteProjectionsCategoryCommandInput, DeleteProjectionsCategoryCommandOutput } from "./commands/DeleteProjectionsCategoryCommand";
|
|
10
12
|
import { DisableProjectionCommandInput, DisableProjectionCommandOutput } from "./commands/DisableProjectionCommand";
|
|
11
13
|
import { EnableProjectionCommandInput, EnableProjectionCommandOutput } from "./commands/EnableProjectionCommand";
|
|
12
14
|
import { GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput } from "./commands/GetAnalysisSettingsCommand";
|
|
@@ -50,6 +52,7 @@ import { UpdatePinnedDashboardsCommandInput, UpdatePinnedDashboardsCommandOutput
|
|
|
50
52
|
import { UpdatePlaylistAccessCommandInput, UpdatePlaylistAccessCommandOutput } from "./commands/UpdatePlaylistAccessCommand";
|
|
51
53
|
import { UpdatePlaylistCommandInput, UpdatePlaylistCommandOutput } from "./commands/UpdatePlaylistCommand";
|
|
52
54
|
import { UpdateProjectionCommandInput, UpdateProjectionCommandOutput } from "./commands/UpdateProjectionCommand";
|
|
55
|
+
import { UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput } from "./commands/UpdateProjectionsCategoryCommand";
|
|
53
56
|
import { WatchCommandInput, WatchCommandOutput } from "./commands/WatchCommand";
|
|
54
57
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
55
58
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
@@ -62,11 +65,11 @@ export { __Client };
|
|
|
62
65
|
/**
|
|
63
66
|
* @public
|
|
64
67
|
*/
|
|
65
|
-
export type ServiceInputTypes = CreateDashboardCommandInput | CreateFilterCommandInput | CreatePlaylistCommandInput | CreateProjectionCommandInput | DeleteDashboardCommandInput | DeleteFilterCommandInput | DeletePlaylistCommandInput | DeletePlaylistItemCommandInput | DeleteProjectionCommandInput | DisableProjectionCommandInput | EnableProjectionCommandInput | GetAnalysisSettingsCommandInput | GetCallCharacteristicsCommandInput | GetCallInsightsCommandInput | GetCallStateCommandInput | GetCallSummaryCommandInput | GetChatInsightsCommandInput | GetChatStateCommandInput | GetChatSummaryCommandInput | GetConferenceInsightsCommandInput | GetConferenceRecordingPresignedDownloadUrlCommandInput | GetConferenceStateCommandInput | GetConferenceSummaryCommandInput | GetConferenceTimeFramesCommandInput | GetDashboardCommandInput | GetPlaylistCommandInput | GetProjectionCommandInput | ListConversationsAggregationsCommandInput | ListConversationsCommandInput | ListConversationsInsightsAggregationsCommandInput | ListConversationsInsightsCommandInput | ListConversationsNestedAggregationsCommandInput | ListDashboardsCommandInput | ListFiltersCommandInput | ListPinnedDashboardsCommandInput | ListPlaylistItemsCommandInput | ListPlaylistsCommandInput | ListProjectionsCommandInput | ListWatchHistoryCommandInput | PauseProjectionCommandInput | PutAnalysisSettingsCommandInput | PutPlaylistItemCommandInput | QueryConversationsCountCommandInput | ScheduleCallSummaryGenerationCommandInput | ScheduleConferenceSummaryGenerationCommandInput | UpdateDashboardAccessCommandInput | UpdateDashboardCommandInput | UpdateFilterCommandInput | UpdatePinnedDashboardsCommandInput | UpdatePlaylistAccessCommandInput | UpdatePlaylistCommandInput | UpdateProjectionCommandInput | WatchCommandInput;
|
|
68
|
+
export type ServiceInputTypes = CreateDashboardCommandInput | CreateFilterCommandInput | CreatePlaylistCommandInput | CreateProjectionCommandInput | CreateProjectionsCategoryCommandInput | DeleteDashboardCommandInput | DeleteFilterCommandInput | DeletePlaylistCommandInput | DeletePlaylistItemCommandInput | DeleteProjectionCommandInput | DeleteProjectionsCategoryCommandInput | DisableProjectionCommandInput | EnableProjectionCommandInput | GetAnalysisSettingsCommandInput | GetCallCharacteristicsCommandInput | GetCallInsightsCommandInput | GetCallStateCommandInput | GetCallSummaryCommandInput | GetChatInsightsCommandInput | GetChatStateCommandInput | GetChatSummaryCommandInput | GetConferenceInsightsCommandInput | GetConferenceRecordingPresignedDownloadUrlCommandInput | GetConferenceStateCommandInput | GetConferenceSummaryCommandInput | GetConferenceTimeFramesCommandInput | GetDashboardCommandInput | GetPlaylistCommandInput | GetProjectionCommandInput | ListConversationsAggregationsCommandInput | ListConversationsCommandInput | ListConversationsInsightsAggregationsCommandInput | ListConversationsInsightsCommandInput | ListConversationsNestedAggregationsCommandInput | ListDashboardsCommandInput | ListFiltersCommandInput | ListPinnedDashboardsCommandInput | ListPlaylistItemsCommandInput | ListPlaylistsCommandInput | ListProjectionsCommandInput | ListWatchHistoryCommandInput | PauseProjectionCommandInput | PutAnalysisSettingsCommandInput | PutPlaylistItemCommandInput | QueryConversationsCountCommandInput | ScheduleCallSummaryGenerationCommandInput | ScheduleConferenceSummaryGenerationCommandInput | UpdateDashboardAccessCommandInput | UpdateDashboardCommandInput | UpdateFilterCommandInput | UpdatePinnedDashboardsCommandInput | UpdatePlaylistAccessCommandInput | UpdatePlaylistCommandInput | UpdateProjectionCommandInput | UpdateProjectionsCategoryCommandInput | WatchCommandInput;
|
|
66
69
|
/**
|
|
67
70
|
* @public
|
|
68
71
|
*/
|
|
69
|
-
export type ServiceOutputTypes = CreateDashboardCommandOutput | CreateFilterCommandOutput | CreatePlaylistCommandOutput | CreateProjectionCommandOutput | DeleteDashboardCommandOutput | DeleteFilterCommandOutput | DeletePlaylistCommandOutput | DeletePlaylistItemCommandOutput | DeleteProjectionCommandOutput | DisableProjectionCommandOutput | EnableProjectionCommandOutput | GetAnalysisSettingsCommandOutput | GetCallCharacteristicsCommandOutput | GetCallInsightsCommandOutput | GetCallStateCommandOutput | GetCallSummaryCommandOutput | GetChatInsightsCommandOutput | GetChatStateCommandOutput | GetChatSummaryCommandOutput | GetConferenceInsightsCommandOutput | GetConferenceRecordingPresignedDownloadUrlCommandOutput | GetConferenceStateCommandOutput | GetConferenceSummaryCommandOutput | GetConferenceTimeFramesCommandOutput | GetDashboardCommandOutput | GetPlaylistCommandOutput | GetProjectionCommandOutput | ListConversationsAggregationsCommandOutput | ListConversationsCommandOutput | ListConversationsInsightsAggregationsCommandOutput | ListConversationsInsightsCommandOutput | ListConversationsNestedAggregationsCommandOutput | ListDashboardsCommandOutput | ListFiltersCommandOutput | ListPinnedDashboardsCommandOutput | ListPlaylistItemsCommandOutput | ListPlaylistsCommandOutput | ListProjectionsCommandOutput | ListWatchHistoryCommandOutput | PauseProjectionCommandOutput | PutAnalysisSettingsCommandOutput | PutPlaylistItemCommandOutput | QueryConversationsCountCommandOutput | ScheduleCallSummaryGenerationCommandOutput | ScheduleConferenceSummaryGenerationCommandOutput | UpdateDashboardAccessCommandOutput | UpdateDashboardCommandOutput | UpdateFilterCommandOutput | UpdatePinnedDashboardsCommandOutput | UpdatePlaylistAccessCommandOutput | UpdatePlaylistCommandOutput | UpdateProjectionCommandOutput | WatchCommandOutput;
|
|
72
|
+
export type ServiceOutputTypes = CreateDashboardCommandOutput | CreateFilterCommandOutput | CreatePlaylistCommandOutput | CreateProjectionCommandOutput | CreateProjectionsCategoryCommandOutput | DeleteDashboardCommandOutput | DeleteFilterCommandOutput | DeletePlaylistCommandOutput | DeletePlaylistItemCommandOutput | DeleteProjectionCommandOutput | DeleteProjectionsCategoryCommandOutput | DisableProjectionCommandOutput | EnableProjectionCommandOutput | GetAnalysisSettingsCommandOutput | GetCallCharacteristicsCommandOutput | GetCallInsightsCommandOutput | GetCallStateCommandOutput | GetCallSummaryCommandOutput | GetChatInsightsCommandOutput | GetChatStateCommandOutput | GetChatSummaryCommandOutput | GetConferenceInsightsCommandOutput | GetConferenceRecordingPresignedDownloadUrlCommandOutput | GetConferenceStateCommandOutput | GetConferenceSummaryCommandOutput | GetConferenceTimeFramesCommandOutput | GetDashboardCommandOutput | GetPlaylistCommandOutput | GetProjectionCommandOutput | ListConversationsAggregationsCommandOutput | ListConversationsCommandOutput | ListConversationsInsightsAggregationsCommandOutput | ListConversationsInsightsCommandOutput | ListConversationsNestedAggregationsCommandOutput | ListDashboardsCommandOutput | ListFiltersCommandOutput | ListPinnedDashboardsCommandOutput | ListPlaylistItemsCommandOutput | ListPlaylistsCommandOutput | ListProjectionsCommandOutput | ListWatchHistoryCommandOutput | PauseProjectionCommandOutput | PutAnalysisSettingsCommandOutput | PutPlaylistItemCommandOutput | QueryConversationsCountCommandOutput | ScheduleCallSummaryGenerationCommandOutput | ScheduleConferenceSummaryGenerationCommandOutput | UpdateDashboardAccessCommandOutput | UpdateDashboardCommandOutput | UpdateFilterCommandOutput | UpdatePinnedDashboardsCommandOutput | UpdatePlaylistAccessCommandOutput | UpdatePlaylistCommandOutput | UpdateProjectionCommandOutput | UpdateProjectionsCategoryCommandOutput | WatchCommandOutput;
|
|
70
73
|
/**
|
|
71
74
|
* @public
|
|
72
75
|
*/
|
|
@@ -35,7 +35,8 @@ declare const CreateProjectionCommand_base: {
|
|
|
35
35
|
* // const { WdaInsightsClient, CreateProjectionCommand } = require("@wildix/wda-insights-client"); // CommonJS import
|
|
36
36
|
* const client = new WdaInsightsClient(config);
|
|
37
37
|
* const input = { // CreateProjectionInput
|
|
38
|
-
* category: "STRING_VALUE",
|
|
38
|
+
* category: "STRING_VALUE",
|
|
39
|
+
* categoryId: "STRING_VALUE",
|
|
39
40
|
* name: "STRING_VALUE", // required
|
|
40
41
|
* description: "STRING_VALUE",
|
|
41
42
|
* instructions: "STRING_VALUE",
|
|
@@ -276,7 +277,8 @@ declare const CreateProjectionCommand_base: {
|
|
|
276
277
|
* const response = await client.send(command);
|
|
277
278
|
* // { // CreateProjectionOutput
|
|
278
279
|
* // projection: { // Projection
|
|
279
|
-
* // category: "STRING_VALUE",
|
|
280
|
+
* // category: "STRING_VALUE",
|
|
281
|
+
* // categoryId: "STRING_VALUE",
|
|
280
282
|
* // name: "STRING_VALUE", // required
|
|
281
283
|
* // description: "STRING_VALUE",
|
|
282
284
|
* // instructions: "STRING_VALUE",
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
|
|
2
|
+
import { CreateProjectionsCategoryInput, CreateProjectionsCategoryOutput } from "../models/models_0";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateProjectionsCategoryCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateProjectionsCategoryCommandInput extends CreateProjectionsCategoryInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateProjectionsCategoryCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateProjectionsCategoryCommandOutput extends CreateProjectionsCategoryOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateProjectionsCategoryCommand_base: {
|
|
25
|
+
new (input: CreateProjectionsCategoryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateProjectionsCategoryCommandInput, CreateProjectionsCategoryCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: CreateProjectionsCategoryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateProjectionsCategoryCommandInput, CreateProjectionsCategoryCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Deprecated compatibility endpoint. This operation is a no-op and does not modify storage.
|
|
31
|
+
*
|
|
32
|
+
* @deprecated
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { WdaInsightsClient, CreateProjectionsCategoryCommand } from "@wildix/wda-insights-client"; // ES Modules import
|
|
37
|
+
* // const { WdaInsightsClient, CreateProjectionsCategoryCommand } = require("@wildix/wda-insights-client"); // CommonJS import
|
|
38
|
+
* const client = new WdaInsightsClient(config);
|
|
39
|
+
* const input = { // CreateProjectionsCategoryInput
|
|
40
|
+
* company: "STRING_VALUE",
|
|
41
|
+
* id: "STRING_VALUE", // required
|
|
42
|
+
* name: "STRING_VALUE", // required
|
|
43
|
+
* };
|
|
44
|
+
* const command = new CreateProjectionsCategoryCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // CreateProjectionsCategoryOutput
|
|
47
|
+
* // category: { // ProjectionsCategory
|
|
48
|
+
* // id: "STRING_VALUE", // required
|
|
49
|
+
* // name: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* @param CreateProjectionsCategoryCommandInput - {@link CreateProjectionsCategoryCommandInput}
|
|
56
|
+
* @returns {@link CreateProjectionsCategoryCommandOutput}
|
|
57
|
+
* @see {@link CreateProjectionsCategoryCommandInput} for command's `input` shape.
|
|
58
|
+
* @see {@link CreateProjectionsCategoryCommandOutput} for command's `response` shape.
|
|
59
|
+
* @see {@link WdaInsightsClientResolvedConfig | config} for WdaInsightsClient's `config` shape.
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ValidationException} (client fault)
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link WdaInsightsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from WdaInsights service.</p>
|
|
67
|
+
*
|
|
68
|
+
*
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export declare class CreateProjectionsCategoryCommand extends CreateProjectionsCategoryCommand_base {
|
|
72
|
+
/** @internal type navigation helper, not in runtime. */
|
|
73
|
+
protected static __types: {
|
|
74
|
+
api: {
|
|
75
|
+
input: CreateProjectionsCategoryInput;
|
|
76
|
+
output: CreateProjectionsCategoryOutput;
|
|
77
|
+
};
|
|
78
|
+
sdk: {
|
|
79
|
+
input: CreateProjectionsCategoryCommandInput;
|
|
80
|
+
output: CreateProjectionsCategoryCommandOutput;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
|
|
2
|
+
import { DeleteProjectionsCategoryInput, DeleteProjectionsCategoryOutput } from "../models/models_0";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteProjectionsCategoryCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteProjectionsCategoryCommandInput extends DeleteProjectionsCategoryInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteProjectionsCategoryCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteProjectionsCategoryCommandOutput extends DeleteProjectionsCategoryOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteProjectionsCategoryCommand_base: {
|
|
25
|
+
new (input: DeleteProjectionsCategoryCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteProjectionsCategoryCommandInput, DeleteProjectionsCategoryCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteProjectionsCategoryCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteProjectionsCategoryCommandInput, DeleteProjectionsCategoryCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Deprecated compatibility endpoint. This operation is a no-op and does not modify storage.
|
|
31
|
+
*
|
|
32
|
+
* @deprecated
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { WdaInsightsClient, DeleteProjectionsCategoryCommand } from "@wildix/wda-insights-client"; // ES Modules import
|
|
37
|
+
* // const { WdaInsightsClient, DeleteProjectionsCategoryCommand } = require("@wildix/wda-insights-client"); // CommonJS import
|
|
38
|
+
* const client = new WdaInsightsClient(config);
|
|
39
|
+
* const input = { // DeleteProjectionsCategoryInput
|
|
40
|
+
* company: "STRING_VALUE",
|
|
41
|
+
* id: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
43
|
+
* const command = new DeleteProjectionsCategoryCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // {};
|
|
46
|
+
*
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* @param DeleteProjectionsCategoryCommandInput - {@link DeleteProjectionsCategoryCommandInput}
|
|
50
|
+
* @returns {@link DeleteProjectionsCategoryCommandOutput}
|
|
51
|
+
* @see {@link DeleteProjectionsCategoryCommandInput} for command's `input` shape.
|
|
52
|
+
* @see {@link DeleteProjectionsCategoryCommandOutput} for command's `response` shape.
|
|
53
|
+
* @see {@link WdaInsightsClientResolvedConfig | config} for WdaInsightsClient's `config` shape.
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ValidationException} (client fault)
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link WdaInsightsServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from WdaInsights service.</p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export declare class DeleteProjectionsCategoryCommand extends DeleteProjectionsCategoryCommand_base {
|
|
66
|
+
/** @internal type navigation helper, not in runtime. */
|
|
67
|
+
protected static __types: {
|
|
68
|
+
api: {
|
|
69
|
+
input: DeleteProjectionsCategoryInput;
|
|
70
|
+
output: {};
|
|
71
|
+
};
|
|
72
|
+
sdk: {
|
|
73
|
+
input: DeleteProjectionsCategoryCommandInput;
|
|
74
|
+
output: DeleteProjectionsCategoryCommandOutput;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
}
|
|
@@ -42,7 +42,8 @@ declare const DisableProjectionCommand_base: {
|
|
|
42
42
|
* const response = await client.send(command);
|
|
43
43
|
* // { // DisableProjectionOutput
|
|
44
44
|
* // projection: { // Projection
|
|
45
|
-
* // category: "STRING_VALUE",
|
|
45
|
+
* // category: "STRING_VALUE",
|
|
46
|
+
* // categoryId: "STRING_VALUE",
|
|
46
47
|
* // name: "STRING_VALUE", // required
|
|
47
48
|
* // description: "STRING_VALUE",
|
|
48
49
|
* // instructions: "STRING_VALUE",
|
|
@@ -42,7 +42,8 @@ declare const EnableProjectionCommand_base: {
|
|
|
42
42
|
* const response = await client.send(command);
|
|
43
43
|
* // { // EnableProjectionOutput
|
|
44
44
|
* // projection: { // Projection
|
|
45
|
-
* // category: "STRING_VALUE",
|
|
45
|
+
* // category: "STRING_VALUE",
|
|
46
|
+
* // categoryId: "STRING_VALUE",
|
|
46
47
|
* // name: "STRING_VALUE", // required
|
|
47
48
|
* // description: "STRING_VALUE",
|
|
48
49
|
* // instructions: "STRING_VALUE",
|
|
@@ -42,7 +42,8 @@ declare const GetProjectionCommand_base: {
|
|
|
42
42
|
* const response = await client.send(command);
|
|
43
43
|
* // { // GetProjectionOutput
|
|
44
44
|
* // projection: { // Projection
|
|
45
|
-
* // category: "STRING_VALUE",
|
|
45
|
+
* // category: "STRING_VALUE",
|
|
46
|
+
* // categoryId: "STRING_VALUE",
|
|
46
47
|
* // name: "STRING_VALUE", // required
|
|
47
48
|
* // description: "STRING_VALUE",
|
|
48
49
|
* // instructions: "STRING_VALUE",
|
|
@@ -379,6 +379,12 @@ declare const ListConversationsCommand_base: {
|
|
|
379
379
|
* // },
|
|
380
380
|
* // },
|
|
381
381
|
* // ],
|
|
382
|
+
* // notifications: { // CallFlowNotifications
|
|
383
|
+
* // destinations: "<CallFlowAttachmentDestinationList>",
|
|
384
|
+
* // type: [ // NotificationsType
|
|
385
|
+
* // "STRING_VALUE",
|
|
386
|
+
* // ],
|
|
387
|
+
* // },
|
|
382
388
|
* // id: "STRING_VALUE", // required
|
|
383
389
|
* // pbx: "STRING_VALUE", // required
|
|
384
390
|
* // time: Number("long"), // required
|
|
@@ -205,6 +205,12 @@ declare const ListPlaylistItemsCommand_base: {
|
|
|
205
205
|
* // },
|
|
206
206
|
* // },
|
|
207
207
|
* // ],
|
|
208
|
+
* // notifications: { // CallFlowNotifications
|
|
209
|
+
* // destinations: "<CallFlowAttachmentDestinationList>",
|
|
210
|
+
* // type: [ // NotificationsType
|
|
211
|
+
* // "STRING_VALUE",
|
|
212
|
+
* // ],
|
|
213
|
+
* // },
|
|
208
214
|
* // id: "STRING_VALUE", // required
|
|
209
215
|
* // pbx: "STRING_VALUE", // required
|
|
210
216
|
* // time: Number("long"), // required
|
|
@@ -27,7 +27,7 @@ declare const ListProjectionsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Lists all projections available for the tenant.
|
|
30
|
+
* Lists all projections and compatibility categories available for the tenant.
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -42,7 +42,8 @@ declare const ListProjectionsCommand_base: {
|
|
|
42
42
|
* // { // ListProjectionsOutput
|
|
43
43
|
* // projections: [ // ProjectionsList // required
|
|
44
44
|
* // { // Projection
|
|
45
|
-
* // category: "STRING_VALUE",
|
|
45
|
+
* // category: "STRING_VALUE",
|
|
46
|
+
* // categoryId: "STRING_VALUE",
|
|
46
47
|
* // name: "STRING_VALUE", // required
|
|
47
48
|
* // description: "STRING_VALUE",
|
|
48
49
|
* // instructions: "STRING_VALUE",
|
|
@@ -286,6 +287,12 @@ declare const ListProjectionsCommand_base: {
|
|
|
286
287
|
* // },
|
|
287
288
|
* // },
|
|
288
289
|
* // ],
|
|
290
|
+
* // categories: [ // ProjectionsCategoriesList
|
|
291
|
+
* // { // ProjectionsCategory
|
|
292
|
+
* // id: "STRING_VALUE", // required
|
|
293
|
+
* // name: "STRING_VALUE", // required
|
|
294
|
+
* // },
|
|
295
|
+
* // ],
|
|
289
296
|
* // };
|
|
290
297
|
*
|
|
291
298
|
* ```
|
|
@@ -203,6 +203,12 @@ declare const ListWatchHistoryCommand_base: {
|
|
|
203
203
|
* // },
|
|
204
204
|
* // },
|
|
205
205
|
* // ],
|
|
206
|
+
* // notifications: { // CallFlowNotifications
|
|
207
|
+
* // destinations: "<CallFlowAttachmentDestinationList>",
|
|
208
|
+
* // type: [ // NotificationsType
|
|
209
|
+
* // "STRING_VALUE",
|
|
210
|
+
* // ],
|
|
211
|
+
* // },
|
|
206
212
|
* // id: "STRING_VALUE", // required
|
|
207
213
|
* // pbx: "STRING_VALUE", // required
|
|
208
214
|
* // time: Number("long"), // required
|
|
@@ -42,7 +42,8 @@ declare const PauseProjectionCommand_base: {
|
|
|
42
42
|
* const response = await client.send(command);
|
|
43
43
|
* // { // PauseProjectionOutput
|
|
44
44
|
* // projection: { // Projection
|
|
45
|
-
* // category: "STRING_VALUE",
|
|
45
|
+
* // category: "STRING_VALUE",
|
|
46
|
+
* // categoryId: "STRING_VALUE",
|
|
46
47
|
* // name: "STRING_VALUE", // required
|
|
47
48
|
* // description: "STRING_VALUE",
|
|
48
49
|
* // instructions: "STRING_VALUE",
|
|
@@ -35,7 +35,8 @@ declare const UpdateProjectionCommand_base: {
|
|
|
35
35
|
* // const { WdaInsightsClient, UpdateProjectionCommand } = require("@wildix/wda-insights-client"); // CommonJS import
|
|
36
36
|
* const client = new WdaInsightsClient(config);
|
|
37
37
|
* const input = { // UpdateProjectionInput
|
|
38
|
-
* category: "STRING_VALUE",
|
|
38
|
+
* category: "STRING_VALUE",
|
|
39
|
+
* categoryId: "STRING_VALUE",
|
|
39
40
|
* name: "STRING_VALUE", // required
|
|
40
41
|
* description: "STRING_VALUE",
|
|
41
42
|
* instructions: "STRING_VALUE",
|
|
@@ -276,7 +277,8 @@ declare const UpdateProjectionCommand_base: {
|
|
|
276
277
|
* const response = await client.send(command);
|
|
277
278
|
* // { // UpdateProjectionOutput
|
|
278
279
|
* // projection: { // Projection
|
|
279
|
-
* // category: "STRING_VALUE",
|
|
280
|
+
* // category: "STRING_VALUE",
|
|
281
|
+
* // categoryId: "STRING_VALUE",
|
|
280
282
|
* // name: "STRING_VALUE", // required
|
|
281
283
|
* // description: "STRING_VALUE",
|
|
282
284
|
* // instructions: "STRING_VALUE",
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
|
|
2
|
+
import { UpdateProjectionsCategoryInput, UpdateProjectionsCategoryOutput } from "../models/models_0";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateProjectionsCategoryCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateProjectionsCategoryCommandInput extends UpdateProjectionsCategoryInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateProjectionsCategoryCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateProjectionsCategoryCommandOutput extends UpdateProjectionsCategoryOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateProjectionsCategoryCommand_base: {
|
|
25
|
+
new (input: UpdateProjectionsCategoryCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UpdateProjectionsCategoryCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Deprecated compatibility endpoint. This operation is a no-op and does not modify storage.
|
|
31
|
+
*
|
|
32
|
+
* @deprecated
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { WdaInsightsClient, UpdateProjectionsCategoryCommand } from "@wildix/wda-insights-client"; // ES Modules import
|
|
37
|
+
* // const { WdaInsightsClient, UpdateProjectionsCategoryCommand } = require("@wildix/wda-insights-client"); // CommonJS import
|
|
38
|
+
* const client = new WdaInsightsClient(config);
|
|
39
|
+
* const input = { // UpdateProjectionsCategoryInput
|
|
40
|
+
* company: "STRING_VALUE",
|
|
41
|
+
* id: "STRING_VALUE", // required
|
|
42
|
+
* name: "STRING_VALUE", // required
|
|
43
|
+
* };
|
|
44
|
+
* const command = new UpdateProjectionsCategoryCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // UpdateProjectionsCategoryOutput
|
|
47
|
+
* // category: { // ProjectionsCategory
|
|
48
|
+
* // id: "STRING_VALUE", // required
|
|
49
|
+
* // name: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* @param UpdateProjectionsCategoryCommandInput - {@link UpdateProjectionsCategoryCommandInput}
|
|
56
|
+
* @returns {@link UpdateProjectionsCategoryCommandOutput}
|
|
57
|
+
* @see {@link UpdateProjectionsCategoryCommandInput} for command's `input` shape.
|
|
58
|
+
* @see {@link UpdateProjectionsCategoryCommandOutput} for command's `response` shape.
|
|
59
|
+
* @see {@link WdaInsightsClientResolvedConfig | config} for WdaInsightsClient's `config` shape.
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link NotFoundException} (client fault)
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ValidationException} (client fault)
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link WdaInsightsServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from WdaInsights service.</p>
|
|
69
|
+
*
|
|
70
|
+
*
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export declare class UpdateProjectionsCategoryCommand extends UpdateProjectionsCategoryCommand_base {
|
|
74
|
+
/** @internal type navigation helper, not in runtime. */
|
|
75
|
+
protected static __types: {
|
|
76
|
+
api: {
|
|
77
|
+
input: UpdateProjectionsCategoryInput;
|
|
78
|
+
output: UpdateProjectionsCategoryOutput;
|
|
79
|
+
};
|
|
80
|
+
sdk: {
|
|
81
|
+
input: UpdateProjectionsCategoryCommandInput;
|
|
82
|
+
output: UpdateProjectionsCategoryCommandOutput;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
}
|
|
@@ -2,11 +2,13 @@ export * from "./CreateDashboardCommand";
|
|
|
2
2
|
export * from "./CreateFilterCommand";
|
|
3
3
|
export * from "./CreatePlaylistCommand";
|
|
4
4
|
export * from "./CreateProjectionCommand";
|
|
5
|
+
export * from "./CreateProjectionsCategoryCommand";
|
|
5
6
|
export * from "./DeleteDashboardCommand";
|
|
6
7
|
export * from "./DeleteFilterCommand";
|
|
7
8
|
export * from "./DeletePlaylistCommand";
|
|
8
9
|
export * from "./DeletePlaylistItemCommand";
|
|
9
10
|
export * from "./DeleteProjectionCommand";
|
|
11
|
+
export * from "./DeleteProjectionsCategoryCommand";
|
|
10
12
|
export * from "./DisableProjectionCommand";
|
|
11
13
|
export * from "./EnableProjectionCommand";
|
|
12
14
|
export * from "./GetAnalysisSettingsCommand";
|
|
@@ -50,4 +52,5 @@ export * from "./UpdatePinnedDashboardsCommand";
|
|
|
50
52
|
export * from "./UpdatePlaylistCommand";
|
|
51
53
|
export * from "./UpdatePlaylistAccessCommand";
|
|
52
54
|
export * from "./UpdateProjectionCommand";
|
|
55
|
+
export * from "./UpdateProjectionsCategoryCommand";
|
|
53
56
|
export * from "./WatchCommand";
|