@wildix/wim-voicebots-client 1.1.8 → 3.1.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.
- package/dist-cjs/VoiceBots.js +3 -3
- package/dist-cjs/VoiceBotsClient.js +34 -26
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +65 -0
- package/dist-cjs/commands/CreateVoiceBotCommand.js +10 -11
- package/dist-cjs/commands/DeleteVoiceBotCommand.js +10 -11
- package/dist-cjs/commands/DescribeEventCommand.js +10 -11
- package/dist-cjs/commands/GetTraceCommand.js +10 -11
- package/dist-cjs/commands/GetVoiceBotCommand.js +10 -11
- package/dist-cjs/commands/ListTracesCommand.js +10 -11
- package/dist-cjs/commands/ListVoiceBotsCommand.js +10 -11
- package/dist-cjs/commands/ListVoiceBotsNamesCommand.js +10 -11
- package/dist-cjs/commands/SendHangupCommand.js +10 -11
- package/dist-cjs/commands/SendPlayCommand.js +10 -11
- package/dist-cjs/commands/SendSayCommand.js +10 -11
- package/dist-cjs/commands/SendStopCommand.js +10 -11
- package/dist-cjs/commands/SendTransferCommand.js +10 -11
- package/dist-cjs/commands/UpdateVoiceBotCommand.js +10 -11
- package/dist-cjs/endpoint/EndpointParameters.js +16 -0
- package/dist-cjs/endpoint/bdd.js +28 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/index.js +4 -1
- package/dist-cjs/models/VoiceBotsServiceException.js +3 -3
- package/dist-cjs/models/enums.js +64 -0
- package/dist-cjs/models/errors.js +75 -0
- package/dist-cjs/models/models_0.js +0 -314
- package/dist-cjs/runtimeConfig.browser.js +11 -11
- package/dist-cjs/runtimeConfig.js +22 -18
- package/dist-cjs/runtimeConfig.shared.js +30 -10
- package/dist-cjs/runtimeExtensions.js +6 -5
- package/dist-cjs/schemas/schemas_0.js +1247 -0
- package/dist-es/VoiceBots.js +6 -6
- package/dist-es/VoiceBotsClient.js +30 -22
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +59 -0
- package/dist-es/commands/CreateVoiceBotCommand.js +9 -10
- package/dist-es/commands/DeleteVoiceBotCommand.js +9 -10
- package/dist-es/commands/DescribeEventCommand.js +9 -10
- package/dist-es/commands/GetTraceCommand.js +9 -10
- package/dist-es/commands/GetVoiceBotCommand.js +9 -10
- package/dist-es/commands/ListTracesCommand.js +9 -10
- package/dist-es/commands/ListVoiceBotsCommand.js +9 -10
- package/dist-es/commands/ListVoiceBotsNamesCommand.js +9 -10
- package/dist-es/commands/SendHangupCommand.js +9 -10
- package/dist-es/commands/SendPlayCommand.js +9 -10
- package/dist-es/commands/SendSayCommand.js +9 -10
- package/dist-es/commands/SendStopCommand.js +9 -10
- package/dist-es/commands/SendTransferCommand.js +9 -10
- package/dist-es/commands/UpdateVoiceBotCommand.js +9 -10
- package/dist-es/endpoint/EndpointParameters.js +12 -0
- package/dist-es/endpoint/bdd.js +25 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/index.js +4 -1
- package/dist-es/models/VoiceBotsServiceException.js +1 -1
- package/dist-es/models/enums.js +61 -0
- package/dist-es/models/errors.js +67 -0
- package/dist-es/models/models_0.js +1 -308
- package/dist-es/runtimeConfig.browser.js +7 -7
- package/dist-es/runtimeConfig.js +17 -13
- package/dist-es/runtimeConfig.shared.js +24 -4
- package/dist-es/runtimeExtensions.js +6 -5
- package/dist-es/schemas/schemas_0.js +1241 -0
- package/dist-types/VoiceBots.d.ts +15 -15
- package/dist-types/VoiceBotsClient.d.ts +44 -26
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/CreateVoiceBotCommand.d.ts +143 -7
- package/dist-types/commands/DeleteVoiceBotCommand.d.ts +11 -7
- package/dist-types/commands/DescribeEventCommand.d.ts +35 -7
- package/dist-types/commands/GetTraceCommand.d.ts +33 -7
- package/dist-types/commands/GetVoiceBotCommand.d.ts +77 -7
- package/dist-types/commands/ListTracesCommand.d.ts +11 -7
- package/dist-types/commands/ListVoiceBotsCommand.d.ts +77 -7
- package/dist-types/commands/ListVoiceBotsNamesCommand.d.ts +11 -7
- package/dist-types/commands/SendHangupCommand.d.ts +11 -7
- package/dist-types/commands/SendPlayCommand.d.ts +11 -7
- package/dist-types/commands/SendSayCommand.d.ts +11 -7
- package/dist-types/commands/SendStopCommand.d.ts +11 -7
- package/dist-types/commands/SendTransferCommand.d.ts +11 -7
- package/dist-types/commands/UpdateVoiceBotCommand.d.ts +143 -7
- package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +4 -3
- package/dist-types/index.d.ts +5 -1
- package/dist-types/models/VoiceBotsServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +141 -0
- package/dist-types/models/errors.d.ts +60 -0
- package/dist-types/models/models_0.d.ts +349 -204
- package/dist-types/runtimeConfig.browser.d.ts +35 -16
- package/dist-types/runtimeConfig.d.ts +34 -15
- package/dist-types/runtimeConfig.native.d.ts +36 -17
- package/dist-types/runtimeConfig.shared.d.ts +20 -3
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +175 -0
- package/package.json +14 -40
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -1030
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -999
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -128
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
import { CreateVoiceBotCommandInput, CreateVoiceBotCommandOutput } from "../commands/CreateVoiceBotCommand";
|
|
2
|
-
import { DeleteVoiceBotCommandInput, DeleteVoiceBotCommandOutput } from "../commands/DeleteVoiceBotCommand";
|
|
3
|
-
import { DescribeEventCommandInput, DescribeEventCommandOutput } from "../commands/DescribeEventCommand";
|
|
4
|
-
import { GetTraceCommandInput, GetTraceCommandOutput } from "../commands/GetTraceCommand";
|
|
5
|
-
import { GetVoiceBotCommandInput, GetVoiceBotCommandOutput } from "../commands/GetVoiceBotCommand";
|
|
6
|
-
import { ListTracesCommandInput, ListTracesCommandOutput } from "../commands/ListTracesCommand";
|
|
7
|
-
import { ListVoiceBotsCommandInput, ListVoiceBotsCommandOutput } from "../commands/ListVoiceBotsCommand";
|
|
8
|
-
import { ListVoiceBotsNamesCommandInput, ListVoiceBotsNamesCommandOutput } from "../commands/ListVoiceBotsNamesCommand";
|
|
9
|
-
import { SendHangupCommandInput, SendHangupCommandOutput } from "../commands/SendHangupCommand";
|
|
10
|
-
import { SendPlayCommandInput, SendPlayCommandOutput } from "../commands/SendPlayCommand";
|
|
11
|
-
import { SendSayCommandInput, SendSayCommandOutput } from "../commands/SendSayCommand";
|
|
12
|
-
import { SendStopCommandInput, SendStopCommandOutput } from "../commands/SendStopCommand";
|
|
13
|
-
import { SendTransferCommandInput, SendTransferCommandOutput } from "../commands/SendTransferCommand";
|
|
14
|
-
import { UpdateVoiceBotCommandInput, UpdateVoiceBotCommandOutput } from "../commands/UpdateVoiceBotCommand";
|
|
15
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
16
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
17
|
-
/**
|
|
18
|
-
* serializeAws_restJson1CreateVoiceBotCommand
|
|
19
|
-
*/
|
|
20
|
-
export declare const se_CreateVoiceBotCommand: (input: CreateVoiceBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
|
-
/**
|
|
22
|
-
* serializeAws_restJson1DeleteVoiceBotCommand
|
|
23
|
-
*/
|
|
24
|
-
export declare const se_DeleteVoiceBotCommand: (input: DeleteVoiceBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
|
-
/**
|
|
26
|
-
* serializeAws_restJson1DescribeEventCommand
|
|
27
|
-
*/
|
|
28
|
-
export declare const se_DescribeEventCommand: (input: DescribeEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
-
/**
|
|
30
|
-
* serializeAws_restJson1GetTraceCommand
|
|
31
|
-
*/
|
|
32
|
-
export declare const se_GetTraceCommand: (input: GetTraceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
-
/**
|
|
34
|
-
* serializeAws_restJson1GetVoiceBotCommand
|
|
35
|
-
*/
|
|
36
|
-
export declare const se_GetVoiceBotCommand: (input: GetVoiceBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
-
/**
|
|
38
|
-
* serializeAws_restJson1ListTracesCommand
|
|
39
|
-
*/
|
|
40
|
-
export declare const se_ListTracesCommand: (input: ListTracesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
-
/**
|
|
42
|
-
* serializeAws_restJson1ListVoiceBotsCommand
|
|
43
|
-
*/
|
|
44
|
-
export declare const se_ListVoiceBotsCommand: (input: ListVoiceBotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
-
/**
|
|
46
|
-
* serializeAws_restJson1ListVoiceBotsNamesCommand
|
|
47
|
-
*/
|
|
48
|
-
export declare const se_ListVoiceBotsNamesCommand: (input: ListVoiceBotsNamesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
-
/**
|
|
50
|
-
* serializeAws_restJson1SendHangupCommand
|
|
51
|
-
*/
|
|
52
|
-
export declare const se_SendHangupCommand: (input: SendHangupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
|
-
/**
|
|
54
|
-
* serializeAws_restJson1SendPlayCommand
|
|
55
|
-
*/
|
|
56
|
-
export declare const se_SendPlayCommand: (input: SendPlayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
-
/**
|
|
58
|
-
* serializeAws_restJson1SendSayCommand
|
|
59
|
-
*/
|
|
60
|
-
export declare const se_SendSayCommand: (input: SendSayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
-
/**
|
|
62
|
-
* serializeAws_restJson1SendStopCommand
|
|
63
|
-
*/
|
|
64
|
-
export declare const se_SendStopCommand: (input: SendStopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
-
/**
|
|
66
|
-
* serializeAws_restJson1SendTransferCommand
|
|
67
|
-
*/
|
|
68
|
-
export declare const se_SendTransferCommand: (input: SendTransferCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
-
/**
|
|
70
|
-
* serializeAws_restJson1UpdateVoiceBotCommand
|
|
71
|
-
*/
|
|
72
|
-
export declare const se_UpdateVoiceBotCommand: (input: UpdateVoiceBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* deserializeAws_restJson1CreateVoiceBotCommand
|
|
75
|
-
*/
|
|
76
|
-
export declare const de_CreateVoiceBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVoiceBotCommandOutput>;
|
|
77
|
-
/**
|
|
78
|
-
* deserializeAws_restJson1DeleteVoiceBotCommand
|
|
79
|
-
*/
|
|
80
|
-
export declare const de_DeleteVoiceBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVoiceBotCommandOutput>;
|
|
81
|
-
/**
|
|
82
|
-
* deserializeAws_restJson1DescribeEventCommand
|
|
83
|
-
*/
|
|
84
|
-
export declare const de_DescribeEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventCommandOutput>;
|
|
85
|
-
/**
|
|
86
|
-
* deserializeAws_restJson1GetTraceCommand
|
|
87
|
-
*/
|
|
88
|
-
export declare const de_GetTraceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTraceCommandOutput>;
|
|
89
|
-
/**
|
|
90
|
-
* deserializeAws_restJson1GetVoiceBotCommand
|
|
91
|
-
*/
|
|
92
|
-
export declare const de_GetVoiceBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVoiceBotCommandOutput>;
|
|
93
|
-
/**
|
|
94
|
-
* deserializeAws_restJson1ListTracesCommand
|
|
95
|
-
*/
|
|
96
|
-
export declare const de_ListTracesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTracesCommandOutput>;
|
|
97
|
-
/**
|
|
98
|
-
* deserializeAws_restJson1ListVoiceBotsCommand
|
|
99
|
-
*/
|
|
100
|
-
export declare const de_ListVoiceBotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVoiceBotsCommandOutput>;
|
|
101
|
-
/**
|
|
102
|
-
* deserializeAws_restJson1ListVoiceBotsNamesCommand
|
|
103
|
-
*/
|
|
104
|
-
export declare const de_ListVoiceBotsNamesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVoiceBotsNamesCommandOutput>;
|
|
105
|
-
/**
|
|
106
|
-
* deserializeAws_restJson1SendHangupCommand
|
|
107
|
-
*/
|
|
108
|
-
export declare const de_SendHangupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendHangupCommandOutput>;
|
|
109
|
-
/**
|
|
110
|
-
* deserializeAws_restJson1SendPlayCommand
|
|
111
|
-
*/
|
|
112
|
-
export declare const de_SendPlayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendPlayCommandOutput>;
|
|
113
|
-
/**
|
|
114
|
-
* deserializeAws_restJson1SendSayCommand
|
|
115
|
-
*/
|
|
116
|
-
export declare const de_SendSayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendSayCommandOutput>;
|
|
117
|
-
/**
|
|
118
|
-
* deserializeAws_restJson1SendStopCommand
|
|
119
|
-
*/
|
|
120
|
-
export declare const de_SendStopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendStopCommandOutput>;
|
|
121
|
-
/**
|
|
122
|
-
* deserializeAws_restJson1SendTransferCommand
|
|
123
|
-
*/
|
|
124
|
-
export declare const de_SendTransferCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendTransferCommandOutput>;
|
|
125
|
-
/**
|
|
126
|
-
* deserializeAws_restJson1UpdateVoiceBotCommand
|
|
127
|
-
*/
|
|
128
|
-
export declare const de_UpdateVoiceBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateVoiceBotCommandOutput>;
|