@aws-sdk/client-pipes 3.645.0 → 3.649.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.
- package/dist-cjs/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +3 -0
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/commands/CreatePipeCommand.d.ts +1 -0
- package/dist-types/commands/DescribePipeCommand.d.ts +1 -0
- package/dist-types/commands/UpdatePipeCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +33 -34
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +35 -35
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -796,6 +796,7 @@ var se_CreatePipeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
796
796
|
DesiredState: [],
|
|
797
797
|
Enrichment: [],
|
|
798
798
|
EnrichmentParameters: (_) => (0, import_smithy_client._json)(_),
|
|
799
|
+
KmsKeyIdentifier: [],
|
|
799
800
|
LogConfiguration: (_) => (0, import_smithy_client._json)(_),
|
|
800
801
|
RoleArn: [],
|
|
801
802
|
Source: [],
|
|
@@ -915,6 +916,7 @@ var se_UpdatePipeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
915
916
|
DesiredState: [],
|
|
916
917
|
Enrichment: [],
|
|
917
918
|
EnrichmentParameters: (_) => (0, import_smithy_client._json)(_),
|
|
919
|
+
KmsKeyIdentifier: [],
|
|
918
920
|
LogConfiguration: (_) => (0, import_smithy_client._json)(_),
|
|
919
921
|
RoleArn: [],
|
|
920
922
|
SourceParameters: (_) => (0, import_smithy_client._json)(_),
|
|
@@ -979,6 +981,7 @@ var de_DescribePipeCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
979
981
|
DesiredState: import_smithy_client.expectString,
|
|
980
982
|
Enrichment: import_smithy_client.expectString,
|
|
981
983
|
EnrichmentParameters: import_smithy_client._json,
|
|
984
|
+
KmsKeyIdentifier: import_smithy_client.expectString,
|
|
982
985
|
LastModifiedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
983
986
|
LogConfiguration: import_smithy_client._json,
|
|
984
987
|
Name: import_smithy_client.expectString,
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
-
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints";
|
|
3
3
|
import { ruleSet } from "./ruleset";
|
|
4
|
+
const cache = new EndpointCache({
|
|
5
|
+
size: 50,
|
|
6
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
7
|
+
});
|
|
4
8
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
5
|
-
return resolveEndpoint(ruleSet, {
|
|
9
|
+
return cache.get(endpointParams, () => resolveEndpoint(ruleSet, {
|
|
6
10
|
endpointParams: endpointParams,
|
|
7
11
|
logger: context.logger,
|
|
8
|
-
});
|
|
12
|
+
}));
|
|
9
13
|
};
|
|
10
14
|
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
@@ -16,6 +16,7 @@ export const se_CreatePipeCommand = async (input, context) => {
|
|
|
16
16
|
DesiredState: [],
|
|
17
17
|
Enrichment: [],
|
|
18
18
|
EnrichmentParameters: (_) => _json(_),
|
|
19
|
+
KmsKeyIdentifier: [],
|
|
19
20
|
LogConfiguration: (_) => _json(_),
|
|
20
21
|
RoleArn: [],
|
|
21
22
|
Source: [],
|
|
@@ -131,6 +132,7 @@ export const se_UpdatePipeCommand = async (input, context) => {
|
|
|
131
132
|
DesiredState: [],
|
|
132
133
|
Enrichment: [],
|
|
133
134
|
EnrichmentParameters: (_) => _json(_),
|
|
135
|
+
KmsKeyIdentifier: [],
|
|
134
136
|
LogConfiguration: (_) => _json(_),
|
|
135
137
|
RoleArn: [],
|
|
136
138
|
SourceParameters: (_) => _json(_),
|
|
@@ -194,6 +196,7 @@ export const de_DescribePipeCommand = async (output, context) => {
|
|
|
194
196
|
DesiredState: __expectString,
|
|
195
197
|
Enrichment: __expectString,
|
|
196
198
|
EnrichmentParameters: _json,
|
|
199
|
+
KmsKeyIdentifier: __expectString,
|
|
197
200
|
LastModifiedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
198
201
|
LogConfiguration: _json,
|
|
199
202
|
Name: __expectString,
|
|
@@ -562,22 +562,7 @@ export interface S3LogDestinationParameters {
|
|
|
562
562
|
BucketOwner: string | undefined;
|
|
563
563
|
/**
|
|
564
564
|
* <p>How EventBridge should format the log records.</p>
|
|
565
|
-
* <
|
|
566
|
-
* <li>
|
|
567
|
-
* <p>
|
|
568
|
-
* <code>json</code>: JSON </p>
|
|
569
|
-
* </li>
|
|
570
|
-
* <li>
|
|
571
|
-
* <p>
|
|
572
|
-
* <code>plain</code>: Plain text</p>
|
|
573
|
-
* </li>
|
|
574
|
-
* <li>
|
|
575
|
-
* <p>
|
|
576
|
-
* <code>w3c</code>: <a href="https://www.w3.org/TR/WD-logfile">W3C extended
|
|
577
|
-
* logging file format</a>
|
|
578
|
-
* </p>
|
|
579
|
-
* </li>
|
|
580
|
-
* </ul>
|
|
565
|
+
* <p>EventBridge currently only supports <code>json</code> formatting.</p>
|
|
581
566
|
* @public
|
|
582
567
|
*/
|
|
583
568
|
OutputFormat?: S3OutputFormat;
|
|
@@ -1102,8 +1087,7 @@ export interface SelfManagedKafkaAccessConfigurationVpc {
|
|
|
1102
1087
|
Subnets?: string[];
|
|
1103
1088
|
/**
|
|
1104
1089
|
* <p>Specifies the security groups associated with the stream. These security groups must all
|
|
1105
|
-
* be in the same VPC. You can specify as many as five security groups
|
|
1106
|
-
* a security group, the default security group for the VPC is used.</p>
|
|
1090
|
+
* be in the same VPC. You can specify as many as five security groups.</p>
|
|
1107
1091
|
* @public
|
|
1108
1092
|
*/
|
|
1109
1093
|
SecurityGroup?: string[];
|
|
@@ -2416,6 +2400,17 @@ export interface CreatePipeRequest {
|
|
|
2416
2400
|
* @public
|
|
2417
2401
|
*/
|
|
2418
2402
|
LogConfiguration?: PipeLogConfigurationParameters;
|
|
2403
|
+
/**
|
|
2404
|
+
* <p>The identifier of the KMS
|
|
2405
|
+
* customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt pipe data. The identifier can be the key
|
|
2406
|
+
* Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN.</p>
|
|
2407
|
+
* <p>If you do not specify a customer managed key identifier, EventBridge uses an
|
|
2408
|
+
* Amazon Web Services owned key to encrypt pipe data.</p>
|
|
2409
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html">Managing keys</a> in the <i>Key Management Service
|
|
2410
|
+
* Developer Guide</i>. </p>
|
|
2411
|
+
* @public
|
|
2412
|
+
*/
|
|
2413
|
+
KmsKeyIdentifier?: string;
|
|
2419
2414
|
}
|
|
2420
2415
|
/**
|
|
2421
2416
|
* @public
|
|
@@ -2705,22 +2700,7 @@ export interface S3LogDestination {
|
|
|
2705
2700
|
BucketOwner?: string;
|
|
2706
2701
|
/**
|
|
2707
2702
|
* <p>The format EventBridge uses for the log records.</p>
|
|
2708
|
-
* <
|
|
2709
|
-
* <li>
|
|
2710
|
-
* <p>
|
|
2711
|
-
* <code>json</code>: JSON </p>
|
|
2712
|
-
* </li>
|
|
2713
|
-
* <li>
|
|
2714
|
-
* <p>
|
|
2715
|
-
* <code>plain</code>: Plain text</p>
|
|
2716
|
-
* </li>
|
|
2717
|
-
* <li>
|
|
2718
|
-
* <p>
|
|
2719
|
-
* <code>w3c</code>: <a href="https://www.w3.org/TR/WD-logfile">W3C extended
|
|
2720
|
-
* logging file format</a>
|
|
2721
|
-
* </p>
|
|
2722
|
-
* </li>
|
|
2723
|
-
* </ul>
|
|
2703
|
+
* <p>EventBridge currently only supports <code>json</code> formatting.</p>
|
|
2724
2704
|
* @public
|
|
2725
2705
|
*/
|
|
2726
2706
|
OutputFormat?: S3OutputFormat;
|
|
@@ -2851,6 +2831,13 @@ export interface DescribePipeResponse {
|
|
|
2851
2831
|
* @public
|
|
2852
2832
|
*/
|
|
2853
2833
|
LogConfiguration?: PipeLogConfiguration;
|
|
2834
|
+
/**
|
|
2835
|
+
* <p>The identifier of the KMS
|
|
2836
|
+
* customer managed key for EventBridge to use to encrypt pipe data, if one has been specified.</p>
|
|
2837
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html">Data encryption in EventBridge</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
2838
|
+
* @public
|
|
2839
|
+
*/
|
|
2840
|
+
KmsKeyIdentifier?: string;
|
|
2854
2841
|
}
|
|
2855
2842
|
/**
|
|
2856
2843
|
* @public
|
|
@@ -3390,6 +3377,18 @@ export interface UpdatePipeRequest {
|
|
|
3390
3377
|
* @public
|
|
3391
3378
|
*/
|
|
3392
3379
|
LogConfiguration?: PipeLogConfigurationParameters;
|
|
3380
|
+
/**
|
|
3381
|
+
* <p>The identifier of the KMS
|
|
3382
|
+
* customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt pipe data. The identifier can be the key
|
|
3383
|
+
* Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN.</p>
|
|
3384
|
+
* <p>To update a pipe that is using the default Amazon Web Services owned key to use a customer managed key instead, or update a pipe that is using a customer managed key to use a
|
|
3385
|
+
* different customer managed key, specify a customer managed key identifier.</p>
|
|
3386
|
+
* <p>To update a pipe that is using a customer managed key to use the default Amazon Web Services owned key, specify an empty string.</p>
|
|
3387
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html">Managing keys</a> in the <i>Key Management Service
|
|
3388
|
+
* Developer Guide</i>. </p>
|
|
3389
|
+
* @public
|
|
3390
|
+
*/
|
|
3391
|
+
KmsKeyIdentifier?: string;
|
|
3393
3392
|
}
|
|
3394
3393
|
/**
|
|
3395
3394
|
* @public
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
21
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
23
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
24
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -34,6 +35,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
34
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
36
|
}) => import("@smithy/types").EndpointV2;
|
|
36
37
|
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
37
39
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
40
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PipesHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
21
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
23
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
24
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -34,6 +35,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
34
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
36
|
}) => import("@smithy/types").EndpointV2;
|
|
36
37
|
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
37
39
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
40
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PipesHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -7,6 +7,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
|
+
cacheMiddleware?: boolean | undefined;
|
|
10
11
|
urlParser: import("@smithy/types").UrlParser;
|
|
11
12
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
13
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -33,6 +34,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
33
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
34
35
|
}) => import("@smithy/types").EndpointV2;
|
|
35
36
|
tls?: boolean | undefined;
|
|
37
|
+
serviceConfiguredEndpoint?: undefined;
|
|
36
38
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
39
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PipesHttpAuthSchemeProvider;
|
|
38
40
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -571,6 +571,7 @@ export interface CreatePipeRequest {
|
|
|
571
571
|
RoleArn: string | undefined;
|
|
572
572
|
Tags?: Record<string, string>;
|
|
573
573
|
LogConfiguration?: PipeLogConfigurationParameters;
|
|
574
|
+
KmsKeyIdentifier?: string;
|
|
574
575
|
}
|
|
575
576
|
export declare const PipeState: {
|
|
576
577
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -697,6 +698,7 @@ export interface DescribePipeResponse {
|
|
|
697
698
|
CreationTime?: Date;
|
|
698
699
|
LastModifiedTime?: Date;
|
|
699
700
|
LogConfiguration?: PipeLogConfiguration;
|
|
701
|
+
KmsKeyIdentifier?: string;
|
|
700
702
|
}
|
|
701
703
|
export interface ListPipesRequest {
|
|
702
704
|
NamePrefix?: string;
|
|
@@ -816,6 +818,7 @@ export interface UpdatePipeRequest {
|
|
|
816
818
|
TargetParameters?: PipeTargetParameters;
|
|
817
819
|
RoleArn: string | undefined;
|
|
818
820
|
LogConfiguration?: PipeLogConfigurationParameters;
|
|
821
|
+
KmsKeyIdentifier?: string;
|
|
819
822
|
}
|
|
820
823
|
export interface UpdatePipeResponse {
|
|
821
824
|
Arn?: string;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
23
23
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
25
|
apiVersion: string;
|
|
26
|
+
cacheMiddleware?: boolean | undefined;
|
|
26
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
29
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -61,6 +62,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
61
62
|
}
|
|
62
63
|
) => import("@smithy/types").EndpointV2;
|
|
63
64
|
tls?: boolean | undefined;
|
|
65
|
+
serviceConfiguredEndpoint?: undefined;
|
|
64
66
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
65
67
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PipesHttpAuthSchemeProvider;
|
|
66
68
|
credentials?:
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
27
27
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
28
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
29
|
apiVersion: string;
|
|
30
|
+
cacheMiddleware?: boolean | undefined;
|
|
30
31
|
urlParser: import("@smithy/types").UrlParser;
|
|
31
32
|
base64Decoder: import("@smithy/types").Decoder;
|
|
32
33
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -65,6 +66,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
65
66
|
}
|
|
66
67
|
) => import("@smithy/types").EndpointV2;
|
|
67
68
|
tls?: boolean | undefined;
|
|
69
|
+
serviceConfiguredEndpoint?: undefined;
|
|
68
70
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
69
71
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PipesHttpAuthSchemeProvider;
|
|
70
72
|
credentials?:
|
|
@@ -9,6 +9,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
9
9
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean | undefined;
|
|
12
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
13
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
14
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -55,6 +56,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
55
56
|
}
|
|
56
57
|
) => import("@smithy/types").EndpointV2;
|
|
57
58
|
tls?: boolean | undefined;
|
|
59
|
+
serviceConfiguredEndpoint?: undefined;
|
|
58
60
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
59
61
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PipesHttpAuthSchemeProvider;
|
|
60
62
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pipes",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pipes Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.649.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-pipes",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.649.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.649.0",
|
|
25
|
+
"@aws-sdk/core": "3.649.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.649.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.649.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.649.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.649.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.649.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.649.0",
|
|
32
|
+
"@aws-sdk/types": "3.649.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.649.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.649.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.649.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.6",
|
|
37
|
+
"@smithy/core": "^2.4.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.5",
|
|
39
|
+
"@smithy/hash-node": "^3.0.4",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.4",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.6",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.1",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.16",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.4",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.4",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.5",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.1",
|
|
49
|
+
"@smithy/smithy-client": "^3.3.0",
|
|
50
|
+
"@smithy/types": "^3.4.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.4",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.0
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.16",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.16",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.0",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.4",
|
|
59
|
+
"@smithy/util-retry": "^3.0.4",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|