@wildix/wda-insights-client 1.1.35 → 1.1.36
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/ListProjectionsCommand.d.ts +9 -2
- 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 +91 -6
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- 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",
|
|
@@ -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
|
* ```
|
|
@@ -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";
|
|
@@ -2675,10 +2675,17 @@ export interface ProjectionField {
|
|
|
2675
2675
|
*/
|
|
2676
2676
|
export interface CreateProjectionInput {
|
|
2677
2677
|
/**
|
|
2678
|
-
* Free-form category label for
|
|
2678
|
+
* Free-form category label for projection grouping.
|
|
2679
2679
|
* @public
|
|
2680
2680
|
*/
|
|
2681
|
-
category
|
|
2681
|
+
category?: string | undefined;
|
|
2682
|
+
/**
|
|
2683
|
+
* Compatibility field for legacy clients. Use `category` instead.
|
|
2684
|
+
*
|
|
2685
|
+
* @deprecated
|
|
2686
|
+
* @public
|
|
2687
|
+
*/
|
|
2688
|
+
categoryId?: string | undefined;
|
|
2682
2689
|
name: string;
|
|
2683
2690
|
description?: string | undefined;
|
|
2684
2691
|
instructions?: string | undefined;
|
|
@@ -2736,10 +2743,17 @@ export type ProjectionStatus = typeof ProjectionStatus[keyof typeof ProjectionSt
|
|
|
2736
2743
|
*/
|
|
2737
2744
|
export interface Projection {
|
|
2738
2745
|
/**
|
|
2739
|
-
* Free-form category label for
|
|
2746
|
+
* Free-form category label for projection grouping.
|
|
2740
2747
|
* @public
|
|
2741
2748
|
*/
|
|
2742
|
-
category
|
|
2749
|
+
category?: string | undefined;
|
|
2750
|
+
/**
|
|
2751
|
+
* Compatibility field for legacy clients. Use `category` instead.
|
|
2752
|
+
*
|
|
2753
|
+
* @deprecated
|
|
2754
|
+
* @public
|
|
2755
|
+
*/
|
|
2756
|
+
categoryId?: string | undefined;
|
|
2743
2757
|
name: string;
|
|
2744
2758
|
description?: string | undefined;
|
|
2745
2759
|
instructions?: string | undefined;
|
|
@@ -2779,6 +2793,31 @@ export interface Projection {
|
|
|
2779
2793
|
export interface CreateProjectionOutput {
|
|
2780
2794
|
projection: Projection;
|
|
2781
2795
|
}
|
|
2796
|
+
/**
|
|
2797
|
+
* @public
|
|
2798
|
+
*/
|
|
2799
|
+
export interface CreateProjectionsCategoryInput {
|
|
2800
|
+
/**
|
|
2801
|
+
* The unique identifier of the tenant when a service token is used.
|
|
2802
|
+
* @public
|
|
2803
|
+
*/
|
|
2804
|
+
company?: string | undefined;
|
|
2805
|
+
id: string;
|
|
2806
|
+
name: string;
|
|
2807
|
+
}
|
|
2808
|
+
/**
|
|
2809
|
+
* @public
|
|
2810
|
+
*/
|
|
2811
|
+
export interface ProjectionsCategory {
|
|
2812
|
+
id: string;
|
|
2813
|
+
name: string;
|
|
2814
|
+
}
|
|
2815
|
+
/**
|
|
2816
|
+
* @public
|
|
2817
|
+
*/
|
|
2818
|
+
export interface CreateProjectionsCategoryOutput {
|
|
2819
|
+
category: ProjectionsCategory;
|
|
2820
|
+
}
|
|
2782
2821
|
/**
|
|
2783
2822
|
* @public
|
|
2784
2823
|
*/
|
|
@@ -2881,6 +2920,22 @@ export interface DeleteProjectionInput {
|
|
|
2881
2920
|
*/
|
|
2882
2921
|
export interface DeleteProjectionOutput {
|
|
2883
2922
|
}
|
|
2923
|
+
/**
|
|
2924
|
+
* @public
|
|
2925
|
+
*/
|
|
2926
|
+
export interface DeleteProjectionsCategoryInput {
|
|
2927
|
+
/**
|
|
2928
|
+
* The unique identifier of the tenant when a service token is used.
|
|
2929
|
+
* @public
|
|
2930
|
+
*/
|
|
2931
|
+
company?: string | undefined;
|
|
2932
|
+
id: string;
|
|
2933
|
+
}
|
|
2934
|
+
/**
|
|
2935
|
+
* @public
|
|
2936
|
+
*/
|
|
2937
|
+
export interface DeleteProjectionsCategoryOutput {
|
|
2938
|
+
}
|
|
2884
2939
|
/**
|
|
2885
2940
|
* @public
|
|
2886
2941
|
*/
|
|
@@ -3875,6 +3930,11 @@ export interface ListProjectionsInput {
|
|
|
3875
3930
|
*/
|
|
3876
3931
|
export interface ListProjectionsOutput {
|
|
3877
3932
|
projections: (Projection)[];
|
|
3933
|
+
/**
|
|
3934
|
+
* Compatibility field for legacy clients. Categories are simulated from projection `category`/`categoryId` values.
|
|
3935
|
+
* @public
|
|
3936
|
+
*/
|
|
3937
|
+
categories?: (ProjectionsCategory)[] | undefined;
|
|
3878
3938
|
}
|
|
3879
3939
|
/**
|
|
3880
3940
|
* @public
|
|
@@ -4178,10 +4238,17 @@ export interface UpdatePlaylistAccessOutput {
|
|
|
4178
4238
|
*/
|
|
4179
4239
|
export interface UpdateProjectionInput {
|
|
4180
4240
|
/**
|
|
4181
|
-
* Free-form category label for
|
|
4241
|
+
* Free-form category label for projection grouping.
|
|
4242
|
+
* @public
|
|
4243
|
+
*/
|
|
4244
|
+
category?: string | undefined;
|
|
4245
|
+
/**
|
|
4246
|
+
* Compatibility field for legacy clients. Use `category` instead.
|
|
4247
|
+
*
|
|
4248
|
+
* @deprecated
|
|
4182
4249
|
* @public
|
|
4183
4250
|
*/
|
|
4184
|
-
|
|
4251
|
+
categoryId?: string | undefined;
|
|
4185
4252
|
name: string;
|
|
4186
4253
|
description?: string | undefined;
|
|
4187
4254
|
instructions?: string | undefined;
|
|
@@ -4221,6 +4288,24 @@ export interface UpdateProjectionInput {
|
|
|
4221
4288
|
export interface UpdateProjectionOutput {
|
|
4222
4289
|
projection: Projection;
|
|
4223
4290
|
}
|
|
4291
|
+
/**
|
|
4292
|
+
* @public
|
|
4293
|
+
*/
|
|
4294
|
+
export interface UpdateProjectionsCategoryInput {
|
|
4295
|
+
/**
|
|
4296
|
+
* The unique identifier of the tenant when a service token is used.
|
|
4297
|
+
* @public
|
|
4298
|
+
*/
|
|
4299
|
+
company?: string | undefined;
|
|
4300
|
+
id: string;
|
|
4301
|
+
name: string;
|
|
4302
|
+
}
|
|
4303
|
+
/**
|
|
4304
|
+
* @public
|
|
4305
|
+
*/
|
|
4306
|
+
export interface UpdateProjectionsCategoryOutput {
|
|
4307
|
+
category: ProjectionsCategory;
|
|
4308
|
+
}
|
|
4224
4309
|
/**
|
|
4225
4310
|
* @public
|
|
4226
4311
|
*/
|