@aws-sdk/credential-provider-http 3.422.0 → 3.423.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.
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.fromHttp = void 0;
4
+ var fromHttp_browser_1 = require("./fromHttp/fromHttp.browser");
5
+ Object.defineProperty(exports, "fromHttp", { enumerable: true, get: function () { return fromHttp_browser_1.fromHttp; } });
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.fromHttpForBrowser = void 0;
4
- const tslib_1 = require("tslib");
5
- tslib_1.__exportStar(require("./fromHttp/fromHttp"), exports);
6
- var fromHttp_browser_1 = require("./fromHttp/fromHttp.browser");
7
- Object.defineProperty(exports, "fromHttpForBrowser", { enumerable: true, get: function () { return fromHttp_browser_1.fromHttp; } });
3
+ exports.fromHttp = void 0;
4
+ var fromHttp_1 = require("./fromHttp/fromHttp");
5
+ Object.defineProperty(exports, "fromHttp", { enumerable: true, get: function () { return fromHttp_1.fromHttp; } });
@@ -0,0 +1 @@
1
+ export { fromHttp } from "./fromHttp/fromHttp.browser";
package/dist-es/index.js CHANGED
@@ -1,2 +1 @@
1
- export * from "./fromHttp/fromHttp";
2
- export { fromHttp as fromHttpForBrowser } from "./fromHttp/fromHttp.browser";
1
+ export { fromHttp } from "./fromHttp/fromHttp";
@@ -0,0 +1,2 @@
1
+ export { fromHttp } from "./fromHttp/fromHttp.browser";
2
+ export type { FromHttpOptions, HttpProviderCredentials } from "./fromHttp/fromHttpTypes";
@@ -1,3 +1,2 @@
1
- export * from "./fromHttp/fromHttp";
2
- export { fromHttp as fromHttpForBrowser } from "./fromHttp/fromHttp.browser";
1
+ export { fromHttp } from "./fromHttp/fromHttp";
3
2
  export type { FromHttpOptions, HttpProviderCredentials } from "./fromHttp/fromHttpTypes";
@@ -0,0 +1,5 @@
1
+ export { fromHttp } from "./fromHttp/fromHttp.browser";
2
+ export {
3
+ FromHttpOptions,
4
+ HttpProviderCredentials,
5
+ } from "./fromHttp/fromHttpTypes";
@@ -1,5 +1,4 @@
1
- export * from "./fromHttp/fromHttp";
2
- export { fromHttp as fromHttpForBrowser } from "./fromHttp/fromHttp.browser";
1
+ export { fromHttp } from "./fromHttp/fromHttp";
3
2
  export {
4
3
  FromHttpOptions,
5
4
  HttpProviderCredentials,
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-http",
3
- "version": "3.422.0",
3
+ "version": "3.423.0",
4
4
  "description": "AWS credential provider for containers and HTTP sources",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
7
+ "browser": "./dist-es/index.browser.js",
8
+ "react-native": "./dist-es/index.browser.js",
7
9
  "scripts": {
8
10
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
9
11
  "build:cjs": "tsc -p tsconfig.cjs.json",