@wildix/wda-insights-client 1.1.34 → 1.1.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist-cjs/WdaInsights.js +0 -8
  2. package/dist-cjs/commands/index.js +0 -4
  3. package/dist-cjs/models/models_0.js +9 -6
  4. package/dist-cjs/protocols/Aws_restJson1.js +52 -151
  5. package/dist-es/WdaInsights.js +0 -8
  6. package/dist-es/commands/index.js +0 -4
  7. package/dist-es/models/models_0.js +8 -5
  8. package/dist-es/protocols/Aws_restJson1.js +48 -139
  9. package/dist-types/WdaInsights.d.ts +0 -28
  10. package/dist-types/WdaInsightsClient.d.ts +2 -6
  11. package/dist-types/commands/CreateProjectionCommand.d.ts +360 -6
  12. package/dist-types/commands/DisableProjectionCommand.d.ts +180 -3
  13. package/dist-types/commands/EnableProjectionCommand.d.ts +180 -3
  14. package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +178 -0
  15. package/dist-types/commands/GetProjectionCommand.d.ts +180 -3
  16. package/dist-types/commands/ListConversationsCommand.d.ts +22 -30
  17. package/dist-types/commands/ListPlaylistItemsCommand.d.ts +22 -30
  18. package/dist-types/commands/ListProjectionsCommand.d.ts +181 -10
  19. package/dist-types/commands/ListWatchHistoryCommand.d.ts +22 -30
  20. package/dist-types/commands/PauseProjectionCommand.d.ts +180 -3
  21. package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +356 -0
  22. package/dist-types/commands/UpdateProjectionCommand.d.ts +360 -4
  23. package/dist-types/commands/index.d.ts +0 -4
  24. package/dist-types/models/models_0.d.ts +126 -102
  25. package/dist-types/protocols/Aws_restJson1.d.ts +0 -36
  26. package/dist-types/runtimeConfig.browser.d.ts +1 -6
  27. package/dist-types/runtimeConfig.d.ts +1 -6
  28. package/dist-types/runtimeConfig.native.d.ts +1 -6
  29. package/package.json +1 -1
  30. package/dist-cjs/commands/CreateProjectionsCategoryCommand.js +0 -21
  31. package/dist-cjs/commands/DeleteProjectionsCategoryCommand.js +0 -21
  32. package/dist-cjs/commands/UpdateProjectionAnalysisSettingsCommand.js +0 -21
  33. package/dist-cjs/commands/UpdateProjectionsCategoryCommand.js +0 -21
  34. package/dist-es/commands/CreateProjectionsCategoryCommand.js +0 -17
  35. package/dist-es/commands/DeleteProjectionsCategoryCommand.js +0 -17
  36. package/dist-es/commands/UpdateProjectionAnalysisSettingsCommand.js +0 -17
  37. package/dist-es/commands/UpdateProjectionsCategoryCommand.js +0 -17
  38. package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +0 -81
  39. package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +0 -75
  40. package/dist-types/commands/UpdateProjectionAnalysisSettingsCommand.d.ts +0 -145
  41. package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +0 -83
@@ -146,6 +146,31 @@ export interface CallFlowRecording {
146
146
  owner: CallRecordOwner;
147
147
  url: string;
148
148
  pauses: (CallRecordPause)[];
149
+ destinations?: (CallFlowAttachmentDestination)[] | undefined;
150
+ }
151
+ /**
152
+ * @public
153
+ * @enum
154
+ */
155
+ export declare const CallFlowTranscriptionStatus: {
156
+ readonly AVAILABLE: "AVAILABLE";
157
+ readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
158
+ readonly UNAVAILABLE: "UNAVAILABLE";
159
+ };
160
+ /**
161
+ * @public
162
+ */
163
+ export type CallFlowTranscriptionStatus = typeof CallFlowTranscriptionStatus[keyof typeof CallFlowTranscriptionStatus];
164
+ /**
165
+ * @public
166
+ */
167
+ export interface CallFlowTranscription {
168
+ /**
169
+ * If present, indicates the explicit recipients from 'Send To Emails'
170
+ * @public
171
+ */
172
+ destinations?: (CallFlowAttachmentDestination)[] | undefined;
173
+ status: CallFlowTranscriptionStatus;
149
174
  }
150
175
  /**
151
176
  * @public
@@ -158,7 +183,7 @@ export interface CallFlowVoicemail {
158
183
  /**
159
184
  * @public
160
185
  */
161
- export type CallFlowAttachment = CallFlowAttachment.FaxMember | CallFlowAttachment.RecordingMember | CallFlowAttachment.VoicemailMember | CallFlowAttachment.$UnknownMember;
186
+ export type CallFlowAttachment = CallFlowAttachment.FaxMember | CallFlowAttachment.RecordingMember | CallFlowAttachment.TranscriptionMember | CallFlowAttachment.VoicemailMember | CallFlowAttachment.$UnknownMember;
162
187
  /**
163
188
  * @public
164
189
  */
@@ -167,18 +192,28 @@ export declare namespace CallFlowAttachment {
167
192
  recording: CallFlowRecording;
168
193
  fax?: never;
169
194
  voicemail?: never;
195
+ transcription?: never;
170
196
  $unknown?: never;
171
197
  }
172
198
  interface FaxMember {
173
199
  recording?: never;
174
200
  fax: CallFlowFax;
175
201
  voicemail?: never;
202
+ transcription?: never;
176
203
  $unknown?: never;
177
204
  }
178
205
  interface VoicemailMember {
179
206
  recording?: never;
180
207
  fax?: never;
181
208
  voicemail: CallFlowVoicemail;
209
+ transcription?: never;
210
+ $unknown?: never;
211
+ }
212
+ interface TranscriptionMember {
213
+ recording?: never;
214
+ fax?: never;
215
+ voicemail?: never;
216
+ transcription: CallFlowTranscription;
182
217
  $unknown?: never;
183
218
  }
184
219
  /**
@@ -188,12 +223,14 @@ export declare namespace CallFlowAttachment {
188
223
  recording?: never;
189
224
  fax?: never;
190
225
  voicemail?: never;
226
+ transcription?: never;
191
227
  $unknown: [string, any];
192
228
  }
193
229
  interface Visitor<T> {
194
230
  recording: (value: CallFlowRecording) => T;
195
231
  fax: (value: CallFlowFax) => T;
196
232
  voicemail: (value: CallFlowVoicemail) => T;
233
+ transcription: (value: CallFlowTranscription) => T;
197
234
  _: (name: string, value: any) => T;
198
235
  }
199
236
  const visit: <T>(value: CallFlowAttachment, visitor: Visitor<T>) => T;
@@ -204,6 +241,7 @@ export declare namespace CallFlowAttachment {
204
241
  */
205
242
  export declare const CallFlowAttachmentType: {
206
243
  readonly FAX: "FAX";
244
+ readonly TRANSCRIPTION: "TRANSCRIPTION";
207
245
  readonly VOICEMAIL: "VOICEMAIL";
208
246
  };
209
247
  /**
@@ -305,25 +343,6 @@ export declare const License: {
305
343
  * @public
306
344
  */
307
345
  export type License = typeof License[keyof typeof License];
308
- /**
309
- * @public
310
- */
311
- export interface CallFlowNotifications {
312
- destinations?: (CallFlowAttachmentDestination)[] | undefined;
313
- }
314
- /**
315
- * @public
316
- * @enum
317
- */
318
- export declare const CallFlowTranscriptionStatus: {
319
- readonly AVAILABLE: "AVAILABLE";
320
- readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
321
- readonly UNAVAILABLE: "UNAVAILABLE";
322
- };
323
- /**
324
- * @public
325
- */
326
- export type CallFlowTranscriptionStatus = typeof CallFlowTranscriptionStatus[keyof typeof CallFlowTranscriptionStatus];
327
346
  /**
328
347
  * @public
329
348
  * @enum
@@ -414,8 +433,26 @@ export interface CallRecord {
414
433
  remotePhoneCountryCodeStr?: string | undefined;
415
434
  remotePhoneLocation?: string | undefined;
416
435
  callStatus?: ConversationStatus | undefined;
436
+ /**
437
+ * Please use `attachments.transcription.status` instead.
438
+ *
439
+ * @deprecated
440
+ * @public
441
+ */
417
442
  transcriptionStatus?: CallFlowTranscriptionStatus | undefined;
443
+ /**
444
+ * Please use `attachments.transcription.language` instead.
445
+ *
446
+ * @deprecated
447
+ * @public
448
+ */
418
449
  transcriptionLanguage?: string | undefined;
450
+ /**
451
+ * Please use `attachments.transcription.seconds` instead.
452
+ *
453
+ * @deprecated
454
+ * @public
455
+ */
419
456
  transcriptionSeconds?: number | undefined;
420
457
  /**
421
458
  * Consider to use `attachments` instead.
@@ -439,7 +476,6 @@ export interface CallRecord {
439
476
  */
440
477
  attachmentDestinations?: (CallFlowAttachmentDestination)[] | undefined;
441
478
  attachments?: (CallFlowAttachment)[] | undefined;
442
- notifications?: CallFlowNotifications | undefined;
443
479
  id: string;
444
480
  pbx: string;
445
481
  time: number;
@@ -2131,6 +2167,16 @@ export interface AnalysisSettings {
2131
2167
  * @public
2132
2168
  */
2133
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;
2134
2180
  }
2135
2181
  /**
2136
2182
  * @public
@@ -2628,12 +2674,26 @@ export interface ProjectionField {
2628
2674
  * @public
2629
2675
  */
2630
2676
  export interface CreateProjectionInput {
2631
- categoryId: string;
2677
+ /**
2678
+ * Free-form category label for a projection.
2679
+ * @public
2680
+ */
2681
+ category: string;
2632
2682
  name: string;
2633
2683
  description?: string | undefined;
2634
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
+ */
2635
2691
  conditions?: (ProjectionCondition)[] | undefined;
2636
- fields: (ProjectionField)[];
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;
2637
2697
  /**
2638
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.
2639
2699
  * @public
@@ -2644,6 +2704,7 @@ export interface CreateProjectionInput {
2644
2704
  * @public
2645
2705
  */
2646
2706
  group?: string | undefined;
2707
+ fields: (ProjectionField)[];
2647
2708
  /**
2648
2709
  * The unique identifier of the tenant when a service token is used.
2649
2710
  * @public
@@ -2674,12 +2735,26 @@ export type ProjectionStatus = typeof ProjectionStatus[keyof typeof ProjectionSt
2674
2735
  * @public
2675
2736
  */
2676
2737
  export interface Projection {
2677
- categoryId: string;
2738
+ /**
2739
+ * Free-form category label for a projection.
2740
+ * @public
2741
+ */
2742
+ category: string;
2678
2743
  name: string;
2679
2744
  description?: string | undefined;
2680
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
+ */
2681
2752
  conditions?: (ProjectionCondition)[] | undefined;
2682
- fields: (ProjectionField)[];
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;
2683
2758
  /**
2684
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.
2685
2760
  * @public
@@ -2690,6 +2765,7 @@ export interface Projection {
2690
2765
  * @public
2691
2766
  */
2692
2767
  group?: string | undefined;
2768
+ fields: (ProjectionField)[];
2693
2769
  id: string;
2694
2770
  status: ProjectionStatus;
2695
2771
  version: number;
@@ -2703,31 +2779,6 @@ export interface Projection {
2703
2779
  export interface CreateProjectionOutput {
2704
2780
  projection: Projection;
2705
2781
  }
2706
- /**
2707
- * @public
2708
- */
2709
- export interface CreateProjectionsCategoryInput {
2710
- /**
2711
- * The unique identifier of the tenant when a service token is used.
2712
- * @public
2713
- */
2714
- company?: string | undefined;
2715
- id: string;
2716
- name: string;
2717
- }
2718
- /**
2719
- * @public
2720
- */
2721
- export interface ProjectionsCategory {
2722
- id: string;
2723
- name: string;
2724
- }
2725
- /**
2726
- * @public
2727
- */
2728
- export interface CreateProjectionsCategoryOutput {
2729
- category: ProjectionsCategory;
2730
- }
2731
2782
  /**
2732
2783
  * @public
2733
2784
  */
@@ -2830,22 +2881,6 @@ export interface DeleteProjectionInput {
2830
2881
  */
2831
2882
  export interface DeleteProjectionOutput {
2832
2883
  }
2833
- /**
2834
- * @public
2835
- */
2836
- export interface DeleteProjectionsCategoryInput {
2837
- /**
2838
- * The unique identifier of the tenant when a service token is used.
2839
- * @public
2840
- */
2841
- company?: string | undefined;
2842
- id: string;
2843
- }
2844
- /**
2845
- * @public
2846
- */
2847
- export interface DeleteProjectionsCategoryOutput {
2848
- }
2849
2884
  /**
2850
2885
  * @public
2851
2886
  */
@@ -3840,7 +3875,6 @@ export interface ListProjectionsInput {
3840
3875
  */
3841
3876
  export interface ListProjectionsOutput {
3842
3877
  projections: (Projection)[];
3843
- categories: (ProjectionsCategory)[];
3844
3878
  }
3845
3879
  /**
3846
3880
  * @public
@@ -3908,6 +3942,16 @@ export interface PutAnalysisSettingsInput {
3908
3942
  * @public
3909
3943
  */
3910
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;
3911
3955
  /**
3912
3956
  * The unique identifier of the tenant when a service token is used.
3913
3957
  * @public
@@ -4133,29 +4177,26 @@ export interface UpdatePlaylistAccessOutput {
4133
4177
  * @public
4134
4178
  */
4135
4179
  export interface UpdateProjectionInput {
4136
- categoryId: string;
4180
+ /**
4181
+ * Free-form category label for a projection.
4182
+ * @public
4183
+ */
4184
+ category: string;
4137
4185
  name: string;
4138
4186
  description?: string | undefined;
4139
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
+ */
4140
4194
  conditions?: (ProjectionCondition)[] | undefined;
4141
- fields: (ProjectionField)[];
4142
4195
  /**
4143
- * The unique identifier of the tenant when a service token is used.
4196
+ * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
4144
4197
  * @public
4145
4198
  */
4146
- company?: string | undefined;
4147
- id: string;
4148
- }
4149
- /**
4150
- * @public
4151
- */
4152
- export interface UpdateProjectionOutput {
4153
- projection: Projection;
4154
- }
4155
- /**
4156
- * @public
4157
- */
4158
- export interface UpdateProjectionAnalysisSettingsInput {
4199
+ filter?: ListConversationsFilter | undefined;
4159
4200
  /**
4160
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.
4161
4202
  * @public
@@ -4166,6 +4207,7 @@ export interface UpdateProjectionAnalysisSettingsInput {
4166
4207
  * @public
4167
4208
  */
4168
4209
  group?: string | undefined;
4210
+ fields: (ProjectionField)[];
4169
4211
  /**
4170
4212
  * The unique identifier of the tenant when a service token is used.
4171
4213
  * @public
@@ -4176,27 +4218,9 @@ export interface UpdateProjectionAnalysisSettingsInput {
4176
4218
  /**
4177
4219
  * @public
4178
4220
  */
4179
- export interface UpdateProjectionAnalysisSettingsOutput {
4221
+ export interface UpdateProjectionOutput {
4180
4222
  projection: Projection;
4181
4223
  }
4182
- /**
4183
- * @public
4184
- */
4185
- export interface UpdateProjectionsCategoryInput {
4186
- /**
4187
- * The unique identifier of the tenant when a service token is used.
4188
- * @public
4189
- */
4190
- company?: string | undefined;
4191
- id: string;
4192
- name: string;
4193
- }
4194
- /**
4195
- * @public
4196
- */
4197
- export interface UpdateProjectionsCategoryOutput {
4198
- category: ProjectionsCategory;
4199
- }
4200
4224
  /**
4201
4225
  * @public
4202
4226
  */
@@ -2,13 +2,11 @@ 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";
14
12
  import { GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput } from "../commands/GetAnalysisSettingsCommand";
@@ -51,9 +49,7 @@ import { UpdateFilterCommandInput, UpdateFilterCommandOutput } from "../commands
51
49
  import { UpdatePinnedDashboardsCommandInput, UpdatePinnedDashboardsCommandOutput } from "../commands/UpdatePinnedDashboardsCommand";
52
50
  import { UpdatePlaylistAccessCommandInput, UpdatePlaylistAccessCommandOutput } from "../commands/UpdatePlaylistAccessCommand";
53
51
  import { UpdatePlaylistCommandInput, UpdatePlaylistCommandOutput } from "../commands/UpdatePlaylistCommand";
54
- import { UpdateProjectionAnalysisSettingsCommandInput, UpdateProjectionAnalysisSettingsCommandOutput } from "../commands/UpdateProjectionAnalysisSettingsCommand";
55
52
  import { UpdateProjectionCommandInput, UpdateProjectionCommandOutput } from "../commands/UpdateProjectionCommand";
56
- import { UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput } from "../commands/UpdateProjectionsCategoryCommand";
57
53
  import { WatchCommandInput, WatchCommandOutput } from "../commands/WatchCommand";
58
54
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
59
55
  import { SerdeContext as __SerdeContext } from "@smithy/types";
@@ -73,10 +69,6 @@ export declare const se_CreatePlaylistCommand: (input: CreatePlaylistCommandInpu
73
69
  * serializeAws_restJson1CreateProjectionCommand
74
70
  */
75
71
  export declare const se_CreateProjectionCommand: (input: CreateProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
- /**
77
- * serializeAws_restJson1CreateProjectionsCategoryCommand
78
- */
79
- export declare const se_CreateProjectionsCategoryCommand: (input: CreateProjectionsCategoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
72
  /**
81
73
  * serializeAws_restJson1DeleteDashboardCommand
82
74
  */
@@ -97,10 +89,6 @@ export declare const se_DeletePlaylistItemCommand: (input: DeletePlaylistItemCom
97
89
  * serializeAws_restJson1DeleteProjectionCommand
98
90
  */
99
91
  export declare const se_DeleteProjectionCommand: (input: DeleteProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
100
- /**
101
- * serializeAws_restJson1DeleteProjectionsCategoryCommand
102
- */
103
- export declare const se_DeleteProjectionsCategoryCommand: (input: DeleteProjectionsCategoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
92
  /**
105
93
  * serializeAws_restJson1DisableProjectionCommand
106
94
  */
@@ -273,14 +261,6 @@ export declare const se_UpdatePlaylistAccessCommand: (input: UpdatePlaylistAcces
273
261
  * serializeAws_restJson1UpdateProjectionCommand
274
262
  */
275
263
  export declare const se_UpdateProjectionCommand: (input: UpdateProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
276
- /**
277
- * serializeAws_restJson1UpdateProjectionAnalysisSettingsCommand
278
- */
279
- export declare const se_UpdateProjectionAnalysisSettingsCommand: (input: UpdateProjectionAnalysisSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
280
- /**
281
- * serializeAws_restJson1UpdateProjectionsCategoryCommand
282
- */
283
- export declare const se_UpdateProjectionsCategoryCommand: (input: UpdateProjectionsCategoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
284
264
  /**
285
265
  * serializeAws_restJson1WatchCommand
286
266
  */
@@ -301,10 +281,6 @@ export declare const de_CreatePlaylistCommand: (output: __HttpResponse, context:
301
281
  * deserializeAws_restJson1CreateProjectionCommand
302
282
  */
303
283
  export declare const de_CreateProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectionCommandOutput>;
304
- /**
305
- * deserializeAws_restJson1CreateProjectionsCategoryCommand
306
- */
307
- export declare const de_CreateProjectionsCategoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectionsCategoryCommandOutput>;
308
284
  /**
309
285
  * deserializeAws_restJson1DeleteDashboardCommand
310
286
  */
@@ -325,10 +301,6 @@ export declare const de_DeletePlaylistItemCommand: (output: __HttpResponse, cont
325
301
  * deserializeAws_restJson1DeleteProjectionCommand
326
302
  */
327
303
  export declare const de_DeleteProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectionCommandOutput>;
328
- /**
329
- * deserializeAws_restJson1DeleteProjectionsCategoryCommand
330
- */
331
- export declare const de_DeleteProjectionsCategoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectionsCategoryCommandOutput>;
332
304
  /**
333
305
  * deserializeAws_restJson1DisableProjectionCommand
334
306
  */
@@ -501,14 +473,6 @@ export declare const de_UpdatePlaylistAccessCommand: (output: __HttpResponse, co
501
473
  * deserializeAws_restJson1UpdateProjectionCommand
502
474
  */
503
475
  export declare const de_UpdateProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectionCommandOutput>;
504
- /**
505
- * deserializeAws_restJson1UpdateProjectionAnalysisSettingsCommand
506
- */
507
- export declare const de_UpdateProjectionAnalysisSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectionAnalysisSettingsCommandOutput>;
508
- /**
509
- * deserializeAws_restJson1UpdateProjectionsCategoryCommand
510
- */
511
- export declare const de_UpdateProjectionsCategoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectionsCategoryCommandOutput>;
512
476
  /**
513
477
  * deserializeAws_restJson1WatchCommand
514
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.34",
4
+ "version": "1.1.35",
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.CreateProjectionsCategoryCommand = 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 CreateProjectionsCategoryCommand 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", "CreateProjectionsCategory", {})
15
- .n("WdaInsightsClient", "CreateProjectionsCategoryCommand")
16
- .f(void 0, void 0)
17
- .ser(Aws_restJson1_1.se_CreateProjectionsCategoryCommand)
18
- .de(Aws_restJson1_1.de_CreateProjectionsCategoryCommand)
19
- .build() {
20
- }
21
- exports.CreateProjectionsCategoryCommand = CreateProjectionsCategoryCommand;
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteProjectionsCategoryCommand = 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 DeleteProjectionsCategoryCommand 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", "DeleteProjectionsCategory", {})
15
- .n("WdaInsightsClient", "DeleteProjectionsCategoryCommand")
16
- .f(void 0, void 0)
17
- .ser(Aws_restJson1_1.se_DeleteProjectionsCategoryCommand)
18
- .de(Aws_restJson1_1.de_DeleteProjectionsCategoryCommand)
19
- .build() {
20
- }
21
- exports.DeleteProjectionsCategoryCommand = DeleteProjectionsCategoryCommand;
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateProjectionAnalysisSettingsCommand = 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 UpdateProjectionAnalysisSettingsCommand 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", "UpdateProjectionAnalysisSettings", {})
15
- .n("WdaInsightsClient", "UpdateProjectionAnalysisSettingsCommand")
16
- .f(void 0, void 0)
17
- .ser(Aws_restJson1_1.se_UpdateProjectionAnalysisSettingsCommand)
18
- .de(Aws_restJson1_1.de_UpdateProjectionAnalysisSettingsCommand)
19
- .build() {
20
- }
21
- exports.UpdateProjectionAnalysisSettingsCommand = UpdateProjectionAnalysisSettingsCommand;
@@ -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
- }