@aws-sdk/client-connect 3.1079.0 → 3.1081.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 +14 -0
- package/dist-cjs/index.js +119 -54
- package/dist-es/Connect.js +4 -0
- package/dist-es/commands/CreateAuthCodeCommand.js +4 -0
- package/dist-es/commands/DeleteSessionCommand.js +4 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +3 -0
- package/dist-es/schemas/schemas_0.js +97 -53
- package/dist-types/Connect.d.ts +14 -0
- package/dist-types/ConnectClient.d.ts +4 -2
- package/dist-types/commands/CreateAuthCodeCommand.d.ts +103 -0
- package/dist-types/commands/CreateUserHierarchyGroupCommand.d.ts +2 -1
- package/dist-types/commands/CreateViewCommand.d.ts +1 -2
- package/dist-types/commands/DeleteSessionCommand.d.ts +88 -0
- package/dist-types/commands/GetFederationTokenCommand.d.ts +5 -2
- package/dist-types/commands/GetMetricDataCommand.d.ts +1 -2
- package/dist-types/commands/SearchDataTablesCommand.d.ts +1 -2
- package/dist-types/commands/SearchQuickConnectsCommand.d.ts +2 -1
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +2 -1
- package/dist-types/commands/SearchSecurityProfilesCommand.d.ts +2 -1
- package/dist-types/commands/SearchTestCasesCommand.d.ts +2 -1
- package/dist-types/commands/SearchUserHierarchyGroupsCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +11 -0
- package/dist-types/models/models_0.d.ts +80 -78
- package/dist-types/models/models_1.d.ts +106 -542
- package/dist-types/models/models_2.d.ts +535 -103
- package/dist-types/models/models_3.d.ts +105 -173
- package/dist-types/models/models_4.d.ts +171 -2
- package/dist-types/schemas/schemas_0.d.ts +7 -0
- package/dist-types/ts3.4/Connect.d.ts +34 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreateAuthCodeCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/CreateUserHierarchyGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateViewCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetMetricDataCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchDataTablesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchQuickConnectsCommand.d.ts +2 -4
- 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/SearchTestCasesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SearchUserHierarchyGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +19 -18
- package/dist-types/ts3.4/models/models_1.d.ts +24 -33
- package/dist-types/ts3.4/models/models_2.d.ts +35 -23
- package/dist-types/ts3.4/models/models_3.d.ts +23 -38
- package/dist-types/ts3.4/models/models_4.d.ts +47 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
- package/package.json +3 -3
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.1081.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
22
|
+
"@aws-sdk/core": "^3.974.29",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.64",
|
|
24
24
|
"@aws-sdk/types": "^3.973.15",
|
|
25
25
|
"@smithy/core": "^3.29.0",
|
|
26
26
|
"@smithy/fetch-http-handler": "^5.6.2",
|