@aws-sdk/client-codecatalyst 3.620.1 → 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 +12 -18
- package/dist-es/CodeCatalystClient.js +12 -18
- package/dist-types/CodeCatalystClient.d.ts +2 -4
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/CodeCatalystClient.d.ts +6 -8
- 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 +5 -5
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -193,25 +193,27 @@ var _CodeCatalystClient = class _CodeCatalystClient extends import_smithy_client
|
|
|
193
193
|
constructor(...[configuration]) {
|
|
194
194
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
195
195
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
196
|
-
const _config_2 = (0,
|
|
197
|
-
const _config_3 = (0,
|
|
198
|
-
const _config_4 = (0,
|
|
199
|
-
const _config_5 = (0,
|
|
200
|
-
const _config_6 = (0,
|
|
196
|
+
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
197
|
+
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
198
|
+
const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
|
|
199
|
+
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
200
|
+
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
201
201
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
202
202
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
203
203
|
super(_config_8);
|
|
204
204
|
this.config = _config_8;
|
|
205
|
-
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
206
|
-
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
207
|
-
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
208
205
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
209
206
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
210
207
|
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
208
|
+
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
209
|
+
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
210
|
+
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
211
211
|
this.middlewareStack.use(
|
|
212
212
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
213
|
-
httpAuthSchemeParametersProvider:
|
|
214
|
-
identityProviderConfigProvider:
|
|
213
|
+
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultCodeCatalystHttpAuthSchemeParametersProvider,
|
|
214
|
+
identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
215
|
+
"smithy.api#httpBearerAuth": config.token
|
|
216
|
+
})
|
|
215
217
|
})
|
|
216
218
|
);
|
|
217
219
|
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
@@ -224,14 +226,6 @@ var _CodeCatalystClient = class _CodeCatalystClient extends import_smithy_client
|
|
|
224
226
|
destroy() {
|
|
225
227
|
super.destroy();
|
|
226
228
|
}
|
|
227
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
228
|
-
return import_httpAuthSchemeProvider.defaultCodeCatalystHttpAuthSchemeParametersProvider;
|
|
229
|
-
}
|
|
230
|
-
getIdentityProviderConfigProvider() {
|
|
231
|
-
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
232
|
-
"smithy.api#httpBearerAuth": config.token
|
|
233
|
-
});
|
|
234
|
-
}
|
|
235
229
|
};
|
|
236
230
|
__name(_CodeCatalystClient, "CodeCatalystClient");
|
|
237
231
|
var CodeCatalystClient = _CodeCatalystClient;
|
|
@@ -17,36 +17,30 @@ export class CodeCatalystClient extends __Client {
|
|
|
17
17
|
constructor(...[configuration]) {
|
|
18
18
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
19
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
20
|
-
const _config_2 =
|
|
21
|
-
const _config_3 =
|
|
22
|
-
const _config_4 =
|
|
23
|
-
const _config_5 =
|
|
24
|
-
const _config_6 =
|
|
20
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
21
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
22
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
23
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
24
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
25
25
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
26
26
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
27
27
|
super(_config_8);
|
|
28
28
|
this.config = _config_8;
|
|
29
|
-
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
30
|
-
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
31
|
-
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
32
29
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
33
30
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
34
31
|
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
32
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
33
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
34
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
35
35
|
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
36
|
-
httpAuthSchemeParametersProvider:
|
|
37
|
-
identityProviderConfigProvider:
|
|
36
|
+
httpAuthSchemeParametersProvider: defaultCodeCatalystHttpAuthSchemeParametersProvider,
|
|
37
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
38
|
+
"smithy.api#httpBearerAuth": config.token,
|
|
39
|
+
}),
|
|
38
40
|
}));
|
|
39
41
|
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
40
42
|
}
|
|
41
43
|
destroy() {
|
|
42
44
|
super.destroy();
|
|
43
45
|
}
|
|
44
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
45
|
-
return defaultCodeCatalystHttpAuthSchemeParametersProvider;
|
|
46
|
-
}
|
|
47
|
-
getIdentityProviderConfigProvider() {
|
|
48
|
-
return async (config) => new DefaultIdentityProviderConfig({
|
|
49
|
-
"smithy.api#httpBearerAuth": config.token,
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
46
|
}
|
|
@@ -163,7 +163,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
163
163
|
/**
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
|
-
export type CodeCatalystClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults &
|
|
166
|
+
export type CodeCatalystClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
167
167
|
/**
|
|
168
168
|
* @public
|
|
169
169
|
*
|
|
@@ -174,7 +174,7 @@ export interface CodeCatalystClientConfig extends CodeCatalystClientConfigType {
|
|
|
174
174
|
/**
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
export type CodeCatalystClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig &
|
|
177
|
+
export type CodeCatalystClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
178
178
|
/**
|
|
179
179
|
* @public
|
|
180
180
|
*
|
|
@@ -372,6 +372,4 @@ export declare class CodeCatalystClient extends __Client<__HttpHandlerOptions, S
|
|
|
372
372
|
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
373
373
|
*/
|
|
374
374
|
destroy(): void;
|
|
375
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
376
|
-
private getIdentityProviderConfigProvider;
|
|
377
375
|
}
|
|
@@ -28,12 +28,12 @@ export declare const defaultCodeCatalystHttpAuthSchemeProvider: CodeCatalystHttp
|
|
|
28
28
|
*/
|
|
29
29
|
export interface HttpAuthSchemeInputConfig {
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
32
32
|
* @internal
|
|
33
33
|
*/
|
|
34
34
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
37
37
|
* @internal
|
|
38
38
|
*/
|
|
39
39
|
httpAuthSchemeProvider?: CodeCatalystHttpAuthSchemeProvider;
|
|
@@ -47,12 +47,12 @@ export interface HttpAuthSchemeInputConfig {
|
|
|
47
47
|
*/
|
|
48
48
|
export interface HttpAuthSchemeResolvedConfig {
|
|
49
49
|
/**
|
|
50
|
-
*
|
|
50
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
51
51
|
* @internal
|
|
52
52
|
*/
|
|
53
53
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
56
56
|
* @internal
|
|
57
57
|
*/
|
|
58
58
|
readonly httpAuthSchemeProvider: CodeCatalystHttpAuthSchemeProvider;
|
|
@@ -26,13 +26,13 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
26
26
|
serviceId: string;
|
|
27
27
|
logger: import("@smithy/types").Logger;
|
|
28
28
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
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>) & (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;
|
|
30
32
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
33
|
logger?: import("@smithy/types").Logger | undefined;
|
|
32
34
|
}) => import("@smithy/types").EndpointV2;
|
|
33
35
|
tls?: boolean | undefined;
|
|
34
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
36
|
httpAuthSchemes: {
|
|
37
37
|
schemeId: string;
|
|
38
38
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
@@ -33,13 +33,13 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
33
33
|
serviceId: string;
|
|
34
34
|
logger: import("@smithy/types").Logger;
|
|
35
35
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
38
|
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;
|
|
37
39
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
38
40
|
logger?: import("@smithy/types").Logger | undefined;
|
|
39
41
|
}) => import("@smithy/types").EndpointV2;
|
|
40
42
|
tls?: boolean | undefined;
|
|
41
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
42
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
43
43
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
|
|
44
44
|
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider | undefined;
|
|
45
45
|
};
|
|
@@ -25,13 +25,13 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
25
25
|
logger: import("@smithy/types").Logger;
|
|
26
26
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
27
27
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
28
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
29
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
28
30
|
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;
|
|
29
31
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
32
|
logger?: import("@smithy/types").Logger | undefined;
|
|
31
33
|
}) => import("@smithy/types").EndpointV2;
|
|
32
34
|
tls?: boolean | undefined;
|
|
33
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
34
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
35
|
httpAuthSchemes: {
|
|
36
36
|
schemeId: string;
|
|
37
37
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
@@ -309,11 +309,11 @@ export type CodeCatalystClientConfigType = Partial<
|
|
|
309
309
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
310
310
|
> &
|
|
311
311
|
ClientDefaults &
|
|
312
|
-
RegionInputConfig &
|
|
313
|
-
EndpointInputConfig<EndpointParameters> &
|
|
314
|
-
HostHeaderInputConfig &
|
|
315
312
|
UserAgentInputConfig &
|
|
316
313
|
RetryInputConfig &
|
|
314
|
+
RegionInputConfig &
|
|
315
|
+
HostHeaderInputConfig &
|
|
316
|
+
EndpointInputConfig<EndpointParameters> &
|
|
317
317
|
HttpAuthSchemeInputConfig &
|
|
318
318
|
ClientInputEndpointParameters;
|
|
319
319
|
export interface CodeCatalystClientConfig
|
|
@@ -322,11 +322,11 @@ export type CodeCatalystClientResolvedConfigType =
|
|
|
322
322
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
323
323
|
Required<ClientDefaults> &
|
|
324
324
|
RuntimeExtensionsConfig &
|
|
325
|
-
RegionResolvedConfig &
|
|
326
|
-
EndpointResolvedConfig<EndpointParameters> &
|
|
327
|
-
HostHeaderResolvedConfig &
|
|
328
325
|
UserAgentResolvedConfig &
|
|
329
326
|
RetryResolvedConfig &
|
|
327
|
+
RegionResolvedConfig &
|
|
328
|
+
HostHeaderResolvedConfig &
|
|
329
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
330
330
|
HttpAuthSchemeResolvedConfig &
|
|
331
331
|
ClientResolvedEndpointParameters;
|
|
332
332
|
export interface CodeCatalystClientResolvedConfig
|
|
@@ -342,6 +342,4 @@ export declare class CodeCatalystClient extends __Client<
|
|
|
342
342
|
...[configuration]: __CheckOptionalClientConfig<CodeCatalystClientConfig>
|
|
343
343
|
);
|
|
344
344
|
destroy(): void;
|
|
345
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
346
|
-
private getIdentityProviderConfigProvider;
|
|
347
345
|
}
|
|
@@ -29,6 +29,11 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
29
29
|
serviceId: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
33
|
+
retryStrategy?:
|
|
34
|
+
| import("@smithy/types").RetryStrategy
|
|
35
|
+
| import("@smithy/types").RetryStrategyV2
|
|
36
|
+
| undefined;
|
|
32
37
|
endpoint?:
|
|
33
38
|
| ((
|
|
34
39
|
| string
|
|
@@ -53,11 +58,6 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
53
58
|
}
|
|
54
59
|
) => import("@smithy/types").EndpointV2;
|
|
55
60
|
tls?: boolean | undefined;
|
|
56
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
57
|
-
retryStrategy?:
|
|
58
|
-
| import("@smithy/types").RetryStrategy
|
|
59
|
-
| import("@smithy/types").RetryStrategyV2
|
|
60
|
-
| undefined;
|
|
61
61
|
httpAuthSchemes: {
|
|
62
62
|
schemeId: string;
|
|
63
63
|
identityProvider: (
|
|
@@ -42,6 +42,11 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
42
42
|
serviceId: string;
|
|
43
43
|
logger: import("@smithy/types").Logger;
|
|
44
44
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
45
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
46
|
+
retryStrategy?:
|
|
47
|
+
| import("@smithy/types").RetryStrategy
|
|
48
|
+
| import("@smithy/types").RetryStrategyV2
|
|
49
|
+
| undefined;
|
|
45
50
|
endpoint?:
|
|
46
51
|
| ((
|
|
47
52
|
| string
|
|
@@ -66,11 +71,6 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
66
71
|
}
|
|
67
72
|
) => import("@smithy/types").EndpointV2;
|
|
68
73
|
tls?: boolean | undefined;
|
|
69
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
70
|
-
retryStrategy?:
|
|
71
|
-
| import("@smithy/types").RetryStrategy
|
|
72
|
-
| import("@smithy/types").RetryStrategyV2
|
|
73
|
-
| undefined;
|
|
74
74
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
|
|
75
75
|
token?:
|
|
76
76
|
| import("@smithy/types").TokenIdentity
|
|
@@ -33,6 +33,11 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
33
33
|
| import("@smithy/types").Provider<
|
|
34
34
|
import("@smithy/smithy-client").DefaultsMode
|
|
35
35
|
>;
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
+
retryStrategy?:
|
|
38
|
+
| import("@smithy/types").RetryStrategy
|
|
39
|
+
| import("@smithy/types").RetryStrategyV2
|
|
40
|
+
| undefined;
|
|
36
41
|
endpoint?:
|
|
37
42
|
| string
|
|
38
43
|
| import("@smithy/types").Endpoint
|
|
@@ -47,11 +52,6 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
47
52
|
}
|
|
48
53
|
) => import("@smithy/types").EndpointV2;
|
|
49
54
|
tls?: boolean | undefined;
|
|
50
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
51
|
-
retryStrategy?:
|
|
52
|
-
| import("@smithy/types").RetryStrategy
|
|
53
|
-
| import("@smithy/types").RetryStrategyV2
|
|
54
|
-
| undefined;
|
|
55
55
|
httpAuthSchemes: {
|
|
56
56
|
schemeId: string;
|
|
57
57
|
identityProvider: (
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codecatalyst",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codecatalyst 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-codecatalyst",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
23
|
+
"@aws-sdk/core": "3.622.0",
|
|
24
24
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
25
25
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
26
26
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
@@ -32,26 +32,26 @@
|
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
34
34
|
"@smithy/config-resolver": "^3.0.5",
|
|
35
|
-
"@smithy/core": "^2.3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
35
|
+
"@smithy/core": "^2.3.2",
|
|
36
|
+
"@smithy/fetch-http-handler": "^3.2.4",
|
|
37
37
|
"@smithy/hash-node": "^3.0.3",
|
|
38
38
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
39
39
|
"@smithy/middleware-content-length": "^3.0.5",
|
|
40
40
|
"@smithy/middleware-endpoint": "^3.1.0",
|
|
41
|
-
"@smithy/middleware-retry": "^3.0.
|
|
41
|
+
"@smithy/middleware-retry": "^3.0.14",
|
|
42
42
|
"@smithy/middleware-serde": "^3.0.3",
|
|
43
43
|
"@smithy/middleware-stack": "^3.0.3",
|
|
44
44
|
"@smithy/node-config-provider": "^3.1.4",
|
|
45
45
|
"@smithy/node-http-handler": "^3.1.4",
|
|
46
46
|
"@smithy/protocol-http": "^4.1.0",
|
|
47
|
-
"@smithy/smithy-client": "^3.1.
|
|
47
|
+
"@smithy/smithy-client": "^3.1.12",
|
|
48
48
|
"@smithy/types": "^3.3.0",
|
|
49
49
|
"@smithy/url-parser": "^3.0.3",
|
|
50
50
|
"@smithy/util-base64": "^3.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^3.0.14",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^3.0.14",
|
|
55
55
|
"@smithy/util-endpoints": "^2.0.5",
|
|
56
56
|
"@smithy/util-middleware": "^3.0.3",
|
|
57
57
|
"@smithy/util-retry": "^3.0.3",
|