@aws-sdk/client-codeartifact 3.658.1 → 3.664.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 -1
- package/dist-cjs/runtimeConfig.js +1 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-types/commands/GetRepositoryEndpointCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +37 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -1
- package/dist-types/runtimeConfig.d.ts +2 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -1
- package/dist-types/ts3.4/models/models_0.d.ts +6 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +6 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -3
- package/package.json +36 -36
package/dist-cjs/index.js
CHANGED
|
@@ -48,6 +48,7 @@ __export(src_exports, {
|
|
|
48
48
|
DisassociateExternalConnectionCommand: () => DisassociateExternalConnectionCommand,
|
|
49
49
|
DisposePackageVersionsCommand: () => DisposePackageVersionsCommand,
|
|
50
50
|
DomainStatus: () => DomainStatus,
|
|
51
|
+
EndpointType: () => EndpointType,
|
|
51
52
|
ExternalConnectionStatus: () => ExternalConnectionStatus,
|
|
52
53
|
GetAssociatedPackageGroupCommand: () => GetAssociatedPackageGroupCommand,
|
|
53
54
|
GetAuthorizationTokenCommand: () => GetAuthorizationTokenCommand,
|
|
@@ -485,6 +486,10 @@ var PackageVersionOriginType = {
|
|
|
485
486
|
INTERNAL: "INTERNAL",
|
|
486
487
|
UNKNOWN: "UNKNOWN"
|
|
487
488
|
};
|
|
489
|
+
var EndpointType = {
|
|
490
|
+
DUALSTACK: "dualstack",
|
|
491
|
+
IPV4: "ipv4"
|
|
492
|
+
};
|
|
488
493
|
var PackageVersionSortType = {
|
|
489
494
|
PUBLISHED_TIME: "PUBLISHED_TIME"
|
|
490
495
|
};
|
|
@@ -906,7 +911,8 @@ var se_GetRepositoryEndpointCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
906
911
|
[_d]: [, (0, import_smithy_client.expectNonNull)(input[_d], `domain`)],
|
|
907
912
|
[_do]: [, input[_dO]],
|
|
908
913
|
[_r]: [, (0, import_smithy_client.expectNonNull)(input[_r], `repository`)],
|
|
909
|
-
[_f]: [, (0, import_smithy_client.expectNonNull)(input[_f], `format`)]
|
|
914
|
+
[_f]: [, (0, import_smithy_client.expectNonNull)(input[_f], `format`)],
|
|
915
|
+
[_eT]: [, input[_eT]]
|
|
910
916
|
});
|
|
911
917
|
let body;
|
|
912
918
|
b.m("GET").h(headers).q(query).b(body);
|
|
@@ -2307,6 +2313,7 @@ var _do = "domain-owner";
|
|
|
2307
2313
|
var _dr = "destination-repository";
|
|
2308
2314
|
var _du = "duration";
|
|
2309
2315
|
var _eC = "externalConnection";
|
|
2316
|
+
var _eT = "endpointType";
|
|
2310
2317
|
var _ec = "external-connection";
|
|
2311
2318
|
var _f = "format";
|
|
2312
2319
|
var _mR = "maxResults";
|
|
@@ -3199,6 +3206,7 @@ var paginateListSubPackageGroups = (0, import_core.createPaginator)(Codeartifact
|
|
|
3199
3206
|
PackageGroupOriginRestrictionType,
|
|
3200
3207
|
PackageGroupOriginRestrictionMode,
|
|
3201
3208
|
PackageVersionOriginType,
|
|
3209
|
+
EndpointType,
|
|
3202
3210
|
PackageVersionSortType,
|
|
3203
3211
|
PackageGroupAllowedRepositoryUpdateType,
|
|
3204
3212
|
GetAuthorizationTokenResultFilterSensitiveLog,
|
|
@@ -44,6 +44,7 @@ const getRuntimeConfig = (config) => {
|
|
|
44
44
|
streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
|
|
45
45
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
46
46
|
useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
47
|
+
userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS),
|
|
47
48
|
};
|
|
48
49
|
};
|
|
49
50
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -172,6 +172,10 @@ export const PackageVersionOriginType = {
|
|
|
172
172
|
INTERNAL: "INTERNAL",
|
|
173
173
|
UNKNOWN: "UNKNOWN",
|
|
174
174
|
};
|
|
175
|
+
export const EndpointType = {
|
|
176
|
+
DUALSTACK: "dualstack",
|
|
177
|
+
IPV4: "ipv4",
|
|
178
|
+
};
|
|
175
179
|
export const PackageVersionSortType = {
|
|
176
180
|
PUBLISHED_TIME: "PUBLISHED_TIME",
|
|
177
181
|
};
|
|
@@ -395,6 +395,7 @@ export const se_GetRepositoryEndpointCommand = async (input, context) => {
|
|
|
395
395
|
[_do]: [, input[_dO]],
|
|
396
396
|
[_r]: [, __expectNonNull(input[_r], `repository`)],
|
|
397
397
|
[_f]: [, __expectNonNull(input[_f], `format`)],
|
|
398
|
+
[_eT]: [, input[_eT]],
|
|
398
399
|
});
|
|
399
400
|
let body;
|
|
400
401
|
b.m("GET").h(headers).q(query).b(body);
|
|
@@ -1782,6 +1783,7 @@ const _do = "domain-owner";
|
|
|
1782
1783
|
const _dr = "destination-repository";
|
|
1783
1784
|
const _du = "duration";
|
|
1784
1785
|
const _eC = "externalConnection";
|
|
1786
|
+
const _eT = "endpointType";
|
|
1785
1787
|
const _ec = "external-connection";
|
|
1786
1788
|
const _f = "format";
|
|
1787
1789
|
const _mR = "maxResults";
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
2
|
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core";
|
|
3
3
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
|
-
import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
|
|
4
|
+
import { NODE_APP_ID_CONFIG_OPTIONS, defaultUserAgent } from "@aws-sdk/util-user-agent-node";
|
|
5
5
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
6
6
|
import { Hash } from "@smithy/hash-node";
|
|
7
7
|
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
|
|
@@ -40,5 +40,6 @@ export const getRuntimeConfig = (config) => {
|
|
|
40
40
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
41
41
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
42
42
|
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
43
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS),
|
|
43
44
|
};
|
|
44
45
|
};
|
|
@@ -84,6 +84,7 @@ declare const GetRepositoryEndpointCommand_base: {
|
|
|
84
84
|
* domainOwner: "STRING_VALUE",
|
|
85
85
|
* repository: "STRING_VALUE", // required
|
|
86
86
|
* format: "npm" || "pypi" || "maven" || "nuget" || "generic" || "ruby" || "swift" || "cargo", // required
|
|
87
|
+
* endpointType: "dualstack" || "ipv4",
|
|
87
88
|
* };
|
|
88
89
|
* const command = new GetRepositoryEndpointCommand(input);
|
|
89
90
|
* const response = await client.send(command);
|
|
@@ -296,6 +296,26 @@ export interface RepositoryExternalConnectionInfo {
|
|
|
296
296
|
* <code>nuget</code>: A NuGet package.
|
|
297
297
|
* </p>
|
|
298
298
|
* </li>
|
|
299
|
+
* <li>
|
|
300
|
+
* <p>
|
|
301
|
+
* <code>generic</code>: A generic package.
|
|
302
|
+
* </p>
|
|
303
|
+
* </li>
|
|
304
|
+
* <li>
|
|
305
|
+
* <p>
|
|
306
|
+
* <code>ruby</code>: A Ruby package.
|
|
307
|
+
* </p>
|
|
308
|
+
* </li>
|
|
309
|
+
* <li>
|
|
310
|
+
* <p>
|
|
311
|
+
* <code>swift</code>: A Swift package.
|
|
312
|
+
* </p>
|
|
313
|
+
* </li>
|
|
314
|
+
* <li>
|
|
315
|
+
* <p>
|
|
316
|
+
* <code>cargo</code>: A Cargo package.
|
|
317
|
+
* </p>
|
|
318
|
+
* </li>
|
|
299
319
|
* </ul>
|
|
300
320
|
* @public
|
|
301
321
|
*/
|
|
@@ -3014,6 +3034,18 @@ export interface GetPackageVersionReadmeResult {
|
|
|
3014
3034
|
*/
|
|
3015
3035
|
readme?: string;
|
|
3016
3036
|
}
|
|
3037
|
+
/**
|
|
3038
|
+
* @public
|
|
3039
|
+
* @enum
|
|
3040
|
+
*/
|
|
3041
|
+
export declare const EndpointType: {
|
|
3042
|
+
readonly DUALSTACK: "dualstack";
|
|
3043
|
+
readonly IPV4: "ipv4";
|
|
3044
|
+
};
|
|
3045
|
+
/**
|
|
3046
|
+
* @public
|
|
3047
|
+
*/
|
|
3048
|
+
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
3017
3049
|
/**
|
|
3018
3050
|
* @public
|
|
3019
3051
|
*/
|
|
@@ -3048,6 +3080,11 @@ export interface GetRepositoryEndpointRequest {
|
|
|
3048
3080
|
* @public
|
|
3049
3081
|
*/
|
|
3050
3082
|
format: PackageFormat | undefined;
|
|
3083
|
+
/**
|
|
3084
|
+
* <p>A string that specifies the type of endpoint.</p>
|
|
3085
|
+
* @public
|
|
3086
|
+
*/
|
|
3087
|
+
endpointType?: EndpointType;
|
|
3051
3088
|
}
|
|
3052
3089
|
/**
|
|
3053
3090
|
* @public
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
11
|
-
defaultUserAgentProvider: import("@
|
|
11
|
+
defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
14
|
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
@@ -30,6 +30,7 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
30
30
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
31
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
32
32
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
33
|
+
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
34
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
35
|
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;
|
|
35
36
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
|
|
11
|
-
defaultUserAgentProvider: import("@
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
@@ -17,6 +17,7 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
20
21
|
apiVersion: string;
|
|
21
22
|
cacheMiddleware?: boolean | undefined;
|
|
22
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
-
defaultUserAgentProvider: import("@
|
|
23
|
+
defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
24
24
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
25
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
26
26
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
29
29
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
30
30
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
|
+
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
32
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
33
34
|
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;
|
|
34
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
@@ -544,11 +544,17 @@ export interface GetPackageVersionReadmeResult {
|
|
|
544
544
|
versionRevision?: string;
|
|
545
545
|
readme?: string;
|
|
546
546
|
}
|
|
547
|
+
export declare const EndpointType: {
|
|
548
|
+
readonly DUALSTACK: "dualstack";
|
|
549
|
+
readonly IPV4: "ipv4";
|
|
550
|
+
};
|
|
551
|
+
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
547
552
|
export interface GetRepositoryEndpointRequest {
|
|
548
553
|
domain: string | undefined;
|
|
549
554
|
domainOwner?: string;
|
|
550
555
|
repository: string | undefined;
|
|
551
556
|
format: PackageFormat | undefined;
|
|
557
|
+
endpointType?: EndpointType;
|
|
552
558
|
}
|
|
553
559
|
export interface GetRepositoryEndpointResult {
|
|
554
560
|
repositoryEndpoint?: string;
|
|
@@ -9,9 +9,9 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
9
9
|
credentialDefaultProvider: (
|
|
10
10
|
input: any
|
|
11
11
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
12
|
-
defaultUserAgentProvider:
|
|
13
|
-
import("@
|
|
14
|
-
>;
|
|
12
|
+
defaultUserAgentProvider: (
|
|
13
|
+
config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
14
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
17
17
|
requestHandler:
|
|
@@ -35,6 +35,10 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
35
35
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
36
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
37
37
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
38
|
+
userAgentAppId?:
|
|
39
|
+
| string
|
|
40
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
41
|
+
| undefined;
|
|
38
42
|
retryStrategy?:
|
|
39
43
|
| import("@smithy/types").RetryStrategy
|
|
40
44
|
| import("@smithy/types").RetryStrategyV2
|
|
@@ -13,9 +13,11 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
13
13
|
) => import("@smithy/types").MemoizedProvider<
|
|
14
14
|
import("@smithy/types").AwsCredentialIdentity
|
|
15
15
|
>;
|
|
16
|
-
defaultUserAgentProvider:
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
defaultUserAgentProvider: (
|
|
17
|
+
config?:
|
|
18
|
+
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
19
|
+
| undefined
|
|
20
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
21
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
22
|
region: string | import("@smithy/types").Provider<string>;
|
|
21
23
|
requestHandler:
|
|
@@ -26,6 +28,7 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
26
28
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
27
29
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
30
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
31
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
29
32
|
apiVersion: string;
|
|
30
33
|
cacheMiddleware?: boolean | undefined;
|
|
31
34
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -22,9 +22,9 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
22
22
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
-
defaultUserAgentProvider:
|
|
26
|
-
import("@
|
|
27
|
-
>;
|
|
25
|
+
defaultUserAgentProvider: (
|
|
26
|
+
config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
27
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
28
28
|
credentialDefaultProvider: (
|
|
29
29
|
input: any
|
|
30
30
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (config: CodeartifactClientConfig) => {
|
|
|
39
39
|
>;
|
|
40
40
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
41
41
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
42
|
+
userAgentAppId?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
45
|
+
| undefined;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
44
48
|
| import("@smithy/types").RetryStrategyV2
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codeartifact",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codeartifact Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.664.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-codeartifact",
|
|
@@ -20,44 +20,44 @@
|
|
|
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.2.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.3.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.664.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.664.0",
|
|
25
|
+
"@aws-sdk/core": "3.664.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.664.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.664.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.664.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.664.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.664.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.664.0",
|
|
32
|
+
"@aws-sdk/types": "3.664.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.664.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.664.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.664.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.9",
|
|
37
|
+
"@smithy/core": "^2.4.7",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.9",
|
|
39
|
+
"@smithy/hash-node": "^3.0.7",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.7",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.9",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.4",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.22",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.7",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.7",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.8",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.4",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.4",
|
|
49
|
+
"@smithy/smithy-client": "^3.3.6",
|
|
50
|
+
"@smithy/types": "^3.5.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.7",
|
|
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.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
60
|
-
"@smithy/util-stream": "^3.1.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.22",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.22",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.3",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.7",
|
|
59
|
+
"@smithy/util-retry": "^3.0.7",
|
|
60
|
+
"@smithy/util-stream": "^3.1.9",
|
|
61
61
|
"@smithy/util-utf8": "^3.0.0",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|