@aws-sdk/client-connect 3.348.0 → 3.350.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/README.md +24 -0
- package/dist-cjs/Connect.js +6 -0
- package/dist-cjs/commands/SearchHoursOfOperationsCommand.js +46 -0
- package/dist-cjs/commands/SearchPromptsCommand.js +46 -0
- package/dist-cjs/commands/SearchQuickConnectsCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/index.js +1 -0
- package/dist-cjs/models/models_1.js +4 -4
- package/dist-cjs/models/models_2.js +2 -0
- package/dist-cjs/pagination/SearchHoursOfOperationsPaginator.js +29 -0
- package/dist-cjs/pagination/SearchPromptsPaginator.js +29 -0
- package/dist-cjs/pagination/SearchQuickConnectsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +267 -6
- package/dist-es/Connect.js +6 -0
- package/dist-es/commands/SearchHoursOfOperationsCommand.js +42 -0
- package/dist-es/commands/SearchPromptsCommand.js +42 -0
- package/dist-es/commands/SearchQuickConnectsCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_1.js +3 -3
- package/dist-es/models/models_2.js +1 -0
- package/dist-es/pagination/SearchHoursOfOperationsPaginator.js +25 -0
- package/dist-es/pagination/SearchPromptsPaginator.js +25 -0
- package/dist-es/pagination/SearchQuickConnectsPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +255 -0
- package/dist-types/Connect.d.ts +21 -0
- package/dist-types/ConnectClient.d.ts +5 -2
- package/dist-types/commands/DescribeEvaluationFormCommand.d.ts +1 -1
- package/dist-types/commands/SearchHoursOfOperationsCommand.d.ts +161 -0
- package/dist-types/commands/SearchPromptsCommand.d.ts +147 -0
- package/dist-types/commands/SearchQueuesCommand.d.ts +2 -1
- package/dist-types/commands/SearchQuickConnectsCommand.d.ts +161 -0
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +2 -1
- package/dist-types/commands/SearchSecurityProfilesCommand.d.ts +2 -1
- package/dist-types/commands/SearchUsersCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +202 -163
- package/dist-types/models/models_2.d.ts +216 -0
- package/dist-types/pagination/SearchHoursOfOperationsPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchPromptsPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchQuickConnectsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/Connect.d.ts +51 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DescribeEvaluationFormCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchHoursOfOperationsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/SearchPromptsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/SearchQueuesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/SearchQuickConnectsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/SearchRoutingProfilesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SearchSecurityProfilesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SearchUsersCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +47 -36
- package/dist-types/ts3.4/models/models_2.d.ts +69 -0
- package/dist-types/ts3.4/pagination/SearchHoursOfOperationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchPromptsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchQuickConnectsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +4 -4
|
@@ -531,10 +531,22 @@ import {
|
|
|
531
531
|
SearchAvailablePhoneNumbersCommandInput,
|
|
532
532
|
SearchAvailablePhoneNumbersCommandOutput,
|
|
533
533
|
} from "../commands/SearchAvailablePhoneNumbersCommand";
|
|
534
|
+
import {
|
|
535
|
+
SearchHoursOfOperationsCommandInput,
|
|
536
|
+
SearchHoursOfOperationsCommandOutput,
|
|
537
|
+
} from "../commands/SearchHoursOfOperationsCommand";
|
|
538
|
+
import {
|
|
539
|
+
SearchPromptsCommandInput,
|
|
540
|
+
SearchPromptsCommandOutput,
|
|
541
|
+
} from "../commands/SearchPromptsCommand";
|
|
534
542
|
import {
|
|
535
543
|
SearchQueuesCommandInput,
|
|
536
544
|
SearchQueuesCommandOutput,
|
|
537
545
|
} from "../commands/SearchQueuesCommand";
|
|
546
|
+
import {
|
|
547
|
+
SearchQuickConnectsCommandInput,
|
|
548
|
+
SearchQuickConnectsCommandOutput,
|
|
549
|
+
} from "../commands/SearchQuickConnectsCommand";
|
|
538
550
|
import {
|
|
539
551
|
SearchRoutingProfilesCommandInput,
|
|
540
552
|
SearchRoutingProfilesCommandOutput,
|
|
@@ -1291,10 +1303,22 @@ export declare const se_SearchAvailablePhoneNumbersCommand: (
|
|
|
1291
1303
|
input: SearchAvailablePhoneNumbersCommandInput,
|
|
1292
1304
|
context: __SerdeContext
|
|
1293
1305
|
) => Promise<__HttpRequest>;
|
|
1306
|
+
export declare const se_SearchHoursOfOperationsCommand: (
|
|
1307
|
+
input: SearchHoursOfOperationsCommandInput,
|
|
1308
|
+
context: __SerdeContext
|
|
1309
|
+
) => Promise<__HttpRequest>;
|
|
1310
|
+
export declare const se_SearchPromptsCommand: (
|
|
1311
|
+
input: SearchPromptsCommandInput,
|
|
1312
|
+
context: __SerdeContext
|
|
1313
|
+
) => Promise<__HttpRequest>;
|
|
1294
1314
|
export declare const se_SearchQueuesCommand: (
|
|
1295
1315
|
input: SearchQueuesCommandInput,
|
|
1296
1316
|
context: __SerdeContext
|
|
1297
1317
|
) => Promise<__HttpRequest>;
|
|
1318
|
+
export declare const se_SearchQuickConnectsCommand: (
|
|
1319
|
+
input: SearchQuickConnectsCommandInput,
|
|
1320
|
+
context: __SerdeContext
|
|
1321
|
+
) => Promise<__HttpRequest>;
|
|
1298
1322
|
export declare const se_SearchRoutingProfilesCommand: (
|
|
1299
1323
|
input: SearchRoutingProfilesCommandInput,
|
|
1300
1324
|
context: __SerdeContext
|
|
@@ -2051,10 +2075,22 @@ export declare const de_SearchAvailablePhoneNumbersCommand: (
|
|
|
2051
2075
|
output: __HttpResponse,
|
|
2052
2076
|
context: __SerdeContext
|
|
2053
2077
|
) => Promise<SearchAvailablePhoneNumbersCommandOutput>;
|
|
2078
|
+
export declare const de_SearchHoursOfOperationsCommand: (
|
|
2079
|
+
output: __HttpResponse,
|
|
2080
|
+
context: __SerdeContext
|
|
2081
|
+
) => Promise<SearchHoursOfOperationsCommandOutput>;
|
|
2082
|
+
export declare const de_SearchPromptsCommand: (
|
|
2083
|
+
output: __HttpResponse,
|
|
2084
|
+
context: __SerdeContext
|
|
2085
|
+
) => Promise<SearchPromptsCommandOutput>;
|
|
2054
2086
|
export declare const de_SearchQueuesCommand: (
|
|
2055
2087
|
output: __HttpResponse,
|
|
2056
2088
|
context: __SerdeContext
|
|
2057
2089
|
) => Promise<SearchQueuesCommandOutput>;
|
|
2090
|
+
export declare const de_SearchQuickConnectsCommand: (
|
|
2091
|
+
output: __HttpResponse,
|
|
2092
|
+
context: __SerdeContext
|
|
2093
|
+
) => Promise<SearchQuickConnectsCommandOutput>;
|
|
2058
2094
|
export declare const de_SearchRoutingProfilesCommand: (
|
|
2059
2095
|
output: __HttpResponse,
|
|
2060
2096
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.350.0",
|
|
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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.350.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.347.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.350.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.347.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.347.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.347.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.347.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.347.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.347.0",
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.350.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.347.0",
|
|
43
43
|
"@aws-sdk/types": "3.347.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.347.0",
|