@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
|
@@ -2,11 +2,13 @@ import { CreateDashboardCommandInput, CreateDashboardCommandOutput } from "../co
|
|
|
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 { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
55
58
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
@@ -69,6 +72,10 @@ export declare const se_CreatePlaylistCommand: (input: CreatePlaylistCommandInpu
|
|
|
69
72
|
* serializeAws_restJson1CreateProjectionCommand
|
|
70
73
|
*/
|
|
71
74
|
export declare const se_CreateProjectionCommand: (input: CreateProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
+
/**
|
|
76
|
+
* serializeAws_restJson1CreateProjectionsCategoryCommand
|
|
77
|
+
*/
|
|
78
|
+
export declare const se_CreateProjectionsCategoryCommand: (input: CreateProjectionsCategoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
79
|
/**
|
|
73
80
|
* serializeAws_restJson1DeleteDashboardCommand
|
|
74
81
|
*/
|
|
@@ -89,6 +96,10 @@ export declare const se_DeletePlaylistItemCommand: (input: DeletePlaylistItemCom
|
|
|
89
96
|
* serializeAws_restJson1DeleteProjectionCommand
|
|
90
97
|
*/
|
|
91
98
|
export declare const se_DeleteProjectionCommand: (input: DeleteProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
99
|
+
/**
|
|
100
|
+
* serializeAws_restJson1DeleteProjectionsCategoryCommand
|
|
101
|
+
*/
|
|
102
|
+
export declare const se_DeleteProjectionsCategoryCommand: (input: DeleteProjectionsCategoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
103
|
/**
|
|
93
104
|
* serializeAws_restJson1DisableProjectionCommand
|
|
94
105
|
*/
|
|
@@ -261,6 +272,10 @@ export declare const se_UpdatePlaylistAccessCommand: (input: UpdatePlaylistAcces
|
|
|
261
272
|
* serializeAws_restJson1UpdateProjectionCommand
|
|
262
273
|
*/
|
|
263
274
|
export declare const se_UpdateProjectionCommand: (input: UpdateProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
275
|
+
/**
|
|
276
|
+
* serializeAws_restJson1UpdateProjectionsCategoryCommand
|
|
277
|
+
*/
|
|
278
|
+
export declare const se_UpdateProjectionsCategoryCommand: (input: UpdateProjectionsCategoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
264
279
|
/**
|
|
265
280
|
* serializeAws_restJson1WatchCommand
|
|
266
281
|
*/
|
|
@@ -281,6 +296,10 @@ export declare const de_CreatePlaylistCommand: (output: __HttpResponse, context:
|
|
|
281
296
|
* deserializeAws_restJson1CreateProjectionCommand
|
|
282
297
|
*/
|
|
283
298
|
export declare const de_CreateProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectionCommandOutput>;
|
|
299
|
+
/**
|
|
300
|
+
* deserializeAws_restJson1CreateProjectionsCategoryCommand
|
|
301
|
+
*/
|
|
302
|
+
export declare const de_CreateProjectionsCategoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectionsCategoryCommandOutput>;
|
|
284
303
|
/**
|
|
285
304
|
* deserializeAws_restJson1DeleteDashboardCommand
|
|
286
305
|
*/
|
|
@@ -301,6 +320,10 @@ export declare const de_DeletePlaylistItemCommand: (output: __HttpResponse, cont
|
|
|
301
320
|
* deserializeAws_restJson1DeleteProjectionCommand
|
|
302
321
|
*/
|
|
303
322
|
export declare const de_DeleteProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectionCommandOutput>;
|
|
323
|
+
/**
|
|
324
|
+
* deserializeAws_restJson1DeleteProjectionsCategoryCommand
|
|
325
|
+
*/
|
|
326
|
+
export declare const de_DeleteProjectionsCategoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectionsCategoryCommandOutput>;
|
|
304
327
|
/**
|
|
305
328
|
* deserializeAws_restJson1DisableProjectionCommand
|
|
306
329
|
*/
|
|
@@ -473,6 +496,10 @@ export declare const de_UpdatePlaylistAccessCommand: (output: __HttpResponse, co
|
|
|
473
496
|
* deserializeAws_restJson1UpdateProjectionCommand
|
|
474
497
|
*/
|
|
475
498
|
export declare const de_UpdateProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectionCommandOutput>;
|
|
499
|
+
/**
|
|
500
|
+
* deserializeAws_restJson1UpdateProjectionsCategoryCommand
|
|
501
|
+
*/
|
|
502
|
+
export declare const de_UpdateProjectionsCategoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectionsCategoryCommandOutput>;
|
|
476
503
|
/**
|
|
477
504
|
* deserializeAws_restJson1WatchCommand
|
|
478
505
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-insights-client",
|
|
3
3
|
"description": "@wildix/wda-insights-client client",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.36",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|