@aws-sdk/client-workspaces-web 3.395.0 → 3.401.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.
Files changed (40) hide show
  1. package/dist-cjs/commands/GetUserSettingsCommand.js +2 -1
  2. package/dist-cjs/commands/ListUserSettingsCommand.js +2 -1
  3. package/dist-cjs/commands/UpdateUserSettingsCommand.js +3 -2
  4. package/dist-cjs/endpoint/ruleset.js +1 -1
  5. package/dist-cjs/models/models_0.js +136 -98
  6. package/dist-cjs/protocols/Aws_restJson1.js +4 -0
  7. package/dist-cjs/runtimeExtensions.js +5 -5
  8. package/dist-es/commands/GetUserSettingsCommand.js +2 -1
  9. package/dist-es/commands/ListUserSettingsCommand.js +2 -1
  10. package/dist-es/commands/UpdateUserSettingsCommand.js +3 -2
  11. package/dist-es/endpoint/ruleset.js +1 -1
  12. package/dist-es/models/models_0.js +100 -70
  13. package/dist-es/protocols/Aws_restJson1.js +4 -0
  14. package/dist-es/runtimeExtensions.js +5 -5
  15. package/dist-types/commands/CreateUserSettingsCommand.d.ts +20 -0
  16. package/dist-types/commands/GetPortalCommand.d.ts +1 -1
  17. package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +1 -1
  18. package/dist-types/commands/GetTrustStoreCommand.d.ts +1 -1
  19. package/dist-types/commands/GetUserSettingsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListBrowserSettingsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListIdentityProvidersCommand.d.ts +1 -1
  22. package/dist-types/commands/ListIpAccessSettingsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListNetworkSettingsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListPortalsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +1 -1
  26. package/dist-types/commands/ListUserAccessLoggingSettingsCommand.d.ts +1 -1
  27. package/dist-types/commands/ListUserSettingsCommand.d.ts +17 -1
  28. package/dist-types/commands/UpdatePortalCommand.d.ts +1 -1
  29. package/dist-types/commands/UpdateUserSettingsCommand.d.ts +32 -0
  30. package/dist-types/extensionConfiguration.d.ts +6 -0
  31. package/dist-types/models/models_0.d.ts +1375 -1279
  32. package/dist-types/runtimeExtensions.d.ts +2 -2
  33. package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +403 -369
  35. package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -2
  36. package/package.json +29 -29
  37. package/dist-types/clientConfiguration.d.ts +0 -6
  38. package/dist-types/ts3.4/clientConfiguration.d.ts +0 -3
  39. /package/dist-cjs/{clientConfiguration.js → extensionConfiguration.js} +0 -0
  40. /package/dist-es/{clientConfiguration.js → extensionConfiguration.js} +0 -0
@@ -1,6 +1,6 @@
1
- import { WorkSpacesWebClientConfiguration } from "./clientConfiguration";
1
+ import { WorkSpacesWebExtensionConfiguration } from "./extensionConfiguration";
2
2
  export interface RuntimeExtension {
3
- configureClient(clientConfiguration: WorkSpacesWebClientConfiguration): void;
3
+ configure(clientConfiguration: WorkSpacesWebExtensionConfiguration): void;
4
4
  }
5
5
  export interface RuntimeExtensionsConfig {
6
6
  extensions: RuntimeExtension[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workspaces-web",
3
3
  "description": "AWS SDK for JavaScript Workspaces Web Client for Node.js, Browser and React Native",
4
- "version": "3.395.0",
4
+ "version": "3.401.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,37 +21,37 @@
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.395.0",
25
- "@aws-sdk/credential-provider-node": "3.395.0",
26
- "@aws-sdk/middleware-host-header": "3.391.0",
27
- "@aws-sdk/middleware-logger": "3.391.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.391.0",
29
- "@aws-sdk/middleware-signing": "3.391.0",
30
- "@aws-sdk/middleware-user-agent": "3.391.0",
31
- "@aws-sdk/types": "3.391.0",
32
- "@aws-sdk/util-endpoints": "3.391.0",
33
- "@aws-sdk/util-user-agent-browser": "3.391.0",
34
- "@aws-sdk/util-user-agent-node": "3.391.0",
35
- "@smithy/config-resolver": "^2.0.3",
36
- "@smithy/fetch-http-handler": "^2.0.3",
37
- "@smithy/hash-node": "^2.0.3",
38
- "@smithy/invalid-dependency": "^2.0.3",
39
- "@smithy/middleware-content-length": "^2.0.3",
40
- "@smithy/middleware-endpoint": "^2.0.3",
41
- "@smithy/middleware-retry": "^2.0.3",
42
- "@smithy/middleware-serde": "^2.0.3",
24
+ "@aws-sdk/client-sts": "3.398.0",
25
+ "@aws-sdk/credential-provider-node": "3.398.0",
26
+ "@aws-sdk/middleware-host-header": "3.398.0",
27
+ "@aws-sdk/middleware-logger": "3.398.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.398.0",
29
+ "@aws-sdk/middleware-signing": "3.398.0",
30
+ "@aws-sdk/middleware-user-agent": "3.398.0",
31
+ "@aws-sdk/types": "3.398.0",
32
+ "@aws-sdk/util-endpoints": "3.398.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.398.0",
34
+ "@aws-sdk/util-user-agent-node": "3.398.0",
35
+ "@smithy/config-resolver": "^2.0.5",
36
+ "@smithy/fetch-http-handler": "^2.0.5",
37
+ "@smithy/hash-node": "^2.0.5",
38
+ "@smithy/invalid-dependency": "^2.0.5",
39
+ "@smithy/middleware-content-length": "^2.0.5",
40
+ "@smithy/middleware-endpoint": "^2.0.5",
41
+ "@smithy/middleware-retry": "^2.0.5",
42
+ "@smithy/middleware-serde": "^2.0.5",
43
43
  "@smithy/middleware-stack": "^2.0.0",
44
- "@smithy/node-config-provider": "^2.0.3",
45
- "@smithy/node-http-handler": "^2.0.3",
46
- "@smithy/protocol-http": "^2.0.3",
47
- "@smithy/smithy-client": "^2.0.3",
48
- "@smithy/types": "^2.2.0",
49
- "@smithy/url-parser": "^2.0.3",
44
+ "@smithy/node-config-provider": "^2.0.5",
45
+ "@smithy/node-http-handler": "^2.0.5",
46
+ "@smithy/protocol-http": "^2.0.5",
47
+ "@smithy/smithy-client": "^2.0.5",
48
+ "@smithy/types": "^2.2.2",
49
+ "@smithy/url-parser": "^2.0.5",
50
50
  "@smithy/util-base64": "^2.0.0",
51
51
  "@smithy/util-body-length-browser": "^2.0.0",
52
- "@smithy/util-body-length-node": "^2.0.0",
53
- "@smithy/util-defaults-mode-browser": "^2.0.3",
54
- "@smithy/util-defaults-mode-node": "^2.0.3",
52
+ "@smithy/util-body-length-node": "^2.1.0",
53
+ "@smithy/util-defaults-mode-browser": "^2.0.5",
54
+ "@smithy/util-defaults-mode-node": "^2.0.5",
55
55
  "@smithy/util-retry": "^2.0.0",
56
56
  "@smithy/util-utf8": "^2.0.0",
57
57
  "tslib": "^2.5.0",
@@ -1,6 +0,0 @@
1
- import { DefaultClientConfiguration } from "@smithy/types";
2
- /**
3
- * @internal
4
- */
5
- export interface WorkSpacesWebClientConfiguration extends DefaultClientConfiguration {
6
- }
@@ -1,3 +0,0 @@
1
- import { DefaultClientConfiguration } from "@smithy/types";
2
- export interface WorkSpacesWebClientConfiguration
3
- extends DefaultClientConfiguration {}