@aws-sdk/client-eventbridge 3.621.0 → 3.622.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/index.js +9 -9
- package/dist-es/EventBridgeClient.js +9 -9
- package/dist-types/EventBridgeClient.d.ts +6 -6
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/EventBridgeClient.d.ts +7 -7
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -8
- package/package.json +12 -11
package/dist-cjs/index.js
CHANGED
|
@@ -192,22 +192,22 @@ var _EventBridgeClient = class _EventBridgeClient extends import_smithy_client.C
|
|
|
192
192
|
constructor(...[configuration]) {
|
|
193
193
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
194
194
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
195
|
-
const _config_2 = (0,
|
|
196
|
-
const _config_3 = (0,
|
|
197
|
-
const _config_4 = (0,
|
|
198
|
-
const _config_5 = (0,
|
|
199
|
-
const _config_6 = (0,
|
|
200
|
-
const _config_7 = (0,
|
|
195
|
+
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
196
|
+
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
197
|
+
const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
|
|
198
|
+
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
199
|
+
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
200
|
+
const _config_7 = (0, import_middleware_signing.resolveAwsAuthConfig)(_config_6);
|
|
201
201
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
202
202
|
super(_config_8);
|
|
203
203
|
this.config = _config_8;
|
|
204
|
+
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
205
|
+
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
206
|
+
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
204
207
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
205
208
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
206
209
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
207
210
|
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
208
|
-
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
209
|
-
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
210
|
-
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
211
211
|
}
|
|
212
212
|
/**
|
|
213
213
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -16,22 +16,22 @@ export class EventBridgeClient extends __Client {
|
|
|
16
16
|
constructor(...[configuration]) {
|
|
17
17
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
18
18
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
19
|
-
const _config_2 =
|
|
20
|
-
const _config_3 =
|
|
21
|
-
const _config_4 =
|
|
22
|
-
const _config_5 =
|
|
23
|
-
const _config_6 =
|
|
24
|
-
const _config_7 =
|
|
19
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
20
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
21
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
22
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
23
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
24
|
+
const _config_7 = resolveAwsAuthConfig(_config_6);
|
|
25
25
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
26
26
|
super(_config_8);
|
|
27
27
|
this.config = _config_8;
|
|
28
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
29
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
30
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
28
31
|
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
29
32
|
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
30
33
|
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
31
34
|
this.middlewareStack.use(getAwsAuthPlugin(this.config));
|
|
32
|
-
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
33
|
-
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
34
|
-
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
35
35
|
}
|
|
36
36
|
destroy() {
|
|
37
37
|
super.destroy();
|
|
@@ -153,15 +153,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
153
153
|
*/
|
|
154
154
|
region?: string | __Provider<string>;
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
156
|
+
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
157
157
|
* @internal
|
|
158
158
|
*/
|
|
159
|
-
|
|
159
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
160
160
|
/**
|
|
161
|
-
*
|
|
161
|
+
* Default credentials provider; Not available in browser runtime.
|
|
162
162
|
* @internal
|
|
163
163
|
*/
|
|
164
|
-
|
|
164
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
165
165
|
/**
|
|
166
166
|
* Value for how many times a request will be made at most in case of retry.
|
|
167
167
|
*/
|
|
@@ -188,7 +188,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
188
188
|
/**
|
|
189
189
|
* @public
|
|
190
190
|
*/
|
|
191
|
-
export type EventBridgeClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults &
|
|
191
|
+
export type EventBridgeClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & AwsAuthInputConfig & ClientInputEndpointParameters;
|
|
192
192
|
/**
|
|
193
193
|
* @public
|
|
194
194
|
*
|
|
@@ -199,7 +199,7 @@ export interface EventBridgeClientConfig extends EventBridgeClientConfigType {
|
|
|
199
199
|
/**
|
|
200
200
|
* @public
|
|
201
201
|
*/
|
|
202
|
-
export type EventBridgeClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig &
|
|
202
|
+
export type EventBridgeClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & AwsAuthResolvedConfig & ClientResolvedEndpointParameters;
|
|
203
203
|
/**
|
|
204
204
|
* @public
|
|
205
205
|
*
|
|
@@ -27,6 +27,8 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
30
32
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
31
33
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -38,6 +40,4 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
38
40
|
systemClockOffset?: number | undefined;
|
|
39
41
|
signingRegion?: string | undefined;
|
|
40
42
|
signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
41
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
42
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
43
43
|
};
|
|
@@ -27,6 +27,8 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
30
32
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
31
33
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -38,6 +40,4 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
38
40
|
systemClockOffset?: number | undefined;
|
|
39
41
|
signingRegion?: string | undefined;
|
|
40
42
|
signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
41
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
42
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
43
43
|
};
|
|
@@ -19,13 +19,15 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
region: string | import("@smithy/types").Provider<any>;
|
|
22
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
23
22
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
25
25
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
26
|
logger: import("@smithy/types").Logger;
|
|
27
27
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
28
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
29
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
30
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
29
31
|
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
30
32
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
33
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -37,6 +39,4 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
37
39
|
systemClockOffset?: number | undefined;
|
|
38
40
|
signingRegion?: string | undefined;
|
|
39
41
|
signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
40
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
41
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
42
42
|
};
|
|
@@ -413,8 +413,8 @@ export interface ClientDefaults
|
|
|
413
413
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
414
414
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
415
415
|
region?: string | __Provider<string>;
|
|
416
|
-
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
417
416
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
417
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
418
418
|
maxAttempts?: number | __Provider<number>;
|
|
419
419
|
retryMode?: string | __Provider<string>;
|
|
420
420
|
logger?: __Logger;
|
|
@@ -425,24 +425,24 @@ export type EventBridgeClientConfigType = Partial<
|
|
|
425
425
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
426
426
|
> &
|
|
427
427
|
ClientDefaults &
|
|
428
|
+
UserAgentInputConfig &
|
|
429
|
+
RetryInputConfig &
|
|
428
430
|
RegionInputConfig &
|
|
429
|
-
EndpointInputConfig<EndpointParameters> &
|
|
430
431
|
HostHeaderInputConfig &
|
|
432
|
+
EndpointInputConfig<EndpointParameters> &
|
|
431
433
|
AwsAuthInputConfig &
|
|
432
|
-
UserAgentInputConfig &
|
|
433
|
-
RetryInputConfig &
|
|
434
434
|
ClientInputEndpointParameters;
|
|
435
435
|
export interface EventBridgeClientConfig extends EventBridgeClientConfigType {}
|
|
436
436
|
export type EventBridgeClientResolvedConfigType =
|
|
437
437
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
438
438
|
Required<ClientDefaults> &
|
|
439
439
|
RuntimeExtensionsConfig &
|
|
440
|
+
UserAgentResolvedConfig &
|
|
441
|
+
RetryResolvedConfig &
|
|
440
442
|
RegionResolvedConfig &
|
|
441
|
-
EndpointResolvedConfig<EndpointParameters> &
|
|
442
443
|
HostHeaderResolvedConfig &
|
|
444
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
443
445
|
AwsAuthResolvedConfig &
|
|
444
|
-
UserAgentResolvedConfig &
|
|
445
|
-
RetryResolvedConfig &
|
|
446
446
|
ClientResolvedEndpointParameters;
|
|
447
447
|
export interface EventBridgeClientResolvedConfig
|
|
448
448
|
extends EventBridgeClientResolvedConfigType {}
|
|
@@ -32,6 +32,11 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
32
32
|
serviceId: string;
|
|
33
33
|
logger: import("@smithy/types").Logger;
|
|
34
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
35
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?:
|
|
37
|
+
| import("@smithy/types").RetryStrategy
|
|
38
|
+
| import("@smithy/types").RetryStrategyV2
|
|
39
|
+
| undefined;
|
|
35
40
|
endpoint?:
|
|
36
41
|
| ((
|
|
37
42
|
| string
|
|
@@ -77,9 +82,4 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
77
82
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
78
83
|
) => import("@smithy/types").RequestSigner)
|
|
79
84
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
80
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
81
|
-
retryStrategy?:
|
|
82
|
-
| import("@smithy/types").RetryStrategy
|
|
83
|
-
| import("@smithy/types").RetryStrategyV2
|
|
84
|
-
| undefined;
|
|
85
85
|
};
|
|
@@ -36,6 +36,11 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
36
36
|
serviceId: string;
|
|
37
37
|
logger: import("@smithy/types").Logger;
|
|
38
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
40
|
+
retryStrategy?:
|
|
41
|
+
| import("@smithy/types").RetryStrategy
|
|
42
|
+
| import("@smithy/types").RetryStrategyV2
|
|
43
|
+
| undefined;
|
|
39
44
|
endpoint?:
|
|
40
45
|
| ((
|
|
41
46
|
| string
|
|
@@ -81,9 +86,4 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
81
86
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
82
87
|
) => import("@smithy/types").RequestSigner)
|
|
83
88
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
84
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
85
|
-
retryStrategy?:
|
|
86
|
-
| import("@smithy/types").RetryStrategy
|
|
87
|
-
| import("@smithy/types").RetryStrategyV2
|
|
88
|
-
| undefined;
|
|
89
89
|
};
|
|
@@ -21,12 +21,12 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
region: string | import("@smithy/types").Provider<any>;
|
|
24
|
-
credentialDefaultProvider: (
|
|
25
|
-
input: any
|
|
26
|
-
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
27
24
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
28
25
|
import("@smithy/types").UserAgent
|
|
29
26
|
>;
|
|
27
|
+
credentialDefaultProvider: (
|
|
28
|
+
input: any
|
|
29
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
30
30
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
31
31
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
@@ -36,6 +36,11 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
36
36
|
| import("@smithy/types").Provider<
|
|
37
37
|
import("@smithy/smithy-client").DefaultsMode
|
|
38
38
|
>;
|
|
39
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
40
|
+
retryStrategy?:
|
|
41
|
+
| import("@smithy/types").RetryStrategy
|
|
42
|
+
| import("@smithy/types").RetryStrategyV2
|
|
43
|
+
| undefined;
|
|
39
44
|
endpoint?:
|
|
40
45
|
| string
|
|
41
46
|
| import("@smithy/types").Endpoint
|
|
@@ -71,9 +76,4 @@ export declare const getRuntimeConfig: (config: EventBridgeClientConfig) => {
|
|
|
71
76
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
72
77
|
) => import("@smithy/types").RequestSigner)
|
|
73
78
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
74
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
75
|
-
retryStrategy?:
|
|
76
|
-
| import("@smithy/types").RetryStrategy
|
|
77
|
-
| import("@smithy/types").RetryStrategyV2
|
|
78
|
-
| undefined;
|
|
79
79
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-eventbridge",
|
|
3
3
|
"description": "AWS SDK for JavaScript Eventbridge Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.622.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-eventbridge",
|
|
@@ -22,48 +22,49 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
25
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
26
|
-
"@aws-sdk/client-sts": "3.
|
|
27
|
-
"@aws-sdk/core": "3.
|
|
28
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/client-sso-oidc": "3.622.0",
|
|
26
|
+
"@aws-sdk/client-sts": "3.622.0",
|
|
27
|
+
"@aws-sdk/core": "3.622.0",
|
|
28
|
+
"@aws-sdk/credential-provider-node": "3.622.0",
|
|
29
29
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
30
30
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
31
31
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
32
32
|
"@aws-sdk/middleware-signing": "3.620.0",
|
|
33
33
|
"@aws-sdk/middleware-user-agent": "3.620.0",
|
|
34
34
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
35
|
-
"@aws-sdk/signature-v4-multi-region": "3.
|
|
35
|
+
"@aws-sdk/signature-v4-multi-region": "3.622.0",
|
|
36
36
|
"@aws-sdk/types": "3.609.0",
|
|
37
37
|
"@aws-sdk/util-endpoints": "3.614.0",
|
|
38
38
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
39
39
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
40
40
|
"@smithy/config-resolver": "^3.0.5",
|
|
41
|
+
"@smithy/core": "^2.3.2",
|
|
41
42
|
"@smithy/fetch-http-handler": "^3.2.4",
|
|
42
43
|
"@smithy/hash-node": "^3.0.3",
|
|
43
44
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
44
45
|
"@smithy/middleware-content-length": "^3.0.5",
|
|
45
46
|
"@smithy/middleware-endpoint": "^3.1.0",
|
|
46
|
-
"@smithy/middleware-retry": "^3.0.
|
|
47
|
+
"@smithy/middleware-retry": "^3.0.14",
|
|
47
48
|
"@smithy/middleware-serde": "^3.0.3",
|
|
48
49
|
"@smithy/middleware-stack": "^3.0.3",
|
|
49
50
|
"@smithy/node-config-provider": "^3.1.4",
|
|
50
51
|
"@smithy/node-http-handler": "^3.1.4",
|
|
51
52
|
"@smithy/protocol-http": "^4.1.0",
|
|
52
|
-
"@smithy/smithy-client": "^3.1.
|
|
53
|
+
"@smithy/smithy-client": "^3.1.12",
|
|
53
54
|
"@smithy/types": "^3.3.0",
|
|
54
55
|
"@smithy/url-parser": "^3.0.3",
|
|
55
56
|
"@smithy/util-base64": "^3.0.0",
|
|
56
57
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
57
58
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
58
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
59
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
59
|
+
"@smithy/util-defaults-mode-browser": "^3.0.14",
|
|
60
|
+
"@smithy/util-defaults-mode-node": "^3.0.14",
|
|
60
61
|
"@smithy/util-endpoints": "^2.0.5",
|
|
61
62
|
"@smithy/util-retry": "^3.0.3",
|
|
62
63
|
"@smithy/util-utf8": "^3.0.0",
|
|
63
64
|
"tslib": "^2.6.2"
|
|
64
65
|
},
|
|
65
66
|
"devDependencies": {
|
|
66
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
67
|
+
"@aws-sdk/signature-v4-crt": "3.622.0",
|
|
67
68
|
"@tsconfig/node16": "16.1.3",
|
|
68
69
|
"@types/node": "^16.18.96",
|
|
69
70
|
"concurrently": "7.0.0",
|