@aws-sdk/client-codeartifact 3.948.0 → 3.953.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 +618 -401
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AssociateExternalConnectionCommand.js +2 -2
- package/dist-es/commands/CopyPackageVersionsCommand.js +2 -2
- package/dist-es/commands/CreateDomainCommand.js +2 -2
- package/dist-es/commands/CreatePackageGroupCommand.js +2 -2
- package/dist-es/commands/CreateRepositoryCommand.js +2 -2
- package/dist-es/commands/DeleteDomainCommand.js +2 -2
- package/dist-es/commands/DeleteDomainPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/DeletePackageCommand.js +2 -2
- package/dist-es/commands/DeletePackageGroupCommand.js +2 -2
- package/dist-es/commands/DeletePackageVersionsCommand.js +2 -2
- package/dist-es/commands/DeleteRepositoryCommand.js +2 -2
- package/dist-es/commands/DeleteRepositoryPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/DescribeDomainCommand.js +2 -2
- package/dist-es/commands/DescribePackageCommand.js +2 -2
- package/dist-es/commands/DescribePackageGroupCommand.js +2 -2
- package/dist-es/commands/DescribePackageVersionCommand.js +2 -2
- package/dist-es/commands/DescribeRepositoryCommand.js +2 -2
- package/dist-es/commands/DisassociateExternalConnectionCommand.js +2 -2
- package/dist-es/commands/DisposePackageVersionsCommand.js +2 -2
- package/dist-es/commands/GetAssociatedPackageGroupCommand.js +2 -2
- package/dist-es/commands/GetAuthorizationTokenCommand.js +2 -2
- package/dist-es/commands/GetDomainPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/GetPackageVersionAssetCommand.js +2 -2
- package/dist-es/commands/GetPackageVersionReadmeCommand.js +2 -2
- package/dist-es/commands/GetRepositoryEndpointCommand.js +2 -2
- package/dist-es/commands/GetRepositoryPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/ListAllowedRepositoriesForGroupCommand.js +2 -2
- package/dist-es/commands/ListAssociatedPackagesCommand.js +2 -2
- package/dist-es/commands/ListDomainsCommand.js +2 -2
- package/dist-es/commands/ListPackageGroupsCommand.js +2 -2
- package/dist-es/commands/ListPackageVersionAssetsCommand.js +2 -2
- package/dist-es/commands/ListPackageVersionDependenciesCommand.js +2 -2
- package/dist-es/commands/ListPackageVersionsCommand.js +2 -2
- package/dist-es/commands/ListPackagesCommand.js +2 -2
- package/dist-es/commands/ListRepositoriesCommand.js +2 -2
- package/dist-es/commands/ListRepositoriesInDomainCommand.js +2 -2
- package/dist-es/commands/ListSubPackageGroupsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PublishPackageVersionCommand.js +2 -2
- package/dist-es/commands/PutDomainPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/PutPackageOriginConfigurationCommand.js +2 -2
- package/dist-es/commands/PutRepositoryPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdatePackageGroupCommand.js +2 -2
- package/dist-es/commands/UpdatePackageGroupOriginConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdatePackageVersionsStatusCommand.js +2 -2
- package/dist-es/commands/UpdateRepositoryCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +378 -349
- package/dist-types/CodeartifactClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +182 -208
- package/dist-types/ts3.4/CodeartifactClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +181 -210
- package/package.json +35 -35
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRepositoriesInDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRepositoriesInDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRepositoriesInDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRepositoriesInDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListRepositoriesInDomain", {})
|
|
13
13
|
.n("CodeartifactClient", "ListRepositoriesInDomainCommand")
|
|
14
|
-
.sc(ListRepositoriesInDomain)
|
|
14
|
+
.sc(ListRepositoriesInDomain$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSubPackageGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSubPackageGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSubPackageGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSubPackageGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListSubPackageGroups", {})
|
|
13
13
|
.n("CodeartifactClient", "ListSubPackageGroupsCommand")
|
|
14
|
-
.sc(ListSubPackageGroups)
|
|
14
|
+
.sc(ListSubPackageGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListTagsForResource", {})
|
|
13
13
|
.n("CodeartifactClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PublishPackageVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { PublishPackageVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PublishPackageVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PublishPackageVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "PublishPackageVersion", {})
|
|
13
13
|
.n("CodeartifactClient", "PublishPackageVersionCommand")
|
|
14
|
-
.sc(PublishPackageVersion)
|
|
14
|
+
.sc(PublishPackageVersion$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutDomainPermissionsPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutDomainPermissionsPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutDomainPermissionsPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutDomainPermissionsPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "PutDomainPermissionsPolicy", {})
|
|
13
13
|
.n("CodeartifactClient", "PutDomainPermissionsPolicyCommand")
|
|
14
|
-
.sc(PutDomainPermissionsPolicy)
|
|
14
|
+
.sc(PutDomainPermissionsPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutPackageOriginConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { PutPackageOriginConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutPackageOriginConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutPackageOriginConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "PutPackageOriginConfiguration", {})
|
|
13
13
|
.n("CodeartifactClient", "PutPackageOriginConfigurationCommand")
|
|
14
|
-
.sc(PutPackageOriginConfiguration)
|
|
14
|
+
.sc(PutPackageOriginConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutRepositoryPermissionsPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutRepositoryPermissionsPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutRepositoryPermissionsPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutRepositoryPermissionsPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "PutRepositoryPermissionsPolicy", {})
|
|
13
13
|
.n("CodeartifactClient", "PutRepositoryPermissionsPolicyCommand")
|
|
14
|
-
.sc(PutRepositoryPermissionsPolicy)
|
|
14
|
+
.sc(PutRepositoryPermissionsPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "TagResource", {})
|
|
13
13
|
.n("CodeartifactClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "UntagResource", {})
|
|
13
13
|
.n("CodeartifactClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdatePackageGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdatePackageGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdatePackageGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdatePackageGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "UpdatePackageGroup", {})
|
|
13
13
|
.n("CodeartifactClient", "UpdatePackageGroupCommand")
|
|
14
|
-
.sc(UpdatePackageGroup)
|
|
14
|
+
.sc(UpdatePackageGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdatePackageGroupOriginConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdatePackageGroupOriginConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdatePackageGroupOriginConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdatePackageGroupOriginConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "UpdatePackageGroupOriginConfiguration", {})
|
|
13
13
|
.n("CodeartifactClient", "UpdatePackageGroupOriginConfigurationCommand")
|
|
14
|
-
.sc(UpdatePackageGroupOriginConfiguration)
|
|
14
|
+
.sc(UpdatePackageGroupOriginConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdatePackageVersionsStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdatePackageVersionsStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdatePackageVersionsStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdatePackageVersionsStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "UpdatePackageVersionsStatus", {})
|
|
13
13
|
.n("CodeartifactClient", "UpdatePackageVersionsStatusCommand")
|
|
14
|
-
.sc(UpdatePackageVersionsStatus)
|
|
14
|
+
.sc(UpdatePackageVersionsStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateRepository } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateRepository$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateRepositoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateRepositoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "UpdateRepository", {})
|
|
13
13
|
.n("CodeartifactClient", "UpdateRepositoryCommand")
|
|
14
|
-
.sc(UpdateRepository)
|
|
14
|
+
.sc(UpdateRepository$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -24,7 +24,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
24
24
|
},
|
|
25
25
|
],
|
|
26
26
|
logger: config?.logger ?? new NoOpLogger(),
|
|
27
|
-
protocol: config?.protocol ??
|
|
27
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
28
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
29
|
+
defaultNamespace: "com.amazonaws.codeartifact",
|
|
30
|
+
version: "2018-09-22",
|
|
31
|
+
serviceTarget: "CodeArtifactControlPlaneService",
|
|
32
|
+
},
|
|
28
33
|
sdkStreamMixin: config?.sdkStreamMixin ?? sdkStreamMixin,
|
|
29
34
|
serviceId: config?.serviceId ?? "codeartifact",
|
|
30
35
|
urlParser: config?.urlParser ?? parseUrl,
|