@smithy/experimental-identity-and-auth 0.1.1 → 0.1.3
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 +11 -11
- package/package.json +9 -9
package/dist-cjs/index.js
CHANGED
|
@@ -400,25 +400,25 @@ var NoAuthSigner = _NoAuthSigner;
|
|
|
400
400
|
|
|
401
401
|
0 && (module.exports = {
|
|
402
402
|
DefaultIdentityProviderConfig,
|
|
403
|
-
|
|
403
|
+
SigV4Signer,
|
|
404
|
+
createEndpointRuleSetHttpAuthSchemeProvider,
|
|
405
|
+
createEndpointRuleSetHttpAuthSchemeParametersProvider,
|
|
404
406
|
HttpApiKeyAuthLocation,
|
|
405
407
|
HttpApiKeyAuthSigner,
|
|
406
408
|
HttpBearerAuthSigner,
|
|
407
|
-
NoAuthSigner,
|
|
408
|
-
SigV4Signer,
|
|
409
|
-
createEndpointRuleSetHttpAuthSchemeParametersProvider,
|
|
410
|
-
createEndpointRuleSetHttpAuthSchemeProvider,
|
|
411
409
|
createIsIdentityExpiredFunction,
|
|
410
|
+
EXPIRATION_MS,
|
|
411
|
+
isIdentityExpired,
|
|
412
412
|
doesIdentityRequireRefresh,
|
|
413
|
-
|
|
414
|
-
getHttpAuthSchemePlugin,
|
|
415
|
-
getHttpSigningPlugin,
|
|
416
|
-
httpAuthSchemeEndpointRuleSetMiddlewareOptions,
|
|
413
|
+
memoizeIdentityProvider,
|
|
417
414
|
httpAuthSchemeMiddleware,
|
|
415
|
+
httpAuthSchemeEndpointRuleSetMiddlewareOptions,
|
|
416
|
+
getHttpAuthSchemeEndpointRuleSetPlugin,
|
|
418
417
|
httpAuthSchemeMiddlewareOptions,
|
|
418
|
+
getHttpAuthSchemePlugin,
|
|
419
419
|
httpSigningMiddleware,
|
|
420
420
|
httpSigningMiddlewareOptions,
|
|
421
|
-
|
|
422
|
-
|
|
421
|
+
getHttpSigningPlugin,
|
|
422
|
+
NoAuthSigner
|
|
423
423
|
});
|
|
424
424
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithy/experimental-identity-and-auth",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
|
|
6
6
|
"build:cjs": "node ../../scripts/inline experimental-identity-and-auth",
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@smithy/middleware-endpoint": "^2.4.
|
|
28
|
-
"@smithy/middleware-retry": "^2.1.
|
|
29
|
-
"@smithy/middleware-serde": "^2.1.
|
|
30
|
-
"@smithy/protocol-http": "^3.
|
|
31
|
-
"@smithy/signature-v4": "^2.1.
|
|
32
|
-
"@smithy/types": "^2.
|
|
33
|
-
"@smithy/util-middleware": "^2.1.
|
|
27
|
+
"@smithy/middleware-endpoint": "^2.4.3",
|
|
28
|
+
"@smithy/middleware-retry": "^2.1.3",
|
|
29
|
+
"@smithy/middleware-serde": "^2.1.3",
|
|
30
|
+
"@smithy/protocol-http": "^3.2.1",
|
|
31
|
+
"@smithy/signature-v4": "^2.1.3",
|
|
32
|
+
"@smithy/types": "^2.10.1",
|
|
33
|
+
"@smithy/util-middleware": "^2.1.3",
|
|
34
34
|
"tslib": "^2.5.0"
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"directory": "packages/experimental-identity-and-auth"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@smithy/util-test": "^0.1.
|
|
56
|
+
"@smithy/util-test": "^0.1.16",
|
|
57
57
|
"@tsconfig/recommended": "1.0.1",
|
|
58
58
|
"concurrently": "7.0.0",
|
|
59
59
|
"downlevel-dts": "0.10.1",
|