@cdk8s/awscdk-resolver 0.0.193 → 0.0.195
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/.jsii +4 -4
- package/lib/resolve.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/README.md +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +36 -36
- package/node_modules/@aws-sdk/client-sso/README.md +1 -1
- package/node_modules/@aws-sdk/client-sso/package.json +32 -32
- package/node_modules/@aws-sdk/client-sso-oidc/README.md +1 -1
- package/node_modules/@aws-sdk/client-sso-oidc/package.json +34 -34
- package/node_modules/@aws-sdk/client-sts/README.md +1 -1
- package/node_modules/@aws-sdk/client-sts/package.json +34 -34
- package/node_modules/@aws-sdk/core/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-env/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-http/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-node/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-process/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +7 -7
- package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
- package/node_modules/@aws-sdk/token-providers/package.json +4 -4
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/util-endpoints/package.json +4 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +5 -5
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +2 -27
- package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +2 -25
- package/node_modules/@smithy/fetch-http-handler/package.json +5 -5
- package/package.json +4 -4
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/LICENSE +0 -201
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/README.md +0 -11
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +0 -1
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +0 -230
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +0 -1
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +0 -1
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +0 -138
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +0 -11
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +0 -27
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +0 -33
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +0 -2
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +0 -1
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +0 -2
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +0 -33
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +0 -1
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +0 -2
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/package.json +0 -62
@@ -1,33 +0,0 @@
|
|
1
|
-
import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http";
|
2
|
-
import { FetchHttpHandlerOptions } from "@smithy/types";
|
3
|
-
import { HttpHandlerOptions, Provider } from "@smithy/types";
|
4
|
-
export { FetchHttpHandlerOptions };
|
5
|
-
type FetchHttpHandlerConfig = FetchHttpHandlerOptions;
|
6
|
-
/**
|
7
|
-
* @internal
|
8
|
-
* Detection of keepalive support. Can be overridden for testing.
|
9
|
-
*/
|
10
|
-
export declare const keepAliveSupport: {
|
11
|
-
supported: boolean | undefined;
|
12
|
-
};
|
13
|
-
/**
|
14
|
-
* @public
|
15
|
-
*
|
16
|
-
* HttpHandler implementation using browsers' `fetch` global function.
|
17
|
-
*/
|
18
|
-
export declare class FetchHttpHandler implements HttpHandler<FetchHttpHandlerConfig> {
|
19
|
-
private config?;
|
20
|
-
private configProvider;
|
21
|
-
/**
|
22
|
-
* @returns the input if it is an HttpHandler of any class,
|
23
|
-
* or instantiates a new instance of this handler.
|
24
|
-
*/
|
25
|
-
static create(instanceOrOptions?: HttpHandler<any> | FetchHttpHandlerOptions | Provider<FetchHttpHandlerOptions | void>): FetchHttpHandler | HttpHandler<any>;
|
26
|
-
constructor(options?: FetchHttpHandlerOptions | Provider<FetchHttpHandlerOptions | void>);
|
27
|
-
destroy(): void;
|
28
|
-
handle(request: HttpRequest, { abortSignal }?: HttpHandlerOptions): Promise<{
|
29
|
-
response: HttpResponse;
|
30
|
-
}>;
|
31
|
-
updateHttpClientConfig(key: keyof FetchHttpHandlerConfig, value: FetchHttpHandlerConfig[typeof key]): void;
|
32
|
-
httpHandlerConfigs(): FetchHttpHandlerConfig;
|
33
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
export declare function requestTimeout(timeoutInMs?: number): Promise<never>;
|
package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/package.json
DELETED
@@ -1,62 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "@smithy/fetch-http-handler",
|
3
|
-
"version": "4.0.0",
|
4
|
-
"description": "Provides a way to make requests",
|
5
|
-
"scripts": {
|
6
|
-
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
|
7
|
-
"build:cjs": "node ../../scripts/inline fetch-http-handler",
|
8
|
-
"build:es": "yarn g:tsc -p tsconfig.es.json",
|
9
|
-
"build:types": "yarn g:tsc -p tsconfig.types.json",
|
10
|
-
"build:types:downlevel": "rimraf dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4",
|
11
|
-
"stage-release": "rimraf ./.release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz",
|
12
|
-
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
|
13
|
-
"lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
|
14
|
-
"format": "prettier --config ../../prettier.config.js --ignore-path ../.prettierignore --write \"**/*.{ts,md,json}\"",
|
15
|
-
"extract:docs": "api-extractor run --local",
|
16
|
-
"test": "yarn g:jest --coverage --forceExit && yarn g:karma start karma.conf.js"
|
17
|
-
},
|
18
|
-
"author": {
|
19
|
-
"name": "AWS SDK for JavaScript Team",
|
20
|
-
"url": "https://aws.amazon.com/javascript/"
|
21
|
-
},
|
22
|
-
"license": "Apache-2.0",
|
23
|
-
"main": "./dist-cjs/index.js",
|
24
|
-
"module": "./dist-es/index.js",
|
25
|
-
"types": "./dist-types/index.d.ts",
|
26
|
-
"dependencies": {
|
27
|
-
"@smithy/protocol-http": "^4.1.5",
|
28
|
-
"@smithy/querystring-builder": "^3.0.8",
|
29
|
-
"@smithy/types": "^3.6.0",
|
30
|
-
"@smithy/util-base64": "^3.0.0",
|
31
|
-
"tslib": "^2.6.2"
|
32
|
-
},
|
33
|
-
"devDependencies": {
|
34
|
-
"@smithy/abort-controller": "^3.1.6",
|
35
|
-
"concurrently": "7.0.0",
|
36
|
-
"downlevel-dts": "0.10.1",
|
37
|
-
"rimraf": "3.0.2",
|
38
|
-
"typedoc": "0.23.23"
|
39
|
-
},
|
40
|
-
"typesVersions": {
|
41
|
-
"<4.0": {
|
42
|
-
"dist-types/*": [
|
43
|
-
"dist-types/ts3.4/*"
|
44
|
-
]
|
45
|
-
}
|
46
|
-
},
|
47
|
-
"files": [
|
48
|
-
"dist-*/**"
|
49
|
-
],
|
50
|
-
"homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/fetch-http-handler",
|
51
|
-
"repository": {
|
52
|
-
"type": "git",
|
53
|
-
"url": "https://github.com/awslabs/smithy-typescript.git",
|
54
|
-
"directory": "packages/fetch-http-handler"
|
55
|
-
},
|
56
|
-
"typedoc": {
|
57
|
-
"entryPoint": "src/index.ts"
|
58
|
-
},
|
59
|
-
"publishConfig": {
|
60
|
-
"directory": ".release/package"
|
61
|
-
}
|
62
|
-
}
|