@aws-sdk/client-polly 3.928.0 → 3.930.0
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/index.js +722 -811
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/PollyClient.js +2 -0
- package/dist-es/commands/DeleteLexiconCommand.js +3 -9
- package/dist-es/commands/DescribeVoicesCommand.js +3 -9
- package/dist-es/commands/GetLexiconCommand.js +3 -10
- package/dist-es/commands/GetSpeechSynthesisTaskCommand.js +3 -9
- package/dist-es/commands/ListLexiconsCommand.js +3 -9
- package/dist-es/commands/ListSpeechSynthesisTasksCommand.js +3 -9
- package/dist-es/commands/PutLexiconCommand.js +3 -10
- package/dist-es/commands/StartSpeechSynthesisTaskCommand.js +3 -9
- package/dist-es/commands/SynthesizeSpeechCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -16
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +649 -0
- package/dist-types/PollyClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -16
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +65 -0
- package/dist-types/ts3.4/PollyClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -10
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +71 -0
- package/package.json +34 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -672
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -83
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -116
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SdkStreamSerdeContext as __SdkStreamSerdeContext, SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { DeleteLexiconCommandInput, DeleteLexiconCommandOutput } from "../commands/DeleteLexiconCommand";
|
|
4
|
-
import { DescribeVoicesCommandInput, DescribeVoicesCommandOutput } from "../commands/DescribeVoicesCommand";
|
|
5
|
-
import { GetLexiconCommandInput, GetLexiconCommandOutput } from "../commands/GetLexiconCommand";
|
|
6
|
-
import { GetSpeechSynthesisTaskCommandInput, GetSpeechSynthesisTaskCommandOutput } from "../commands/GetSpeechSynthesisTaskCommand";
|
|
7
|
-
import { ListLexiconsCommandInput, ListLexiconsCommandOutput } from "../commands/ListLexiconsCommand";
|
|
8
|
-
import { ListSpeechSynthesisTasksCommandInput, ListSpeechSynthesisTasksCommandOutput } from "../commands/ListSpeechSynthesisTasksCommand";
|
|
9
|
-
import { PutLexiconCommandInput, PutLexiconCommandOutput } from "../commands/PutLexiconCommand";
|
|
10
|
-
import { StartSpeechSynthesisTaskCommandInput, StartSpeechSynthesisTaskCommandOutput } from "../commands/StartSpeechSynthesisTaskCommand";
|
|
11
|
-
import { SynthesizeSpeechCommandInput, SynthesizeSpeechCommandOutput } from "../commands/SynthesizeSpeechCommand";
|
|
12
|
-
/**
|
|
13
|
-
* serializeAws_restJson1DeleteLexiconCommand
|
|
14
|
-
*/
|
|
15
|
-
export declare const se_DeleteLexiconCommand: (input: DeleteLexiconCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
|
-
/**
|
|
17
|
-
* serializeAws_restJson1DescribeVoicesCommand
|
|
18
|
-
*/
|
|
19
|
-
export declare const se_DescribeVoicesCommand: (input: DescribeVoicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
-
/**
|
|
21
|
-
* serializeAws_restJson1GetLexiconCommand
|
|
22
|
-
*/
|
|
23
|
-
export declare const se_GetLexiconCommand: (input: GetLexiconCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
-
/**
|
|
25
|
-
* serializeAws_restJson1GetSpeechSynthesisTaskCommand
|
|
26
|
-
*/
|
|
27
|
-
export declare const se_GetSpeechSynthesisTaskCommand: (input: GetSpeechSynthesisTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
-
/**
|
|
29
|
-
* serializeAws_restJson1ListLexiconsCommand
|
|
30
|
-
*/
|
|
31
|
-
export declare const se_ListLexiconsCommand: (input: ListLexiconsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
-
/**
|
|
33
|
-
* serializeAws_restJson1ListSpeechSynthesisTasksCommand
|
|
34
|
-
*/
|
|
35
|
-
export declare const se_ListSpeechSynthesisTasksCommand: (input: ListSpeechSynthesisTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
-
/**
|
|
37
|
-
* serializeAws_restJson1PutLexiconCommand
|
|
38
|
-
*/
|
|
39
|
-
export declare const se_PutLexiconCommand: (input: PutLexiconCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
-
/**
|
|
41
|
-
* serializeAws_restJson1StartSpeechSynthesisTaskCommand
|
|
42
|
-
*/
|
|
43
|
-
export declare const se_StartSpeechSynthesisTaskCommand: (input: StartSpeechSynthesisTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
-
/**
|
|
45
|
-
* serializeAws_restJson1SynthesizeSpeechCommand
|
|
46
|
-
*/
|
|
47
|
-
export declare const se_SynthesizeSpeechCommand: (input: SynthesizeSpeechCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
-
/**
|
|
49
|
-
* deserializeAws_restJson1DeleteLexiconCommand
|
|
50
|
-
*/
|
|
51
|
-
export declare const de_DeleteLexiconCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLexiconCommandOutput>;
|
|
52
|
-
/**
|
|
53
|
-
* deserializeAws_restJson1DescribeVoicesCommand
|
|
54
|
-
*/
|
|
55
|
-
export declare const de_DescribeVoicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVoicesCommandOutput>;
|
|
56
|
-
/**
|
|
57
|
-
* deserializeAws_restJson1GetLexiconCommand
|
|
58
|
-
*/
|
|
59
|
-
export declare const de_GetLexiconCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLexiconCommandOutput>;
|
|
60
|
-
/**
|
|
61
|
-
* deserializeAws_restJson1GetSpeechSynthesisTaskCommand
|
|
62
|
-
*/
|
|
63
|
-
export declare const de_GetSpeechSynthesisTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSpeechSynthesisTaskCommandOutput>;
|
|
64
|
-
/**
|
|
65
|
-
* deserializeAws_restJson1ListLexiconsCommand
|
|
66
|
-
*/
|
|
67
|
-
export declare const de_ListLexiconsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLexiconsCommandOutput>;
|
|
68
|
-
/**
|
|
69
|
-
* deserializeAws_restJson1ListSpeechSynthesisTasksCommand
|
|
70
|
-
*/
|
|
71
|
-
export declare const de_ListSpeechSynthesisTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSpeechSynthesisTasksCommandOutput>;
|
|
72
|
-
/**
|
|
73
|
-
* deserializeAws_restJson1PutLexiconCommand
|
|
74
|
-
*/
|
|
75
|
-
export declare const de_PutLexiconCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutLexiconCommandOutput>;
|
|
76
|
-
/**
|
|
77
|
-
* deserializeAws_restJson1StartSpeechSynthesisTaskCommand
|
|
78
|
-
*/
|
|
79
|
-
export declare const de_StartSpeechSynthesisTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartSpeechSynthesisTaskCommandOutput>;
|
|
80
|
-
/**
|
|
81
|
-
* deserializeAws_restJson1SynthesizeSpeechCommand
|
|
82
|
-
*/
|
|
83
|
-
export declare const de_SynthesizeSpeechCommand: (output: __HttpResponse, context: __SerdeContext & __SdkStreamSerdeContext) => Promise<SynthesizeSpeechCommandOutput>;
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import {
|
|
6
|
-
SdkStreamSerdeContext as __SdkStreamSerdeContext,
|
|
7
|
-
SerdeContext as __SerdeContext,
|
|
8
|
-
} from "@smithy/types";
|
|
9
|
-
import {
|
|
10
|
-
DeleteLexiconCommandInput,
|
|
11
|
-
DeleteLexiconCommandOutput,
|
|
12
|
-
} from "../commands/DeleteLexiconCommand";
|
|
13
|
-
import {
|
|
14
|
-
DescribeVoicesCommandInput,
|
|
15
|
-
DescribeVoicesCommandOutput,
|
|
16
|
-
} from "../commands/DescribeVoicesCommand";
|
|
17
|
-
import {
|
|
18
|
-
GetLexiconCommandInput,
|
|
19
|
-
GetLexiconCommandOutput,
|
|
20
|
-
} from "../commands/GetLexiconCommand";
|
|
21
|
-
import {
|
|
22
|
-
GetSpeechSynthesisTaskCommandInput,
|
|
23
|
-
GetSpeechSynthesisTaskCommandOutput,
|
|
24
|
-
} from "../commands/GetSpeechSynthesisTaskCommand";
|
|
25
|
-
import {
|
|
26
|
-
ListLexiconsCommandInput,
|
|
27
|
-
ListLexiconsCommandOutput,
|
|
28
|
-
} from "../commands/ListLexiconsCommand";
|
|
29
|
-
import {
|
|
30
|
-
ListSpeechSynthesisTasksCommandInput,
|
|
31
|
-
ListSpeechSynthesisTasksCommandOutput,
|
|
32
|
-
} from "../commands/ListSpeechSynthesisTasksCommand";
|
|
33
|
-
import {
|
|
34
|
-
PutLexiconCommandInput,
|
|
35
|
-
PutLexiconCommandOutput,
|
|
36
|
-
} from "../commands/PutLexiconCommand";
|
|
37
|
-
import {
|
|
38
|
-
StartSpeechSynthesisTaskCommandInput,
|
|
39
|
-
StartSpeechSynthesisTaskCommandOutput,
|
|
40
|
-
} from "../commands/StartSpeechSynthesisTaskCommand";
|
|
41
|
-
import {
|
|
42
|
-
SynthesizeSpeechCommandInput,
|
|
43
|
-
SynthesizeSpeechCommandOutput,
|
|
44
|
-
} from "../commands/SynthesizeSpeechCommand";
|
|
45
|
-
export declare const se_DeleteLexiconCommand: (
|
|
46
|
-
input: DeleteLexiconCommandInput,
|
|
47
|
-
context: __SerdeContext
|
|
48
|
-
) => Promise<__HttpRequest>;
|
|
49
|
-
export declare const se_DescribeVoicesCommand: (
|
|
50
|
-
input: DescribeVoicesCommandInput,
|
|
51
|
-
context: __SerdeContext
|
|
52
|
-
) => Promise<__HttpRequest>;
|
|
53
|
-
export declare const se_GetLexiconCommand: (
|
|
54
|
-
input: GetLexiconCommandInput,
|
|
55
|
-
context: __SerdeContext
|
|
56
|
-
) => Promise<__HttpRequest>;
|
|
57
|
-
export declare const se_GetSpeechSynthesisTaskCommand: (
|
|
58
|
-
input: GetSpeechSynthesisTaskCommandInput,
|
|
59
|
-
context: __SerdeContext
|
|
60
|
-
) => Promise<__HttpRequest>;
|
|
61
|
-
export declare const se_ListLexiconsCommand: (
|
|
62
|
-
input: ListLexiconsCommandInput,
|
|
63
|
-
context: __SerdeContext
|
|
64
|
-
) => Promise<__HttpRequest>;
|
|
65
|
-
export declare const se_ListSpeechSynthesisTasksCommand: (
|
|
66
|
-
input: ListSpeechSynthesisTasksCommandInput,
|
|
67
|
-
context: __SerdeContext
|
|
68
|
-
) => Promise<__HttpRequest>;
|
|
69
|
-
export declare const se_PutLexiconCommand: (
|
|
70
|
-
input: PutLexiconCommandInput,
|
|
71
|
-
context: __SerdeContext
|
|
72
|
-
) => Promise<__HttpRequest>;
|
|
73
|
-
export declare const se_StartSpeechSynthesisTaskCommand: (
|
|
74
|
-
input: StartSpeechSynthesisTaskCommandInput,
|
|
75
|
-
context: __SerdeContext
|
|
76
|
-
) => Promise<__HttpRequest>;
|
|
77
|
-
export declare const se_SynthesizeSpeechCommand: (
|
|
78
|
-
input: SynthesizeSpeechCommandInput,
|
|
79
|
-
context: __SerdeContext
|
|
80
|
-
) => Promise<__HttpRequest>;
|
|
81
|
-
export declare const de_DeleteLexiconCommand: (
|
|
82
|
-
output: __HttpResponse,
|
|
83
|
-
context: __SerdeContext
|
|
84
|
-
) => Promise<DeleteLexiconCommandOutput>;
|
|
85
|
-
export declare const de_DescribeVoicesCommand: (
|
|
86
|
-
output: __HttpResponse,
|
|
87
|
-
context: __SerdeContext
|
|
88
|
-
) => Promise<DescribeVoicesCommandOutput>;
|
|
89
|
-
export declare const de_GetLexiconCommand: (
|
|
90
|
-
output: __HttpResponse,
|
|
91
|
-
context: __SerdeContext
|
|
92
|
-
) => Promise<GetLexiconCommandOutput>;
|
|
93
|
-
export declare const de_GetSpeechSynthesisTaskCommand: (
|
|
94
|
-
output: __HttpResponse,
|
|
95
|
-
context: __SerdeContext
|
|
96
|
-
) => Promise<GetSpeechSynthesisTaskCommandOutput>;
|
|
97
|
-
export declare const de_ListLexiconsCommand: (
|
|
98
|
-
output: __HttpResponse,
|
|
99
|
-
context: __SerdeContext
|
|
100
|
-
) => Promise<ListLexiconsCommandOutput>;
|
|
101
|
-
export declare const de_ListSpeechSynthesisTasksCommand: (
|
|
102
|
-
output: __HttpResponse,
|
|
103
|
-
context: __SerdeContext
|
|
104
|
-
) => Promise<ListSpeechSynthesisTasksCommandOutput>;
|
|
105
|
-
export declare const de_PutLexiconCommand: (
|
|
106
|
-
output: __HttpResponse,
|
|
107
|
-
context: __SerdeContext
|
|
108
|
-
) => Promise<PutLexiconCommandOutput>;
|
|
109
|
-
export declare const de_StartSpeechSynthesisTaskCommand: (
|
|
110
|
-
output: __HttpResponse,
|
|
111
|
-
context: __SerdeContext
|
|
112
|
-
) => Promise<StartSpeechSynthesisTaskCommandOutput>;
|
|
113
|
-
export declare const de_SynthesizeSpeechCommand: (
|
|
114
|
-
output: __HttpResponse,
|
|
115
|
-
context: __SerdeContext & __SdkStreamSerdeContext
|
|
116
|
-
) => Promise<SynthesizeSpeechCommandOutput>;
|