@wildix/wim-voicebots-client 1.0.9 → 1.0.10

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.
@@ -1,7 +1,9 @@
1
1
  import { CreateVoiceBotCommandInput, CreateVoiceBotCommandOutput } from "../commands/CreateVoiceBotCommand";
2
2
  import { DeleteVoiceBotCommandInput, DeleteVoiceBotCommandOutput } from "../commands/DeleteVoiceBotCommand";
3
3
  import { DescribeEventCommandInput, DescribeEventCommandOutput } from "../commands/DescribeEventCommand";
4
+ import { GetTraceCommandInput, GetTraceCommandOutput } from "../commands/GetTraceCommand";
4
5
  import { GetVoiceBotCommandInput, GetVoiceBotCommandOutput } from "../commands/GetVoiceBotCommand";
6
+ import { ListTracesCommandInput, ListTracesCommandOutput } from "../commands/ListTracesCommand";
5
7
  import { ListVoiceBotsCommandInput, ListVoiceBotsCommandOutput } from "../commands/ListVoiceBotsCommand";
6
8
  import { ListVoiceBotsNamesCommandInput, ListVoiceBotsNamesCommandOutput } from "../commands/ListVoiceBotsNamesCommand";
7
9
  import { SendHangupCommandInput, SendHangupCommandOutput } from "../commands/SendHangupCommand";
@@ -22,10 +24,18 @@ export declare const se_DeleteVoiceBotCommand: (input: DeleteVoiceBotCommandInpu
22
24
  * serializeAws_restJson1DescribeEventCommand
23
25
  */
24
26
  export declare const se_DescribeEventCommand: (input: DescribeEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ /**
28
+ * serializeAws_restJson1GetTraceCommand
29
+ */
30
+ export declare const se_GetTraceCommand: (input: GetTraceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
31
  /**
26
32
  * serializeAws_restJson1GetVoiceBotCommand
27
33
  */
28
34
  export declare const se_GetVoiceBotCommand: (input: GetVoiceBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ /**
36
+ * serializeAws_restJson1ListTracesCommand
37
+ */
38
+ export declare const se_ListTracesCommand: (input: ListTracesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
39
  /**
30
40
  * serializeAws_restJson1ListVoiceBotsCommand
31
41
  */
@@ -62,10 +72,18 @@ export declare const de_DeleteVoiceBotCommand: (output: __HttpResponse, context:
62
72
  * deserializeAws_restJson1DescribeEventCommand
63
73
  */
64
74
  export declare const de_DescribeEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventCommandOutput>;
75
+ /**
76
+ * deserializeAws_restJson1GetTraceCommand
77
+ */
78
+ export declare const de_GetTraceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTraceCommandOutput>;
65
79
  /**
66
80
  * deserializeAws_restJson1GetVoiceBotCommand
67
81
  */
68
82
  export declare const de_GetVoiceBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVoiceBotCommandOutput>;
83
+ /**
84
+ * deserializeAws_restJson1ListTracesCommand
85
+ */
86
+ export declare const de_ListTracesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTracesCommandOutput>;
69
87
  /**
70
88
  * deserializeAws_restJson1ListVoiceBotsCommand
71
89
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wim-voicebots-client",
3
3
  "description": "@wildix/wim-voicebots-client client",
4
- "version": "1.0.9",
4
+ "version": "1.0.10",
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",