@wildix/wda-insights-client 1.1.30 → 1.1.32
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 +4 -6
- package/dist-cjs/commands/{CreateProjectionsCategoryCommand.js → GetAnalysisSettingsCommand.js} +7 -7
- package/dist-cjs/commands/{DeleteProjectionsCategoryCommand.js → PutAnalysisSettingsCommand.js} +7 -7
- package/dist-cjs/commands/index.js +2 -3
- package/dist-cjs/models/models_0.js +2 -5
- package/dist-cjs/protocols/Aws_restJson1.js +109 -106
- package/dist-es/WdaInsights.js +4 -6
- package/dist-es/commands/GetAnalysisSettingsCommand.js +17 -0
- package/dist-es/commands/PutAnalysisSettingsCommand.js +17 -0
- package/dist-es/commands/index.js +2 -3
- package/dist-es/models/models_0.js +0 -3
- package/dist-es/protocols/Aws_restJson1.js +98 -93
- package/dist-types/WdaInsights.d.ts +16 -21
- package/dist-types/WdaInsightsClient.d.ts +4 -5
- package/dist-types/commands/CreateProjectionCommand.d.ts +366 -10
- package/dist-types/commands/DisableProjectionCommand.d.ts +183 -5
- package/dist-types/commands/EnableProjectionCommand.d.ts +183 -5
- package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +256 -0
- package/dist-types/commands/GetProjectionCommand.d.ts +183 -5
- package/dist-types/commands/ListProjectionsCommand.d.ts +184 -12
- package/dist-types/commands/PauseProjectionCommand.d.ts +183 -5
- package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +435 -0
- package/dist-types/commands/UpdateProjectionCommand.d.ts +366 -10
- package/dist-types/commands/index.d.ts +2 -3
- package/dist-types/models/models_0.d.ts +150 -84
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -27
- package/dist-types/runtimeConfig.browser.d.ts +1 -6
- package/dist-types/runtimeConfig.d.ts +1 -6
- package/dist-types/runtimeConfig.native.d.ts +1 -6
- package/package.json +1 -1
- package/dist-cjs/commands/UpdateProjectionsCategoryCommand.js +0 -21
- package/dist-es/commands/CreateProjectionsCategoryCommand.js +0 -17
- package/dist-es/commands/DeleteProjectionsCategoryCommand.js +0 -17
- package/dist-es/commands/UpdateProjectionsCategoryCommand.js +0 -17
- package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +0 -81
- package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +0 -75
- package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +0 -83
|
@@ -2158,6 +2158,26 @@ export declare const AggregationDateInterval: {
|
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
2160
|
export type AggregationDateInterval = typeof AggregationDateInterval[keyof typeof AggregationDateInterval];
|
|
2161
|
+
/**
|
|
2162
|
+
* @public
|
|
2163
|
+
*/
|
|
2164
|
+
export interface AnalysisSettings {
|
|
2165
|
+
/**
|
|
2166
|
+
* Default provider and model identifier for projections that do not define a custom model. Example: 'openai://gpt-5'.
|
|
2167
|
+
* @public
|
|
2168
|
+
*/
|
|
2169
|
+
defaultModel?: string | undefined;
|
|
2170
|
+
/**
|
|
2171
|
+
* True to disable analysis completely for the organization.
|
|
2172
|
+
* @public
|
|
2173
|
+
*/
|
|
2174
|
+
disabled?: boolean | undefined;
|
|
2175
|
+
/**
|
|
2176
|
+
* A Filter for conversations that SI would work for applied to the organization, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
2177
|
+
* @public
|
|
2178
|
+
*/
|
|
2179
|
+
filter?: ListConversationsFilter | undefined;
|
|
2180
|
+
}
|
|
2161
2181
|
/**
|
|
2162
2182
|
* @public
|
|
2163
2183
|
*/
|
|
@@ -2586,6 +2606,11 @@ export interface ProjectionSelectionParameter {
|
|
|
2586
2606
|
options: (string)[];
|
|
2587
2607
|
multi?: boolean | undefined;
|
|
2588
2608
|
adaptive?: boolean | undefined;
|
|
2609
|
+
/**
|
|
2610
|
+
* Options generated by AI when adaptive mode was enabled.
|
|
2611
|
+
* @public
|
|
2612
|
+
*/
|
|
2613
|
+
adaptiveOptions?: (string)[] | undefined;
|
|
2589
2614
|
}
|
|
2590
2615
|
/**
|
|
2591
2616
|
* @public
|
|
@@ -2645,35 +2670,41 @@ export interface ProjectionField {
|
|
|
2645
2670
|
optional?: boolean | undefined;
|
|
2646
2671
|
parameter: ProjectionParameter;
|
|
2647
2672
|
}
|
|
2648
|
-
/**
|
|
2649
|
-
* @public
|
|
2650
|
-
* @enum
|
|
2651
|
-
*/
|
|
2652
|
-
export declare const ProjectionProvider: {
|
|
2653
|
-
readonly OPENAI: "OPENAI";
|
|
2654
|
-
};
|
|
2655
|
-
/**
|
|
2656
|
-
* @public
|
|
2657
|
-
*/
|
|
2658
|
-
export type ProjectionProvider = typeof ProjectionProvider[keyof typeof ProjectionProvider];
|
|
2659
|
-
/**
|
|
2660
|
-
* @public
|
|
2661
|
-
*/
|
|
2662
|
-
export interface ProjectionModel {
|
|
2663
|
-
provider?: ProjectionProvider | undefined;
|
|
2664
|
-
name?: string | undefined;
|
|
2665
|
-
}
|
|
2666
2673
|
/**
|
|
2667
2674
|
* @public
|
|
2668
2675
|
*/
|
|
2669
2676
|
export interface CreateProjectionInput {
|
|
2670
|
-
|
|
2677
|
+
/**
|
|
2678
|
+
* Free-form category label for a projection.
|
|
2679
|
+
* @public
|
|
2680
|
+
*/
|
|
2681
|
+
category: string;
|
|
2671
2682
|
name: string;
|
|
2672
2683
|
description?: string | undefined;
|
|
2673
2684
|
instructions?: string | undefined;
|
|
2685
|
+
/**
|
|
2686
|
+
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
2687
|
+
*
|
|
2688
|
+
* @deprecated
|
|
2689
|
+
* @public
|
|
2690
|
+
*/
|
|
2674
2691
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
2692
|
+
/**
|
|
2693
|
+
* A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
2694
|
+
* @public
|
|
2695
|
+
*/
|
|
2696
|
+
filter?: ListConversationsFilter | undefined;
|
|
2697
|
+
/**
|
|
2698
|
+
* Provider and model identifier to be used for the projection. Examples: 'openai://gpt-5' or 'google://gemini-3-pro'. This allows a specific projection to use the specified model.
|
|
2699
|
+
* @public
|
|
2700
|
+
*/
|
|
2701
|
+
model?: string | undefined;
|
|
2702
|
+
/**
|
|
2703
|
+
* An execution group for the projection. If specified, only projections from the same group will be combined into a single LLM request.
|
|
2704
|
+
* @public
|
|
2705
|
+
*/
|
|
2706
|
+
group?: string | undefined;
|
|
2675
2707
|
fields: (ProjectionField)[];
|
|
2676
|
-
model?: ProjectionModel | undefined;
|
|
2677
2708
|
/**
|
|
2678
2709
|
* The unique identifier of the tenant when a service token is used.
|
|
2679
2710
|
* @public
|
|
@@ -2704,13 +2735,37 @@ export type ProjectionStatus = typeof ProjectionStatus[keyof typeof ProjectionSt
|
|
|
2704
2735
|
* @public
|
|
2705
2736
|
*/
|
|
2706
2737
|
export interface Projection {
|
|
2707
|
-
|
|
2738
|
+
/**
|
|
2739
|
+
* Free-form category label for a projection.
|
|
2740
|
+
* @public
|
|
2741
|
+
*/
|
|
2742
|
+
category: string;
|
|
2708
2743
|
name: string;
|
|
2709
2744
|
description?: string | undefined;
|
|
2710
2745
|
instructions?: string | undefined;
|
|
2746
|
+
/**
|
|
2747
|
+
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
2748
|
+
*
|
|
2749
|
+
* @deprecated
|
|
2750
|
+
* @public
|
|
2751
|
+
*/
|
|
2711
2752
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
2753
|
+
/**
|
|
2754
|
+
* A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
2755
|
+
* @public
|
|
2756
|
+
*/
|
|
2757
|
+
filter?: ListConversationsFilter | undefined;
|
|
2758
|
+
/**
|
|
2759
|
+
* Provider and model identifier to be used for the projection. Examples: 'openai://gpt-5' or 'google://gemini-3-pro'. This allows a specific projection to use the specified model.
|
|
2760
|
+
* @public
|
|
2761
|
+
*/
|
|
2762
|
+
model?: string | undefined;
|
|
2763
|
+
/**
|
|
2764
|
+
* An execution group for the projection. If specified, only projections from the same group will be combined into a single LLM request.
|
|
2765
|
+
* @public
|
|
2766
|
+
*/
|
|
2767
|
+
group?: string | undefined;
|
|
2712
2768
|
fields: (ProjectionField)[];
|
|
2713
|
-
model?: ProjectionModel | undefined;
|
|
2714
2769
|
id: string;
|
|
2715
2770
|
status: ProjectionStatus;
|
|
2716
2771
|
version: number;
|
|
@@ -2724,31 +2779,6 @@ export interface Projection {
|
|
|
2724
2779
|
export interface CreateProjectionOutput {
|
|
2725
2780
|
projection: Projection;
|
|
2726
2781
|
}
|
|
2727
|
-
/**
|
|
2728
|
-
* @public
|
|
2729
|
-
*/
|
|
2730
|
-
export interface CreateProjectionsCategoryInput {
|
|
2731
|
-
/**
|
|
2732
|
-
* The unique identifier of the tenant when a service token is used.
|
|
2733
|
-
* @public
|
|
2734
|
-
*/
|
|
2735
|
-
company?: string | undefined;
|
|
2736
|
-
id: string;
|
|
2737
|
-
name: string;
|
|
2738
|
-
}
|
|
2739
|
-
/**
|
|
2740
|
-
* @public
|
|
2741
|
-
*/
|
|
2742
|
-
export interface ProjectionsCategory {
|
|
2743
|
-
id: string;
|
|
2744
|
-
name: string;
|
|
2745
|
-
}
|
|
2746
|
-
/**
|
|
2747
|
-
* @public
|
|
2748
|
-
*/
|
|
2749
|
-
export interface CreateProjectionsCategoryOutput {
|
|
2750
|
-
category: ProjectionsCategory;
|
|
2751
|
-
}
|
|
2752
2782
|
/**
|
|
2753
2783
|
* @public
|
|
2754
2784
|
*/
|
|
@@ -2851,22 +2881,6 @@ export interface DeleteProjectionInput {
|
|
|
2851
2881
|
*/
|
|
2852
2882
|
export interface DeleteProjectionOutput {
|
|
2853
2883
|
}
|
|
2854
|
-
/**
|
|
2855
|
-
* @public
|
|
2856
|
-
*/
|
|
2857
|
-
export interface DeleteProjectionsCategoryInput {
|
|
2858
|
-
/**
|
|
2859
|
-
* The unique identifier of the tenant when a service token is used.
|
|
2860
|
-
* @public
|
|
2861
|
-
*/
|
|
2862
|
-
company?: string | undefined;
|
|
2863
|
-
id: string;
|
|
2864
|
-
}
|
|
2865
|
-
/**
|
|
2866
|
-
* @public
|
|
2867
|
-
*/
|
|
2868
|
-
export interface DeleteProjectionsCategoryOutput {
|
|
2869
|
-
}
|
|
2870
2884
|
/**
|
|
2871
2885
|
* @public
|
|
2872
2886
|
*/
|
|
@@ -2948,6 +2962,22 @@ export interface FlatAggregationResult {
|
|
|
2948
2962
|
*/
|
|
2949
2963
|
buckets: (FlatAggregationBucket)[];
|
|
2950
2964
|
}
|
|
2965
|
+
/**
|
|
2966
|
+
* @public
|
|
2967
|
+
*/
|
|
2968
|
+
export interface GetAnalysisSettingsInput {
|
|
2969
|
+
/**
|
|
2970
|
+
* The unique identifier of the tenant when a service token is used.
|
|
2971
|
+
* @public
|
|
2972
|
+
*/
|
|
2973
|
+
company?: string | undefined;
|
|
2974
|
+
}
|
|
2975
|
+
/**
|
|
2976
|
+
* @public
|
|
2977
|
+
*/
|
|
2978
|
+
export interface GetAnalysisSettingsOutput {
|
|
2979
|
+
settings: AnalysisSettings;
|
|
2980
|
+
}
|
|
2951
2981
|
/**
|
|
2952
2982
|
* @public
|
|
2953
2983
|
*/
|
|
@@ -3845,7 +3875,6 @@ export interface ListProjectionsInput {
|
|
|
3845
3875
|
*/
|
|
3846
3876
|
export interface ListProjectionsOutput {
|
|
3847
3877
|
projections: (Projection)[];
|
|
3848
|
-
categories: (ProjectionsCategory)[];
|
|
3849
3878
|
}
|
|
3850
3879
|
/**
|
|
3851
3880
|
* @public
|
|
@@ -3904,6 +3933,37 @@ export interface PlaylistAccessNotify {
|
|
|
3904
3933
|
emails: (string)[];
|
|
3905
3934
|
message?: string | undefined;
|
|
3906
3935
|
}
|
|
3936
|
+
/**
|
|
3937
|
+
* @public
|
|
3938
|
+
*/
|
|
3939
|
+
export interface PutAnalysisSettingsInput {
|
|
3940
|
+
/**
|
|
3941
|
+
* Default provider and model identifier for projections that do not define a custom model. Example: 'openai://gpt-5'.
|
|
3942
|
+
* @public
|
|
3943
|
+
*/
|
|
3944
|
+
defaultModel?: string | undefined;
|
|
3945
|
+
/**
|
|
3946
|
+
* True to disable analysis completely for the organization.
|
|
3947
|
+
* @public
|
|
3948
|
+
*/
|
|
3949
|
+
disabled?: boolean | undefined;
|
|
3950
|
+
/**
|
|
3951
|
+
* A Filter for conversations that SI would work for applied to the organization, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
3952
|
+
* @public
|
|
3953
|
+
*/
|
|
3954
|
+
filter?: ListConversationsFilter | undefined;
|
|
3955
|
+
/**
|
|
3956
|
+
* The unique identifier of the tenant when a service token is used.
|
|
3957
|
+
* @public
|
|
3958
|
+
*/
|
|
3959
|
+
company?: string | undefined;
|
|
3960
|
+
}
|
|
3961
|
+
/**
|
|
3962
|
+
* @public
|
|
3963
|
+
*/
|
|
3964
|
+
export interface PutAnalysisSettingsOutput {
|
|
3965
|
+
settings: AnalysisSettings;
|
|
3966
|
+
}
|
|
3907
3967
|
/**
|
|
3908
3968
|
* @public
|
|
3909
3969
|
*/
|
|
@@ -4117,43 +4177,49 @@ export interface UpdatePlaylistAccessOutput {
|
|
|
4117
4177
|
* @public
|
|
4118
4178
|
*/
|
|
4119
4179
|
export interface UpdateProjectionInput {
|
|
4120
|
-
|
|
4180
|
+
/**
|
|
4181
|
+
* Free-form category label for a projection.
|
|
4182
|
+
* @public
|
|
4183
|
+
*/
|
|
4184
|
+
category: string;
|
|
4121
4185
|
name: string;
|
|
4122
4186
|
description?: string | undefined;
|
|
4123
4187
|
instructions?: string | undefined;
|
|
4188
|
+
/**
|
|
4189
|
+
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
4190
|
+
*
|
|
4191
|
+
* @deprecated
|
|
4192
|
+
* @public
|
|
4193
|
+
*/
|
|
4124
4194
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
4125
|
-
fields: (ProjectionField)[];
|
|
4126
|
-
model?: ProjectionModel | undefined;
|
|
4127
4195
|
/**
|
|
4128
|
-
*
|
|
4196
|
+
* A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
4129
4197
|
* @public
|
|
4130
4198
|
*/
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
export interface UpdateProjectionsCategoryInput {
|
|
4199
|
+
filter?: ListConversationsFilter | undefined;
|
|
4200
|
+
/**
|
|
4201
|
+
* Provider and model identifier to be used for the projection. Examples: 'openai://gpt-5' or 'google://gemini-3-pro'. This allows a specific projection to use the specified model.
|
|
4202
|
+
* @public
|
|
4203
|
+
*/
|
|
4204
|
+
model?: string | undefined;
|
|
4205
|
+
/**
|
|
4206
|
+
* An execution group for the projection. If specified, only projections from the same group will be combined into a single LLM request.
|
|
4207
|
+
* @public
|
|
4208
|
+
*/
|
|
4209
|
+
group?: string | undefined;
|
|
4210
|
+
fields: (ProjectionField)[];
|
|
4144
4211
|
/**
|
|
4145
4212
|
* The unique identifier of the tenant when a service token is used.
|
|
4146
4213
|
* @public
|
|
4147
4214
|
*/
|
|
4148
4215
|
company?: string | undefined;
|
|
4149
4216
|
id: string;
|
|
4150
|
-
name: string;
|
|
4151
4217
|
}
|
|
4152
4218
|
/**
|
|
4153
4219
|
* @public
|
|
4154
4220
|
*/
|
|
4155
|
-
export interface
|
|
4156
|
-
|
|
4221
|
+
export interface UpdateProjectionOutput {
|
|
4222
|
+
projection: Projection;
|
|
4157
4223
|
}
|
|
4158
4224
|
/**
|
|
4159
4225
|
* @public
|
|
@@ -2,15 +2,14 @@ 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";
|
|
6
5
|
import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "../commands/DeleteDashboardCommand";
|
|
7
6
|
import { DeleteFilterCommandInput, DeleteFilterCommandOutput } from "../commands/DeleteFilterCommand";
|
|
8
7
|
import { DeletePlaylistCommandInput, DeletePlaylistCommandOutput } from "../commands/DeletePlaylistCommand";
|
|
9
8
|
import { DeletePlaylistItemCommandInput, DeletePlaylistItemCommandOutput } from "../commands/DeletePlaylistItemCommand";
|
|
10
9
|
import { DeleteProjectionCommandInput, DeleteProjectionCommandOutput } from "../commands/DeleteProjectionCommand";
|
|
11
|
-
import { DeleteProjectionsCategoryCommandInput, DeleteProjectionsCategoryCommandOutput } from "../commands/DeleteProjectionsCategoryCommand";
|
|
12
10
|
import { DisableProjectionCommandInput, DisableProjectionCommandOutput } from "../commands/DisableProjectionCommand";
|
|
13
11
|
import { EnableProjectionCommandInput, EnableProjectionCommandOutput } from "../commands/EnableProjectionCommand";
|
|
12
|
+
import { GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput } from "../commands/GetAnalysisSettingsCommand";
|
|
14
13
|
import { GetCallCharacteristicsCommandInput, GetCallCharacteristicsCommandOutput } from "../commands/GetCallCharacteristicsCommand";
|
|
15
14
|
import { GetCallInsightsCommandInput, GetCallInsightsCommandOutput } from "../commands/GetCallInsightsCommand";
|
|
16
15
|
import { GetCallStateCommandInput, GetCallStateCommandOutput } from "../commands/GetCallStateCommand";
|
|
@@ -39,6 +38,7 @@ import { ListPlaylistsCommandInput, ListPlaylistsCommandOutput } from "../comman
|
|
|
39
38
|
import { ListProjectionsCommandInput, ListProjectionsCommandOutput } from "../commands/ListProjectionsCommand";
|
|
40
39
|
import { ListWatchHistoryCommandInput, ListWatchHistoryCommandOutput } from "../commands/ListWatchHistoryCommand";
|
|
41
40
|
import { PauseProjectionCommandInput, PauseProjectionCommandOutput } from "../commands/PauseProjectionCommand";
|
|
41
|
+
import { PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput } from "../commands/PutAnalysisSettingsCommand";
|
|
42
42
|
import { PutPlaylistItemCommandInput, PutPlaylistItemCommandOutput } from "../commands/PutPlaylistItemCommand";
|
|
43
43
|
import { QueryConversationsCountCommandInput, QueryConversationsCountCommandOutput } from "../commands/QueryConversationsCountCommand";
|
|
44
44
|
import { ScheduleCallSummaryGenerationCommandInput, ScheduleCallSummaryGenerationCommandOutput } from "../commands/ScheduleCallSummaryGenerationCommand";
|
|
@@ -50,7 +50,6 @@ import { UpdatePinnedDashboardsCommandInput, UpdatePinnedDashboardsCommandOutput
|
|
|
50
50
|
import { UpdatePlaylistAccessCommandInput, UpdatePlaylistAccessCommandOutput } from "../commands/UpdatePlaylistAccessCommand";
|
|
51
51
|
import { UpdatePlaylistCommandInput, UpdatePlaylistCommandOutput } from "../commands/UpdatePlaylistCommand";
|
|
52
52
|
import { UpdateProjectionCommandInput, UpdateProjectionCommandOutput } from "../commands/UpdateProjectionCommand";
|
|
53
|
-
import { UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput } from "../commands/UpdateProjectionsCategoryCommand";
|
|
54
53
|
import { WatchCommandInput, WatchCommandOutput } from "../commands/WatchCommand";
|
|
55
54
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
56
55
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
@@ -70,10 +69,6 @@ export declare const se_CreatePlaylistCommand: (input: CreatePlaylistCommandInpu
|
|
|
70
69
|
* serializeAws_restJson1CreateProjectionCommand
|
|
71
70
|
*/
|
|
72
71
|
export declare const se_CreateProjectionCommand: (input: CreateProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* serializeAws_restJson1CreateProjectionsCategoryCommand
|
|
75
|
-
*/
|
|
76
|
-
export declare const se_CreateProjectionsCategoryCommand: (input: CreateProjectionsCategoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
72
|
/**
|
|
78
73
|
* serializeAws_restJson1DeleteDashboardCommand
|
|
79
74
|
*/
|
|
@@ -94,10 +89,6 @@ export declare const se_DeletePlaylistItemCommand: (input: DeletePlaylistItemCom
|
|
|
94
89
|
* serializeAws_restJson1DeleteProjectionCommand
|
|
95
90
|
*/
|
|
96
91
|
export declare const se_DeleteProjectionCommand: (input: DeleteProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
-
/**
|
|
98
|
-
* serializeAws_restJson1DeleteProjectionsCategoryCommand
|
|
99
|
-
*/
|
|
100
|
-
export declare const se_DeleteProjectionsCategoryCommand: (input: DeleteProjectionsCategoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
92
|
/**
|
|
102
93
|
* serializeAws_restJson1DisableProjectionCommand
|
|
103
94
|
*/
|
|
@@ -106,6 +97,10 @@ export declare const se_DisableProjectionCommand: (input: DisableProjectionComma
|
|
|
106
97
|
* serializeAws_restJson1EnableProjectionCommand
|
|
107
98
|
*/
|
|
108
99
|
export declare const se_EnableProjectionCommand: (input: EnableProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
+
/**
|
|
101
|
+
* serializeAws_restJson1GetAnalysisSettingsCommand
|
|
102
|
+
*/
|
|
103
|
+
export declare const se_GetAnalysisSettingsCommand: (input: GetAnalysisSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
104
|
/**
|
|
110
105
|
* serializeAws_restJson1GetCallCharacteristicsCommand
|
|
111
106
|
*/
|
|
@@ -218,6 +213,10 @@ export declare const se_ListWatchHistoryCommand: (input: ListWatchHistoryCommand
|
|
|
218
213
|
* serializeAws_restJson1PauseProjectionCommand
|
|
219
214
|
*/
|
|
220
215
|
export declare const se_PauseProjectionCommand: (input: PauseProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
216
|
+
/**
|
|
217
|
+
* serializeAws_restJson1PutAnalysisSettingsCommand
|
|
218
|
+
*/
|
|
219
|
+
export declare const se_PutAnalysisSettingsCommand: (input: PutAnalysisSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
221
220
|
/**
|
|
222
221
|
* serializeAws_restJson1PutPlaylistItemCommand
|
|
223
222
|
*/
|
|
@@ -262,10 +261,6 @@ export declare const se_UpdatePlaylistAccessCommand: (input: UpdatePlaylistAcces
|
|
|
262
261
|
* serializeAws_restJson1UpdateProjectionCommand
|
|
263
262
|
*/
|
|
264
263
|
export declare const se_UpdateProjectionCommand: (input: UpdateProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
265
|
-
/**
|
|
266
|
-
* serializeAws_restJson1UpdateProjectionsCategoryCommand
|
|
267
|
-
*/
|
|
268
|
-
export declare const se_UpdateProjectionsCategoryCommand: (input: UpdateProjectionsCategoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
269
264
|
/**
|
|
270
265
|
* serializeAws_restJson1WatchCommand
|
|
271
266
|
*/
|
|
@@ -286,10 +281,6 @@ export declare const de_CreatePlaylistCommand: (output: __HttpResponse, context:
|
|
|
286
281
|
* deserializeAws_restJson1CreateProjectionCommand
|
|
287
282
|
*/
|
|
288
283
|
export declare const de_CreateProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectionCommandOutput>;
|
|
289
|
-
/**
|
|
290
|
-
* deserializeAws_restJson1CreateProjectionsCategoryCommand
|
|
291
|
-
*/
|
|
292
|
-
export declare const de_CreateProjectionsCategoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectionsCategoryCommandOutput>;
|
|
293
284
|
/**
|
|
294
285
|
* deserializeAws_restJson1DeleteDashboardCommand
|
|
295
286
|
*/
|
|
@@ -310,10 +301,6 @@ export declare const de_DeletePlaylistItemCommand: (output: __HttpResponse, cont
|
|
|
310
301
|
* deserializeAws_restJson1DeleteProjectionCommand
|
|
311
302
|
*/
|
|
312
303
|
export declare const de_DeleteProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectionCommandOutput>;
|
|
313
|
-
/**
|
|
314
|
-
* deserializeAws_restJson1DeleteProjectionsCategoryCommand
|
|
315
|
-
*/
|
|
316
|
-
export declare const de_DeleteProjectionsCategoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectionsCategoryCommandOutput>;
|
|
317
304
|
/**
|
|
318
305
|
* deserializeAws_restJson1DisableProjectionCommand
|
|
319
306
|
*/
|
|
@@ -322,6 +309,10 @@ export declare const de_DisableProjectionCommand: (output: __HttpResponse, conte
|
|
|
322
309
|
* deserializeAws_restJson1EnableProjectionCommand
|
|
323
310
|
*/
|
|
324
311
|
export declare const de_EnableProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableProjectionCommandOutput>;
|
|
312
|
+
/**
|
|
313
|
+
* deserializeAws_restJson1GetAnalysisSettingsCommand
|
|
314
|
+
*/
|
|
315
|
+
export declare const de_GetAnalysisSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAnalysisSettingsCommandOutput>;
|
|
325
316
|
/**
|
|
326
317
|
* deserializeAws_restJson1GetCallCharacteristicsCommand
|
|
327
318
|
*/
|
|
@@ -434,6 +425,10 @@ export declare const de_ListWatchHistoryCommand: (output: __HttpResponse, contex
|
|
|
434
425
|
* deserializeAws_restJson1PauseProjectionCommand
|
|
435
426
|
*/
|
|
436
427
|
export declare const de_PauseProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PauseProjectionCommandOutput>;
|
|
428
|
+
/**
|
|
429
|
+
* deserializeAws_restJson1PutAnalysisSettingsCommand
|
|
430
|
+
*/
|
|
431
|
+
export declare const de_PutAnalysisSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAnalysisSettingsCommandOutput>;
|
|
437
432
|
/**
|
|
438
433
|
* deserializeAws_restJson1PutPlaylistItemCommand
|
|
439
434
|
*/
|
|
@@ -478,10 +473,6 @@ export declare const de_UpdatePlaylistAccessCommand: (output: __HttpResponse, co
|
|
|
478
473
|
* deserializeAws_restJson1UpdateProjectionCommand
|
|
479
474
|
*/
|
|
480
475
|
export declare const de_UpdateProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectionCommandOutput>;
|
|
481
|
-
/**
|
|
482
|
-
* deserializeAws_restJson1UpdateProjectionsCategoryCommand
|
|
483
|
-
*/
|
|
484
|
-
export declare const de_UpdateProjectionsCategoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectionsCategoryCommandOutput>;
|
|
485
476
|
/**
|
|
486
477
|
* deserializeAws_restJson1WatchCommand
|
|
487
478
|
*/
|
|
@@ -15,13 +15,8 @@ export declare const getRuntimeConfig: (config: WdaInsightsClientConfig) => {
|
|
|
15
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
16
|
env?: "stage" | "stable" | "prod" | undefined;
|
|
17
17
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
18
|
-
cacheMiddleware?: boolean | undefined;
|
|
19
|
-
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
20
|
-
protocolSettings?: {
|
|
21
|
-
[setting: string]: unknown;
|
|
22
|
-
defaultNamespace?: string | undefined;
|
|
23
|
-
} | undefined;
|
|
24
18
|
apiVersion: string;
|
|
19
|
+
cacheMiddleware?: boolean | undefined;
|
|
25
20
|
urlParser: import("@smithy/types").UrlParser;
|
|
26
21
|
base64Decoder: import("@smithy/types").Decoder;
|
|
27
22
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -16,13 +16,8 @@ export declare const getRuntimeConfig: (config: WdaInsightsClientConfig) => {
|
|
|
16
16
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
17
17
|
env?: "stage" | "stable" | "prod" | undefined;
|
|
18
18
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
19
|
-
cacheMiddleware?: boolean | undefined;
|
|
20
|
-
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
21
|
-
protocolSettings?: {
|
|
22
|
-
[setting: string]: unknown;
|
|
23
|
-
defaultNamespace?: string | undefined;
|
|
24
|
-
} | undefined;
|
|
25
19
|
apiVersion: string;
|
|
20
|
+
cacheMiddleware?: boolean | undefined;
|
|
26
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
23
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -8,13 +8,8 @@ export declare const getRuntimeConfig: (config: WdaInsightsClientConfig) => {
|
|
|
8
8
|
env?: "stage" | "stable" | "prod" | undefined;
|
|
9
9
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
10
10
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
|
-
cacheMiddleware?: boolean | undefined;
|
|
12
|
-
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
13
|
-
protocolSettings?: {
|
|
14
|
-
[setting: string]: unknown;
|
|
15
|
-
defaultNamespace?: string | undefined;
|
|
16
|
-
} | undefined;
|
|
17
11
|
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean | undefined;
|
|
18
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
20
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
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.32",
|
|
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",
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateProjectionsCategoryCommand = exports.$Command = void 0;
|
|
4
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
class UpdateProjectionsCategoryCommand extends smithy_client_1.Command.classBuilder()
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [
|
|
11
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
-
];
|
|
13
|
-
})
|
|
14
|
-
.s("WdaInsights", "UpdateProjectionsCategory", {})
|
|
15
|
-
.n("WdaInsightsClient", "UpdateProjectionsCategoryCommand")
|
|
16
|
-
.f(void 0, void 0)
|
|
17
|
-
.ser(Aws_restJson1_1.se_UpdateProjectionsCategoryCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_UpdateProjectionsCategoryCommand)
|
|
19
|
-
.build() {
|
|
20
|
-
}
|
|
21
|
-
exports.UpdateProjectionsCategoryCommand = UpdateProjectionsCategoryCommand;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { de_CreateProjectionsCategoryCommand, se_CreateProjectionsCategoryCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
export { $Command };
|
|
5
|
-
export class CreateProjectionsCategoryCommand extends $Command.classBuilder()
|
|
6
|
-
.m(function (Command, cs, config, o) {
|
|
7
|
-
return [
|
|
8
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
-
];
|
|
10
|
-
})
|
|
11
|
-
.s("WdaInsights", "CreateProjectionsCategory", {})
|
|
12
|
-
.n("WdaInsightsClient", "CreateProjectionsCategoryCommand")
|
|
13
|
-
.f(void 0, void 0)
|
|
14
|
-
.ser(se_CreateProjectionsCategoryCommand)
|
|
15
|
-
.de(de_CreateProjectionsCategoryCommand)
|
|
16
|
-
.build() {
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { de_DeleteProjectionsCategoryCommand, se_DeleteProjectionsCategoryCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
export { $Command };
|
|
5
|
-
export class DeleteProjectionsCategoryCommand extends $Command.classBuilder()
|
|
6
|
-
.m(function (Command, cs, config, o) {
|
|
7
|
-
return [
|
|
8
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
-
];
|
|
10
|
-
})
|
|
11
|
-
.s("WdaInsights", "DeleteProjectionsCategory", {})
|
|
12
|
-
.n("WdaInsightsClient", "DeleteProjectionsCategoryCommand")
|
|
13
|
-
.f(void 0, void 0)
|
|
14
|
-
.ser(se_DeleteProjectionsCategoryCommand)
|
|
15
|
-
.de(de_DeleteProjectionsCategoryCommand)
|
|
16
|
-
.build() {
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { de_UpdateProjectionsCategoryCommand, se_UpdateProjectionsCategoryCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
export { $Command };
|
|
5
|
-
export class UpdateProjectionsCategoryCommand extends $Command.classBuilder()
|
|
6
|
-
.m(function (Command, cs, config, o) {
|
|
7
|
-
return [
|
|
8
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
-
];
|
|
10
|
-
})
|
|
11
|
-
.s("WdaInsights", "UpdateProjectionsCategory", {})
|
|
12
|
-
.n("WdaInsightsClient", "UpdateProjectionsCategoryCommand")
|
|
13
|
-
.f(void 0, void 0)
|
|
14
|
-
.ser(se_UpdateProjectionsCategoryCommand)
|
|
15
|
-
.de(de_UpdateProjectionsCategoryCommand)
|
|
16
|
-
.build() {
|
|
17
|
-
}
|