@smithy/experimental-identity-and-auth 0.0.19 → 0.0.21

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.
@@ -18,7 +18,7 @@ const httpAuthSchemeMiddleware = (config) => (next, context) => async (args) =>
18
18
  for (const option of options) {
19
19
  const scheme = authSchemes.get(option.schemeId);
20
20
  if (!scheme) {
21
- failureReasons.push(`HttpAuthScheme \`${option.schemeId}\` was not enable for this service.`);
21
+ failureReasons.push(`HttpAuthScheme \`${option.schemeId}\` was not enabled for this service.`);
22
22
  continue;
23
23
  }
24
24
  const identityProvider = scheme.identityProvider(config.identityProviderConfig);
@@ -15,7 +15,7 @@ export const httpAuthSchemeMiddleware = (config) => (next, context) => async (ar
15
15
  for (const option of options) {
16
16
  const scheme = authSchemes.get(option.schemeId);
17
17
  if (!scheme) {
18
- failureReasons.push(`HttpAuthScheme \`${option.schemeId}\` was not enable for this service.`);
18
+ failureReasons.push(`HttpAuthScheme \`${option.schemeId}\` was not enabled for this service.`);
19
19
  continue;
20
20
  }
21
21
  const identityProvider = scheme.identityProvider(config.identityProviderConfig);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/experimental-identity-and-auth",
3
- "version": "0.0.19",
3
+ "version": "0.0.21",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
6
6
  "build:cjs": "yarn g:tsc -p tsconfig.cjs.json",
@@ -24,12 +24,12 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@smithy/middleware-endpoint": "^2.1.2",
28
- "@smithy/middleware-retry": "^2.0.17",
29
- "@smithy/middleware-serde": "^2.0.11",
30
- "@smithy/protocol-http": "^3.0.7",
31
- "@smithy/signature-v4": "^2.0.11",
32
- "@smithy/types": "^2.3.5",
27
+ "@smithy/middleware-endpoint": "^2.1.4",
28
+ "@smithy/middleware-retry": "^2.0.19",
29
+ "@smithy/middleware-serde": "^2.0.12",
30
+ "@smithy/protocol-http": "^3.0.8",
31
+ "@smithy/signature-v4": "^2.0.12",
32
+ "@smithy/types": "^2.4.0",
33
33
  "tslib": "^2.5.0"
34
34
  },
35
35
  "engines": {
@@ -52,7 +52,7 @@
52
52
  "directory": "packages/experimental-identity-and-auth"
53
53
  },
54
54
  "devDependencies": {
55
- "@smithy/util-test": "^0.1.7",
55
+ "@smithy/util-test": "^0.1.8",
56
56
  "@tsconfig/recommended": "1.0.1",
57
57
  "concurrently": "7.0.0",
58
58
  "downlevel-dts": "0.10.1",