@aws-sdk/client-codecommit 3.1018.0 → 3.1020.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.
Files changed (37) hide show
  1. package/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  2. package/dist-cjs/runtimeConfig.js +4 -3
  3. package/dist-cjs/runtimeConfig.shared.js +2 -2
  4. package/dist-es/CodeCommit.js +3 -3
  5. package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  6. package/dist-es/runtimeConfig.js +2 -1
  7. package/dist-es/runtimeConfig.shared.js +1 -1
  8. package/dist-types/CodeCommit.d.ts +79 -79
  9. package/dist-types/CodeCommitClient.d.ts +82 -82
  10. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  11. package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  12. package/dist-types/index.d.ts +1 -1
  13. package/dist-types/models/models_0.d.ts +1 -1
  14. package/dist-types/pagination/DescribeMergeConflictsPaginator.d.ts +1 -1
  15. package/dist-types/pagination/DescribePullRequestEventsPaginator.d.ts +1 -1
  16. package/dist-types/pagination/GetCommentReactionsPaginator.d.ts +1 -1
  17. package/dist-types/pagination/GetCommentsForComparedCommitPaginator.d.ts +1 -1
  18. package/dist-types/pagination/GetCommentsForPullRequestPaginator.d.ts +1 -1
  19. package/dist-types/pagination/GetDifferencesPaginator.d.ts +1 -1
  20. package/dist-types/pagination/GetMergeConflictsPaginator.d.ts +1 -1
  21. package/dist-types/pagination/ListApprovalRuleTemplatesPaginator.d.ts +1 -1
  22. package/dist-types/pagination/ListAssociatedApprovalRuleTemplatesForRepositoryPaginator.d.ts +1 -1
  23. package/dist-types/pagination/ListBranchesPaginator.d.ts +1 -1
  24. package/dist-types/pagination/ListFileCommitHistoryPaginator.d.ts +1 -1
  25. package/dist-types/pagination/ListPullRequestsPaginator.d.ts +1 -1
  26. package/dist-types/pagination/ListRepositoriesForApprovalRuleTemplatePaginator.d.ts +1 -1
  27. package/dist-types/pagination/ListRepositoriesPaginator.d.ts +1 -1
  28. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  29. package/dist-types/runtimeConfig.d.ts +1 -1
  30. package/dist-types/runtimeConfig.native.d.ts +1 -1
  31. package/dist-types/ts3.4/CodeCommitClient.d.ts +2 -3
  32. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  33. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  37. package/package.json +13 -13
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.resolveHttpAuthSchemeConfig = exports.defaultCodeCommitHttpAuthSchemeProvider = exports.defaultCodeCommitHttpAuthSchemeParametersProvider = void 0;
4
- const core_1 = require("@aws-sdk/core");
4
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
5
5
  const util_middleware_1 = require("@smithy/util-middleware");
6
6
  const defaultCodeCommitHttpAuthSchemeParametersProvider = async (config, context, input) => {
7
7
  return {
@@ -38,7 +38,7 @@ const defaultCodeCommitHttpAuthSchemeProvider = (authParameters) => {
38
38
  };
39
39
  exports.defaultCodeCommitHttpAuthSchemeProvider = defaultCodeCommitHttpAuthSchemeProvider;
40
40
  const resolveHttpAuthSchemeConfig = (config) => {
41
- const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
41
+ const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
42
42
  return Object.assign(config_0, {
43
43
  authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
44
44
  });
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const package_json_1 = tslib_1.__importDefault(require("../package.json"));
6
- const core_1 = require("@aws-sdk/core");
6
+ const client_1 = require("@aws-sdk/core/client");
7
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
7
8
  const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
8
9
  const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
9
10
  const config_resolver_1 = require("@smithy/config-resolver");
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
21
22
  const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
22
23
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
23
24
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
24
- (0, core_1.emitWarningIfUnsupportedVersion)(process.version);
25
+ (0, client_1.emitWarningIfUnsupportedVersion)(process.version);
25
26
  const loaderConfig = {
26
27
  profile: config?.profile,
27
28
  logger: clientSharedValues.logger,
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
31
32
  ...config,
32
33
  runtime: "node",
33
34
  defaultsMode,
34
- authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
35
+ authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
35
36
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
36
37
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
37
38
  defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
- const core_1 = require("@aws-sdk/core");
4
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
5
5
  const protocols_1 = require("@aws-sdk/core/protocols");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  const url_parser_1 = require("@smithy/url-parser");
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
23
23
  {
24
24
  schemeId: "aws.auth#sigv4",
25
25
  identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
26
- signer: new core_1.AwsSdkSigV4Signer(),
26
+ signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
27
27
  },
28
28
  ],
29
29
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
@@ -16,7 +16,7 @@ import { CreateUnreferencedMergeCommitCommand, } from "./commands/CreateUnrefere
16
16
  import { DeleteApprovalRuleTemplateCommand, } from "./commands/DeleteApprovalRuleTemplateCommand";
17
17
  import { DeleteBranchCommand, } from "./commands/DeleteBranchCommand";
18
18
  import { DeleteCommentContentCommand, } from "./commands/DeleteCommentContentCommand";
19
- import { DeleteFileCommand } from "./commands/DeleteFileCommand";
19
+ import { DeleteFileCommand, } from "./commands/DeleteFileCommand";
20
20
  import { DeletePullRequestApprovalRuleCommand, } from "./commands/DeletePullRequestApprovalRuleCommand";
21
21
  import { DeleteRepositoryCommand, } from "./commands/DeleteRepositoryCommand";
22
22
  import { DescribeMergeConflictsCommand, } from "./commands/DescribeMergeConflictsCommand";
@@ -26,7 +26,7 @@ import { EvaluatePullRequestApprovalRulesCommand, } from "./commands/EvaluatePul
26
26
  import { GetApprovalRuleTemplateCommand, } from "./commands/GetApprovalRuleTemplateCommand";
27
27
  import { GetBlobCommand } from "./commands/GetBlobCommand";
28
28
  import { GetBranchCommand } from "./commands/GetBranchCommand";
29
- import { GetCommentCommand } from "./commands/GetCommentCommand";
29
+ import { GetCommentCommand, } from "./commands/GetCommentCommand";
30
30
  import { GetCommentReactionsCommand, } from "./commands/GetCommentReactionsCommand";
31
31
  import { GetCommentsForComparedCommitCommand, } from "./commands/GetCommentsForComparedCommitCommand";
32
32
  import { GetCommentsForPullRequestCommand, } from "./commands/GetCommentsForPullRequestCommand";
@@ -63,7 +63,7 @@ import { PostCommentReplyCommand, } from "./commands/PostCommentReplyCommand";
63
63
  import { PutCommentReactionCommand, } from "./commands/PutCommentReactionCommand";
64
64
  import { PutFileCommand } from "./commands/PutFileCommand";
65
65
  import { PutRepositoryTriggersCommand, } from "./commands/PutRepositoryTriggersCommand";
66
- import { TagResourceCommand } from "./commands/TagResourceCommand";
66
+ import { TagResourceCommand, } from "./commands/TagResourceCommand";
67
67
  import { TestRepositoryTriggersCommand, } from "./commands/TestRepositoryTriggersCommand";
68
68
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
69
69
  import { UpdateApprovalRuleTemplateContentCommand, } from "./commands/UpdateApprovalRuleTemplateContentCommand";
@@ -1,4 +1,4 @@
1
- import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
1
+ import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
3
3
  export const defaultCodeCommitHttpAuthSchemeParametersProvider = async (config, context, input) => {
4
4
  return {
@@ -1,5 +1,6 @@
1
1
  import packageInfo from "../package.json";
2
- import { emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core";
2
+ import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
3
+ import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
3
4
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
4
5
  import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
5
6
  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";
@@ -1,4 +1,4 @@
1
- import { AwsSdkSigV4Signer } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols";
3
3
  import { NoOpLogger } from "@smithy/smithy-client";
4
4
  import { parseUrl } from "@smithy/url-parser";
@@ -1,84 +1,84 @@
1
1
  import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
2
2
  import { CodeCommitClient } from "./CodeCommitClient";
3
- import { AssociateApprovalRuleTemplateWithRepositoryCommandInput, AssociateApprovalRuleTemplateWithRepositoryCommandOutput } from "./commands/AssociateApprovalRuleTemplateWithRepositoryCommand";
4
- import { BatchAssociateApprovalRuleTemplateWithRepositoriesCommandInput, BatchAssociateApprovalRuleTemplateWithRepositoriesCommandOutput } from "./commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand";
5
- import { BatchDescribeMergeConflictsCommandInput, BatchDescribeMergeConflictsCommandOutput } from "./commands/BatchDescribeMergeConflictsCommand";
6
- import { BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandInput, BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandOutput } from "./commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand";
7
- import { BatchGetCommitsCommandInput, BatchGetCommitsCommandOutput } from "./commands/BatchGetCommitsCommand";
8
- import { BatchGetRepositoriesCommandInput, BatchGetRepositoriesCommandOutput } from "./commands/BatchGetRepositoriesCommand";
9
- import { CreateApprovalRuleTemplateCommandInput, CreateApprovalRuleTemplateCommandOutput } from "./commands/CreateApprovalRuleTemplateCommand";
10
- import { CreateBranchCommandInput, CreateBranchCommandOutput } from "./commands/CreateBranchCommand";
11
- import { CreateCommitCommandInput, CreateCommitCommandOutput } from "./commands/CreateCommitCommand";
12
- import { CreatePullRequestApprovalRuleCommandInput, CreatePullRequestApprovalRuleCommandOutput } from "./commands/CreatePullRequestApprovalRuleCommand";
13
- import { CreatePullRequestCommandInput, CreatePullRequestCommandOutput } from "./commands/CreatePullRequestCommand";
14
- import { CreateRepositoryCommandInput, CreateRepositoryCommandOutput } from "./commands/CreateRepositoryCommand";
15
- import { CreateUnreferencedMergeCommitCommandInput, CreateUnreferencedMergeCommitCommandOutput } from "./commands/CreateUnreferencedMergeCommitCommand";
16
- import { DeleteApprovalRuleTemplateCommandInput, DeleteApprovalRuleTemplateCommandOutput } from "./commands/DeleteApprovalRuleTemplateCommand";
17
- import { DeleteBranchCommandInput, DeleteBranchCommandOutput } from "./commands/DeleteBranchCommand";
18
- import { DeleteCommentContentCommandInput, DeleteCommentContentCommandOutput } from "./commands/DeleteCommentContentCommand";
19
- import { DeleteFileCommandInput, DeleteFileCommandOutput } from "./commands/DeleteFileCommand";
20
- import { DeletePullRequestApprovalRuleCommandInput, DeletePullRequestApprovalRuleCommandOutput } from "./commands/DeletePullRequestApprovalRuleCommand";
21
- import { DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput } from "./commands/DeleteRepositoryCommand";
22
- import { DescribeMergeConflictsCommandInput, DescribeMergeConflictsCommandOutput } from "./commands/DescribeMergeConflictsCommand";
23
- import { DescribePullRequestEventsCommandInput, DescribePullRequestEventsCommandOutput } from "./commands/DescribePullRequestEventsCommand";
24
- import { DisassociateApprovalRuleTemplateFromRepositoryCommandInput, DisassociateApprovalRuleTemplateFromRepositoryCommandOutput } from "./commands/DisassociateApprovalRuleTemplateFromRepositoryCommand";
25
- import { EvaluatePullRequestApprovalRulesCommandInput, EvaluatePullRequestApprovalRulesCommandOutput } from "./commands/EvaluatePullRequestApprovalRulesCommand";
26
- import { GetApprovalRuleTemplateCommandInput, GetApprovalRuleTemplateCommandOutput } from "./commands/GetApprovalRuleTemplateCommand";
27
- import { GetBlobCommandInput, GetBlobCommandOutput } from "./commands/GetBlobCommand";
28
- import { GetBranchCommandInput, GetBranchCommandOutput } from "./commands/GetBranchCommand";
29
- import { GetCommentCommandInput, GetCommentCommandOutput } from "./commands/GetCommentCommand";
30
- import { GetCommentReactionsCommandInput, GetCommentReactionsCommandOutput } from "./commands/GetCommentReactionsCommand";
31
- import { GetCommentsForComparedCommitCommandInput, GetCommentsForComparedCommitCommandOutput } from "./commands/GetCommentsForComparedCommitCommand";
32
- import { GetCommentsForPullRequestCommandInput, GetCommentsForPullRequestCommandOutput } from "./commands/GetCommentsForPullRequestCommand";
33
- import { GetCommitCommandInput, GetCommitCommandOutput } from "./commands/GetCommitCommand";
34
- import { GetDifferencesCommandInput, GetDifferencesCommandOutput } from "./commands/GetDifferencesCommand";
35
- import { GetFileCommandInput, GetFileCommandOutput } from "./commands/GetFileCommand";
36
- import { GetFolderCommandInput, GetFolderCommandOutput } from "./commands/GetFolderCommand";
37
- import { GetMergeCommitCommandInput, GetMergeCommitCommandOutput } from "./commands/GetMergeCommitCommand";
38
- import { GetMergeConflictsCommandInput, GetMergeConflictsCommandOutput } from "./commands/GetMergeConflictsCommand";
39
- import { GetMergeOptionsCommandInput, GetMergeOptionsCommandOutput } from "./commands/GetMergeOptionsCommand";
40
- import { GetPullRequestApprovalStatesCommandInput, GetPullRequestApprovalStatesCommandOutput } from "./commands/GetPullRequestApprovalStatesCommand";
41
- import { GetPullRequestCommandInput, GetPullRequestCommandOutput } from "./commands/GetPullRequestCommand";
42
- import { GetPullRequestOverrideStateCommandInput, GetPullRequestOverrideStateCommandOutput } from "./commands/GetPullRequestOverrideStateCommand";
43
- import { GetRepositoryCommandInput, GetRepositoryCommandOutput } from "./commands/GetRepositoryCommand";
44
- import { GetRepositoryTriggersCommandInput, GetRepositoryTriggersCommandOutput } from "./commands/GetRepositoryTriggersCommand";
45
- import { ListApprovalRuleTemplatesCommandInput, ListApprovalRuleTemplatesCommandOutput } from "./commands/ListApprovalRuleTemplatesCommand";
46
- import { ListAssociatedApprovalRuleTemplatesForRepositoryCommandInput, ListAssociatedApprovalRuleTemplatesForRepositoryCommandOutput } from "./commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand";
47
- import { ListBranchesCommandInput, ListBranchesCommandOutput } from "./commands/ListBranchesCommand";
48
- import { ListFileCommitHistoryCommandInput, ListFileCommitHistoryCommandOutput } from "./commands/ListFileCommitHistoryCommand";
49
- import { ListPullRequestsCommandInput, ListPullRequestsCommandOutput } from "./commands/ListPullRequestsCommand";
50
- import { ListRepositoriesCommandInput, ListRepositoriesCommandOutput } from "./commands/ListRepositoriesCommand";
51
- import { ListRepositoriesForApprovalRuleTemplateCommandInput, ListRepositoriesForApprovalRuleTemplateCommandOutput } from "./commands/ListRepositoriesForApprovalRuleTemplateCommand";
52
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
53
- import { MergeBranchesByFastForwardCommandInput, MergeBranchesByFastForwardCommandOutput } from "./commands/MergeBranchesByFastForwardCommand";
54
- import { MergeBranchesBySquashCommandInput, MergeBranchesBySquashCommandOutput } from "./commands/MergeBranchesBySquashCommand";
55
- import { MergeBranchesByThreeWayCommandInput, MergeBranchesByThreeWayCommandOutput } from "./commands/MergeBranchesByThreeWayCommand";
56
- import { MergePullRequestByFastForwardCommandInput, MergePullRequestByFastForwardCommandOutput } from "./commands/MergePullRequestByFastForwardCommand";
57
- import { MergePullRequestBySquashCommandInput, MergePullRequestBySquashCommandOutput } from "./commands/MergePullRequestBySquashCommand";
58
- import { MergePullRequestByThreeWayCommandInput, MergePullRequestByThreeWayCommandOutput } from "./commands/MergePullRequestByThreeWayCommand";
59
- import { OverridePullRequestApprovalRulesCommandInput, OverridePullRequestApprovalRulesCommandOutput } from "./commands/OverridePullRequestApprovalRulesCommand";
60
- import { PostCommentForComparedCommitCommandInput, PostCommentForComparedCommitCommandOutput } from "./commands/PostCommentForComparedCommitCommand";
61
- import { PostCommentForPullRequestCommandInput, PostCommentForPullRequestCommandOutput } from "./commands/PostCommentForPullRequestCommand";
62
- import { PostCommentReplyCommandInput, PostCommentReplyCommandOutput } from "./commands/PostCommentReplyCommand";
63
- import { PutCommentReactionCommandInput, PutCommentReactionCommandOutput } from "./commands/PutCommentReactionCommand";
64
- import { PutFileCommandInput, PutFileCommandOutput } from "./commands/PutFileCommand";
65
- import { PutRepositoryTriggersCommandInput, PutRepositoryTriggersCommandOutput } from "./commands/PutRepositoryTriggersCommand";
66
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
67
- import { TestRepositoryTriggersCommandInput, TestRepositoryTriggersCommandOutput } from "./commands/TestRepositoryTriggersCommand";
68
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
69
- import { UpdateApprovalRuleTemplateContentCommandInput, UpdateApprovalRuleTemplateContentCommandOutput } from "./commands/UpdateApprovalRuleTemplateContentCommand";
70
- import { UpdateApprovalRuleTemplateDescriptionCommandInput, UpdateApprovalRuleTemplateDescriptionCommandOutput } from "./commands/UpdateApprovalRuleTemplateDescriptionCommand";
71
- import { UpdateApprovalRuleTemplateNameCommandInput, UpdateApprovalRuleTemplateNameCommandOutput } from "./commands/UpdateApprovalRuleTemplateNameCommand";
72
- import { UpdateCommentCommandInput, UpdateCommentCommandOutput } from "./commands/UpdateCommentCommand";
73
- import { UpdateDefaultBranchCommandInput, UpdateDefaultBranchCommandOutput } from "./commands/UpdateDefaultBranchCommand";
74
- import { UpdatePullRequestApprovalRuleContentCommandInput, UpdatePullRequestApprovalRuleContentCommandOutput } from "./commands/UpdatePullRequestApprovalRuleContentCommand";
75
- import { UpdatePullRequestApprovalStateCommandInput, UpdatePullRequestApprovalStateCommandOutput } from "./commands/UpdatePullRequestApprovalStateCommand";
76
- import { UpdatePullRequestDescriptionCommandInput, UpdatePullRequestDescriptionCommandOutput } from "./commands/UpdatePullRequestDescriptionCommand";
77
- import { UpdatePullRequestStatusCommandInput, UpdatePullRequestStatusCommandOutput } from "./commands/UpdatePullRequestStatusCommand";
78
- import { UpdatePullRequestTitleCommandInput, UpdatePullRequestTitleCommandOutput } from "./commands/UpdatePullRequestTitleCommand";
79
- import { UpdateRepositoryDescriptionCommandInput, UpdateRepositoryDescriptionCommandOutput } from "./commands/UpdateRepositoryDescriptionCommand";
80
- import { UpdateRepositoryEncryptionKeyCommandInput, UpdateRepositoryEncryptionKeyCommandOutput } from "./commands/UpdateRepositoryEncryptionKeyCommand";
81
- import { UpdateRepositoryNameCommandInput, UpdateRepositoryNameCommandOutput } from "./commands/UpdateRepositoryNameCommand";
3
+ import { type AssociateApprovalRuleTemplateWithRepositoryCommandInput, type AssociateApprovalRuleTemplateWithRepositoryCommandOutput } from "./commands/AssociateApprovalRuleTemplateWithRepositoryCommand";
4
+ import { type BatchAssociateApprovalRuleTemplateWithRepositoriesCommandInput, type BatchAssociateApprovalRuleTemplateWithRepositoriesCommandOutput } from "./commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand";
5
+ import { type BatchDescribeMergeConflictsCommandInput, type BatchDescribeMergeConflictsCommandOutput } from "./commands/BatchDescribeMergeConflictsCommand";
6
+ import { type BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandInput, type BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandOutput } from "./commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand";
7
+ import { type BatchGetCommitsCommandInput, type BatchGetCommitsCommandOutput } from "./commands/BatchGetCommitsCommand";
8
+ import { type BatchGetRepositoriesCommandInput, type BatchGetRepositoriesCommandOutput } from "./commands/BatchGetRepositoriesCommand";
9
+ import { type CreateApprovalRuleTemplateCommandInput, type CreateApprovalRuleTemplateCommandOutput } from "./commands/CreateApprovalRuleTemplateCommand";
10
+ import { type CreateBranchCommandInput, type CreateBranchCommandOutput } from "./commands/CreateBranchCommand";
11
+ import { type CreateCommitCommandInput, type CreateCommitCommandOutput } from "./commands/CreateCommitCommand";
12
+ import { type CreatePullRequestApprovalRuleCommandInput, type CreatePullRequestApprovalRuleCommandOutput } from "./commands/CreatePullRequestApprovalRuleCommand";
13
+ import { type CreatePullRequestCommandInput, type CreatePullRequestCommandOutput } from "./commands/CreatePullRequestCommand";
14
+ import { type CreateRepositoryCommandInput, type CreateRepositoryCommandOutput } from "./commands/CreateRepositoryCommand";
15
+ import { type CreateUnreferencedMergeCommitCommandInput, type CreateUnreferencedMergeCommitCommandOutput } from "./commands/CreateUnreferencedMergeCommitCommand";
16
+ import { type DeleteApprovalRuleTemplateCommandInput, type DeleteApprovalRuleTemplateCommandOutput } from "./commands/DeleteApprovalRuleTemplateCommand";
17
+ import { type DeleteBranchCommandInput, type DeleteBranchCommandOutput } from "./commands/DeleteBranchCommand";
18
+ import { type DeleteCommentContentCommandInput, type DeleteCommentContentCommandOutput } from "./commands/DeleteCommentContentCommand";
19
+ import { type DeleteFileCommandInput, type DeleteFileCommandOutput } from "./commands/DeleteFileCommand";
20
+ import { type DeletePullRequestApprovalRuleCommandInput, type DeletePullRequestApprovalRuleCommandOutput } from "./commands/DeletePullRequestApprovalRuleCommand";
21
+ import { type DeleteRepositoryCommandInput, type DeleteRepositoryCommandOutput } from "./commands/DeleteRepositoryCommand";
22
+ import { type DescribeMergeConflictsCommandInput, type DescribeMergeConflictsCommandOutput } from "./commands/DescribeMergeConflictsCommand";
23
+ import { type DescribePullRequestEventsCommandInput, type DescribePullRequestEventsCommandOutput } from "./commands/DescribePullRequestEventsCommand";
24
+ import { type DisassociateApprovalRuleTemplateFromRepositoryCommandInput, type DisassociateApprovalRuleTemplateFromRepositoryCommandOutput } from "./commands/DisassociateApprovalRuleTemplateFromRepositoryCommand";
25
+ import { type EvaluatePullRequestApprovalRulesCommandInput, type EvaluatePullRequestApprovalRulesCommandOutput } from "./commands/EvaluatePullRequestApprovalRulesCommand";
26
+ import { type GetApprovalRuleTemplateCommandInput, type GetApprovalRuleTemplateCommandOutput } from "./commands/GetApprovalRuleTemplateCommand";
27
+ import { type GetBlobCommandInput, type GetBlobCommandOutput } from "./commands/GetBlobCommand";
28
+ import { type GetBranchCommandInput, type GetBranchCommandOutput } from "./commands/GetBranchCommand";
29
+ import { type GetCommentCommandInput, type GetCommentCommandOutput } from "./commands/GetCommentCommand";
30
+ import { type GetCommentReactionsCommandInput, type GetCommentReactionsCommandOutput } from "./commands/GetCommentReactionsCommand";
31
+ import { type GetCommentsForComparedCommitCommandInput, type GetCommentsForComparedCommitCommandOutput } from "./commands/GetCommentsForComparedCommitCommand";
32
+ import { type GetCommentsForPullRequestCommandInput, type GetCommentsForPullRequestCommandOutput } from "./commands/GetCommentsForPullRequestCommand";
33
+ import { type GetCommitCommandInput, type GetCommitCommandOutput } from "./commands/GetCommitCommand";
34
+ import { type GetDifferencesCommandInput, type GetDifferencesCommandOutput } from "./commands/GetDifferencesCommand";
35
+ import { type GetFileCommandInput, type GetFileCommandOutput } from "./commands/GetFileCommand";
36
+ import { type GetFolderCommandInput, type GetFolderCommandOutput } from "./commands/GetFolderCommand";
37
+ import { type GetMergeCommitCommandInput, type GetMergeCommitCommandOutput } from "./commands/GetMergeCommitCommand";
38
+ import { type GetMergeConflictsCommandInput, type GetMergeConflictsCommandOutput } from "./commands/GetMergeConflictsCommand";
39
+ import { type GetMergeOptionsCommandInput, type GetMergeOptionsCommandOutput } from "./commands/GetMergeOptionsCommand";
40
+ import { type GetPullRequestApprovalStatesCommandInput, type GetPullRequestApprovalStatesCommandOutput } from "./commands/GetPullRequestApprovalStatesCommand";
41
+ import { type GetPullRequestCommandInput, type GetPullRequestCommandOutput } from "./commands/GetPullRequestCommand";
42
+ import { type GetPullRequestOverrideStateCommandInput, type GetPullRequestOverrideStateCommandOutput } from "./commands/GetPullRequestOverrideStateCommand";
43
+ import { type GetRepositoryCommandInput, type GetRepositoryCommandOutput } from "./commands/GetRepositoryCommand";
44
+ import { type GetRepositoryTriggersCommandInput, type GetRepositoryTriggersCommandOutput } from "./commands/GetRepositoryTriggersCommand";
45
+ import { type ListApprovalRuleTemplatesCommandInput, type ListApprovalRuleTemplatesCommandOutput } from "./commands/ListApprovalRuleTemplatesCommand";
46
+ import { type ListAssociatedApprovalRuleTemplatesForRepositoryCommandInput, type ListAssociatedApprovalRuleTemplatesForRepositoryCommandOutput } from "./commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand";
47
+ import { type ListBranchesCommandInput, type ListBranchesCommandOutput } from "./commands/ListBranchesCommand";
48
+ import { type ListFileCommitHistoryCommandInput, type ListFileCommitHistoryCommandOutput } from "./commands/ListFileCommitHistoryCommand";
49
+ import { type ListPullRequestsCommandInput, type ListPullRequestsCommandOutput } from "./commands/ListPullRequestsCommand";
50
+ import { type ListRepositoriesCommandInput, type ListRepositoriesCommandOutput } from "./commands/ListRepositoriesCommand";
51
+ import { type ListRepositoriesForApprovalRuleTemplateCommandInput, type ListRepositoriesForApprovalRuleTemplateCommandOutput } from "./commands/ListRepositoriesForApprovalRuleTemplateCommand";
52
+ import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
53
+ import { type MergeBranchesByFastForwardCommandInput, type MergeBranchesByFastForwardCommandOutput } from "./commands/MergeBranchesByFastForwardCommand";
54
+ import { type MergeBranchesBySquashCommandInput, type MergeBranchesBySquashCommandOutput } from "./commands/MergeBranchesBySquashCommand";
55
+ import { type MergeBranchesByThreeWayCommandInput, type MergeBranchesByThreeWayCommandOutput } from "./commands/MergeBranchesByThreeWayCommand";
56
+ import { type MergePullRequestByFastForwardCommandInput, type MergePullRequestByFastForwardCommandOutput } from "./commands/MergePullRequestByFastForwardCommand";
57
+ import { type MergePullRequestBySquashCommandInput, type MergePullRequestBySquashCommandOutput } from "./commands/MergePullRequestBySquashCommand";
58
+ import { type MergePullRequestByThreeWayCommandInput, type MergePullRequestByThreeWayCommandOutput } from "./commands/MergePullRequestByThreeWayCommand";
59
+ import { type OverridePullRequestApprovalRulesCommandInput, type OverridePullRequestApprovalRulesCommandOutput } from "./commands/OverridePullRequestApprovalRulesCommand";
60
+ import { type PostCommentForComparedCommitCommandInput, type PostCommentForComparedCommitCommandOutput } from "./commands/PostCommentForComparedCommitCommand";
61
+ import { type PostCommentForPullRequestCommandInput, type PostCommentForPullRequestCommandOutput } from "./commands/PostCommentForPullRequestCommand";
62
+ import { type PostCommentReplyCommandInput, type PostCommentReplyCommandOutput } from "./commands/PostCommentReplyCommand";
63
+ import { type PutCommentReactionCommandInput, type PutCommentReactionCommandOutput } from "./commands/PutCommentReactionCommand";
64
+ import { type PutFileCommandInput, type PutFileCommandOutput } from "./commands/PutFileCommand";
65
+ import { type PutRepositoryTriggersCommandInput, type PutRepositoryTriggersCommandOutput } from "./commands/PutRepositoryTriggersCommand";
66
+ import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
67
+ import { type TestRepositoryTriggersCommandInput, type TestRepositoryTriggersCommandOutput } from "./commands/TestRepositoryTriggersCommand";
68
+ import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
69
+ import { type UpdateApprovalRuleTemplateContentCommandInput, type UpdateApprovalRuleTemplateContentCommandOutput } from "./commands/UpdateApprovalRuleTemplateContentCommand";
70
+ import { type UpdateApprovalRuleTemplateDescriptionCommandInput, type UpdateApprovalRuleTemplateDescriptionCommandOutput } from "./commands/UpdateApprovalRuleTemplateDescriptionCommand";
71
+ import { type UpdateApprovalRuleTemplateNameCommandInput, type UpdateApprovalRuleTemplateNameCommandOutput } from "./commands/UpdateApprovalRuleTemplateNameCommand";
72
+ import { type UpdateCommentCommandInput, type UpdateCommentCommandOutput } from "./commands/UpdateCommentCommand";
73
+ import { type UpdateDefaultBranchCommandInput, type UpdateDefaultBranchCommandOutput } from "./commands/UpdateDefaultBranchCommand";
74
+ import { type UpdatePullRequestApprovalRuleContentCommandInput, type UpdatePullRequestApprovalRuleContentCommandOutput } from "./commands/UpdatePullRequestApprovalRuleContentCommand";
75
+ import { type UpdatePullRequestApprovalStateCommandInput, type UpdatePullRequestApprovalStateCommandOutput } from "./commands/UpdatePullRequestApprovalStateCommand";
76
+ import { type UpdatePullRequestDescriptionCommandInput, type UpdatePullRequestDescriptionCommandOutput } from "./commands/UpdatePullRequestDescriptionCommand";
77
+ import { type UpdatePullRequestStatusCommandInput, type UpdatePullRequestStatusCommandOutput } from "./commands/UpdatePullRequestStatusCommand";
78
+ import { type UpdatePullRequestTitleCommandInput, type UpdatePullRequestTitleCommandOutput } from "./commands/UpdatePullRequestTitleCommand";
79
+ import { type UpdateRepositoryDescriptionCommandInput, type UpdateRepositoryDescriptionCommandOutput } from "./commands/UpdateRepositoryDescriptionCommand";
80
+ import { type UpdateRepositoryEncryptionKeyCommandInput, type UpdateRepositoryEncryptionKeyCommandOutput } from "./commands/UpdateRepositoryEncryptionKeyCommand";
81
+ import { type UpdateRepositoryNameCommandInput, type UpdateRepositoryNameCommandOutput } from "./commands/UpdateRepositoryNameCommand";
82
82
  export interface CodeCommit {
83
83
  /**
84
84
  * @see {@link AssociateApprovalRuleTemplateWithRepositoryCommand}
@@ -5,88 +5,88 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
5
5
  import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
8
- import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
8
+ import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
- import { AssociateApprovalRuleTemplateWithRepositoryCommandInput, AssociateApprovalRuleTemplateWithRepositoryCommandOutput } from "./commands/AssociateApprovalRuleTemplateWithRepositoryCommand";
11
- import { BatchAssociateApprovalRuleTemplateWithRepositoriesCommandInput, BatchAssociateApprovalRuleTemplateWithRepositoriesCommandOutput } from "./commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand";
12
- import { BatchDescribeMergeConflictsCommandInput, BatchDescribeMergeConflictsCommandOutput } from "./commands/BatchDescribeMergeConflictsCommand";
13
- import { BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandInput, BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandOutput } from "./commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand";
14
- import { BatchGetCommitsCommandInput, BatchGetCommitsCommandOutput } from "./commands/BatchGetCommitsCommand";
15
- import { BatchGetRepositoriesCommandInput, BatchGetRepositoriesCommandOutput } from "./commands/BatchGetRepositoriesCommand";
16
- import { CreateApprovalRuleTemplateCommandInput, CreateApprovalRuleTemplateCommandOutput } from "./commands/CreateApprovalRuleTemplateCommand";
17
- import { CreateBranchCommandInput, CreateBranchCommandOutput } from "./commands/CreateBranchCommand";
18
- import { CreateCommitCommandInput, CreateCommitCommandOutput } from "./commands/CreateCommitCommand";
19
- import { CreatePullRequestApprovalRuleCommandInput, CreatePullRequestApprovalRuleCommandOutput } from "./commands/CreatePullRequestApprovalRuleCommand";
20
- import { CreatePullRequestCommandInput, CreatePullRequestCommandOutput } from "./commands/CreatePullRequestCommand";
21
- import { CreateRepositoryCommandInput, CreateRepositoryCommandOutput } from "./commands/CreateRepositoryCommand";
22
- import { CreateUnreferencedMergeCommitCommandInput, CreateUnreferencedMergeCommitCommandOutput } from "./commands/CreateUnreferencedMergeCommitCommand";
23
- import { DeleteApprovalRuleTemplateCommandInput, DeleteApprovalRuleTemplateCommandOutput } from "./commands/DeleteApprovalRuleTemplateCommand";
24
- import { DeleteBranchCommandInput, DeleteBranchCommandOutput } from "./commands/DeleteBranchCommand";
25
- import { DeleteCommentContentCommandInput, DeleteCommentContentCommandOutput } from "./commands/DeleteCommentContentCommand";
26
- import { DeleteFileCommandInput, DeleteFileCommandOutput } from "./commands/DeleteFileCommand";
27
- import { DeletePullRequestApprovalRuleCommandInput, DeletePullRequestApprovalRuleCommandOutput } from "./commands/DeletePullRequestApprovalRuleCommand";
28
- import { DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput } from "./commands/DeleteRepositoryCommand";
29
- import { DescribeMergeConflictsCommandInput, DescribeMergeConflictsCommandOutput } from "./commands/DescribeMergeConflictsCommand";
30
- import { DescribePullRequestEventsCommandInput, DescribePullRequestEventsCommandOutput } from "./commands/DescribePullRequestEventsCommand";
31
- import { DisassociateApprovalRuleTemplateFromRepositoryCommandInput, DisassociateApprovalRuleTemplateFromRepositoryCommandOutput } from "./commands/DisassociateApprovalRuleTemplateFromRepositoryCommand";
32
- import { EvaluatePullRequestApprovalRulesCommandInput, EvaluatePullRequestApprovalRulesCommandOutput } from "./commands/EvaluatePullRequestApprovalRulesCommand";
33
- import { GetApprovalRuleTemplateCommandInput, GetApprovalRuleTemplateCommandOutput } from "./commands/GetApprovalRuleTemplateCommand";
34
- import { GetBlobCommandInput, GetBlobCommandOutput } from "./commands/GetBlobCommand";
35
- import { GetBranchCommandInput, GetBranchCommandOutput } from "./commands/GetBranchCommand";
36
- import { GetCommentCommandInput, GetCommentCommandOutput } from "./commands/GetCommentCommand";
37
- import { GetCommentReactionsCommandInput, GetCommentReactionsCommandOutput } from "./commands/GetCommentReactionsCommand";
38
- import { GetCommentsForComparedCommitCommandInput, GetCommentsForComparedCommitCommandOutput } from "./commands/GetCommentsForComparedCommitCommand";
39
- import { GetCommentsForPullRequestCommandInput, GetCommentsForPullRequestCommandOutput } from "./commands/GetCommentsForPullRequestCommand";
40
- import { GetCommitCommandInput, GetCommitCommandOutput } from "./commands/GetCommitCommand";
41
- import { GetDifferencesCommandInput, GetDifferencesCommandOutput } from "./commands/GetDifferencesCommand";
42
- import { GetFileCommandInput, GetFileCommandOutput } from "./commands/GetFileCommand";
43
- import { GetFolderCommandInput, GetFolderCommandOutput } from "./commands/GetFolderCommand";
44
- import { GetMergeCommitCommandInput, GetMergeCommitCommandOutput } from "./commands/GetMergeCommitCommand";
45
- import { GetMergeConflictsCommandInput, GetMergeConflictsCommandOutput } from "./commands/GetMergeConflictsCommand";
46
- import { GetMergeOptionsCommandInput, GetMergeOptionsCommandOutput } from "./commands/GetMergeOptionsCommand";
47
- import { GetPullRequestApprovalStatesCommandInput, GetPullRequestApprovalStatesCommandOutput } from "./commands/GetPullRequestApprovalStatesCommand";
48
- import { GetPullRequestCommandInput, GetPullRequestCommandOutput } from "./commands/GetPullRequestCommand";
49
- import { GetPullRequestOverrideStateCommandInput, GetPullRequestOverrideStateCommandOutput } from "./commands/GetPullRequestOverrideStateCommand";
50
- import { GetRepositoryCommandInput, GetRepositoryCommandOutput } from "./commands/GetRepositoryCommand";
51
- import { GetRepositoryTriggersCommandInput, GetRepositoryTriggersCommandOutput } from "./commands/GetRepositoryTriggersCommand";
52
- import { ListApprovalRuleTemplatesCommandInput, ListApprovalRuleTemplatesCommandOutput } from "./commands/ListApprovalRuleTemplatesCommand";
53
- import { ListAssociatedApprovalRuleTemplatesForRepositoryCommandInput, ListAssociatedApprovalRuleTemplatesForRepositoryCommandOutput } from "./commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand";
54
- import { ListBranchesCommandInput, ListBranchesCommandOutput } from "./commands/ListBranchesCommand";
55
- import { ListFileCommitHistoryCommandInput, ListFileCommitHistoryCommandOutput } from "./commands/ListFileCommitHistoryCommand";
56
- import { ListPullRequestsCommandInput, ListPullRequestsCommandOutput } from "./commands/ListPullRequestsCommand";
57
- import { ListRepositoriesCommandInput, ListRepositoriesCommandOutput } from "./commands/ListRepositoriesCommand";
58
- import { ListRepositoriesForApprovalRuleTemplateCommandInput, ListRepositoriesForApprovalRuleTemplateCommandOutput } from "./commands/ListRepositoriesForApprovalRuleTemplateCommand";
59
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
60
- import { MergeBranchesByFastForwardCommandInput, MergeBranchesByFastForwardCommandOutput } from "./commands/MergeBranchesByFastForwardCommand";
61
- import { MergeBranchesBySquashCommandInput, MergeBranchesBySquashCommandOutput } from "./commands/MergeBranchesBySquashCommand";
62
- import { MergeBranchesByThreeWayCommandInput, MergeBranchesByThreeWayCommandOutput } from "./commands/MergeBranchesByThreeWayCommand";
63
- import { MergePullRequestByFastForwardCommandInput, MergePullRequestByFastForwardCommandOutput } from "./commands/MergePullRequestByFastForwardCommand";
64
- import { MergePullRequestBySquashCommandInput, MergePullRequestBySquashCommandOutput } from "./commands/MergePullRequestBySquashCommand";
65
- import { MergePullRequestByThreeWayCommandInput, MergePullRequestByThreeWayCommandOutput } from "./commands/MergePullRequestByThreeWayCommand";
66
- import { OverridePullRequestApprovalRulesCommandInput, OverridePullRequestApprovalRulesCommandOutput } from "./commands/OverridePullRequestApprovalRulesCommand";
67
- import { PostCommentForComparedCommitCommandInput, PostCommentForComparedCommitCommandOutput } from "./commands/PostCommentForComparedCommitCommand";
68
- import { PostCommentForPullRequestCommandInput, PostCommentForPullRequestCommandOutput } from "./commands/PostCommentForPullRequestCommand";
69
- import { PostCommentReplyCommandInput, PostCommentReplyCommandOutput } from "./commands/PostCommentReplyCommand";
70
- import { PutCommentReactionCommandInput, PutCommentReactionCommandOutput } from "./commands/PutCommentReactionCommand";
71
- import { PutFileCommandInput, PutFileCommandOutput } from "./commands/PutFileCommand";
72
- import { PutRepositoryTriggersCommandInput, PutRepositoryTriggersCommandOutput } from "./commands/PutRepositoryTriggersCommand";
73
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
74
- import { TestRepositoryTriggersCommandInput, TestRepositoryTriggersCommandOutput } from "./commands/TestRepositoryTriggersCommand";
75
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
76
- import { UpdateApprovalRuleTemplateContentCommandInput, UpdateApprovalRuleTemplateContentCommandOutput } from "./commands/UpdateApprovalRuleTemplateContentCommand";
77
- import { UpdateApprovalRuleTemplateDescriptionCommandInput, UpdateApprovalRuleTemplateDescriptionCommandOutput } from "./commands/UpdateApprovalRuleTemplateDescriptionCommand";
78
- import { UpdateApprovalRuleTemplateNameCommandInput, UpdateApprovalRuleTemplateNameCommandOutput } from "./commands/UpdateApprovalRuleTemplateNameCommand";
79
- import { UpdateCommentCommandInput, UpdateCommentCommandOutput } from "./commands/UpdateCommentCommand";
80
- import { UpdateDefaultBranchCommandInput, UpdateDefaultBranchCommandOutput } from "./commands/UpdateDefaultBranchCommand";
81
- import { UpdatePullRequestApprovalRuleContentCommandInput, UpdatePullRequestApprovalRuleContentCommandOutput } from "./commands/UpdatePullRequestApprovalRuleContentCommand";
82
- import { UpdatePullRequestApprovalStateCommandInput, UpdatePullRequestApprovalStateCommandOutput } from "./commands/UpdatePullRequestApprovalStateCommand";
83
- import { UpdatePullRequestDescriptionCommandInput, UpdatePullRequestDescriptionCommandOutput } from "./commands/UpdatePullRequestDescriptionCommand";
84
- import { UpdatePullRequestStatusCommandInput, UpdatePullRequestStatusCommandOutput } from "./commands/UpdatePullRequestStatusCommand";
85
- import { UpdatePullRequestTitleCommandInput, UpdatePullRequestTitleCommandOutput } from "./commands/UpdatePullRequestTitleCommand";
86
- import { UpdateRepositoryDescriptionCommandInput, UpdateRepositoryDescriptionCommandOutput } from "./commands/UpdateRepositoryDescriptionCommand";
87
- import { UpdateRepositoryEncryptionKeyCommandInput, UpdateRepositoryEncryptionKeyCommandOutput } from "./commands/UpdateRepositoryEncryptionKeyCommand";
88
- import { UpdateRepositoryNameCommandInput, UpdateRepositoryNameCommandOutput } from "./commands/UpdateRepositoryNameCommand";
89
- import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
10
+ import type { AssociateApprovalRuleTemplateWithRepositoryCommandInput, AssociateApprovalRuleTemplateWithRepositoryCommandOutput } from "./commands/AssociateApprovalRuleTemplateWithRepositoryCommand";
11
+ import type { BatchAssociateApprovalRuleTemplateWithRepositoriesCommandInput, BatchAssociateApprovalRuleTemplateWithRepositoriesCommandOutput } from "./commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand";
12
+ import type { BatchDescribeMergeConflictsCommandInput, BatchDescribeMergeConflictsCommandOutput } from "./commands/BatchDescribeMergeConflictsCommand";
13
+ import type { BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandInput, BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandOutput } from "./commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand";
14
+ import type { BatchGetCommitsCommandInput, BatchGetCommitsCommandOutput } from "./commands/BatchGetCommitsCommand";
15
+ import type { BatchGetRepositoriesCommandInput, BatchGetRepositoriesCommandOutput } from "./commands/BatchGetRepositoriesCommand";
16
+ import type { CreateApprovalRuleTemplateCommandInput, CreateApprovalRuleTemplateCommandOutput } from "./commands/CreateApprovalRuleTemplateCommand";
17
+ import type { CreateBranchCommandInput, CreateBranchCommandOutput } from "./commands/CreateBranchCommand";
18
+ import type { CreateCommitCommandInput, CreateCommitCommandOutput } from "./commands/CreateCommitCommand";
19
+ import type { CreatePullRequestApprovalRuleCommandInput, CreatePullRequestApprovalRuleCommandOutput } from "./commands/CreatePullRequestApprovalRuleCommand";
20
+ import type { CreatePullRequestCommandInput, CreatePullRequestCommandOutput } from "./commands/CreatePullRequestCommand";
21
+ import type { CreateRepositoryCommandInput, CreateRepositoryCommandOutput } from "./commands/CreateRepositoryCommand";
22
+ import type { CreateUnreferencedMergeCommitCommandInput, CreateUnreferencedMergeCommitCommandOutput } from "./commands/CreateUnreferencedMergeCommitCommand";
23
+ import type { DeleteApprovalRuleTemplateCommandInput, DeleteApprovalRuleTemplateCommandOutput } from "./commands/DeleteApprovalRuleTemplateCommand";
24
+ import type { DeleteBranchCommandInput, DeleteBranchCommandOutput } from "./commands/DeleteBranchCommand";
25
+ import type { DeleteCommentContentCommandInput, DeleteCommentContentCommandOutput } from "./commands/DeleteCommentContentCommand";
26
+ import type { DeleteFileCommandInput, DeleteFileCommandOutput } from "./commands/DeleteFileCommand";
27
+ import type { DeletePullRequestApprovalRuleCommandInput, DeletePullRequestApprovalRuleCommandOutput } from "./commands/DeletePullRequestApprovalRuleCommand";
28
+ import type { DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput } from "./commands/DeleteRepositoryCommand";
29
+ import type { DescribeMergeConflictsCommandInput, DescribeMergeConflictsCommandOutput } from "./commands/DescribeMergeConflictsCommand";
30
+ import type { DescribePullRequestEventsCommandInput, DescribePullRequestEventsCommandOutput } from "./commands/DescribePullRequestEventsCommand";
31
+ import type { DisassociateApprovalRuleTemplateFromRepositoryCommandInput, DisassociateApprovalRuleTemplateFromRepositoryCommandOutput } from "./commands/DisassociateApprovalRuleTemplateFromRepositoryCommand";
32
+ import type { EvaluatePullRequestApprovalRulesCommandInput, EvaluatePullRequestApprovalRulesCommandOutput } from "./commands/EvaluatePullRequestApprovalRulesCommand";
33
+ import type { GetApprovalRuleTemplateCommandInput, GetApprovalRuleTemplateCommandOutput } from "./commands/GetApprovalRuleTemplateCommand";
34
+ import type { GetBlobCommandInput, GetBlobCommandOutput } from "./commands/GetBlobCommand";
35
+ import type { GetBranchCommandInput, GetBranchCommandOutput } from "./commands/GetBranchCommand";
36
+ import type { GetCommentCommandInput, GetCommentCommandOutput } from "./commands/GetCommentCommand";
37
+ import type { GetCommentReactionsCommandInput, GetCommentReactionsCommandOutput } from "./commands/GetCommentReactionsCommand";
38
+ import type { GetCommentsForComparedCommitCommandInput, GetCommentsForComparedCommitCommandOutput } from "./commands/GetCommentsForComparedCommitCommand";
39
+ import type { GetCommentsForPullRequestCommandInput, GetCommentsForPullRequestCommandOutput } from "./commands/GetCommentsForPullRequestCommand";
40
+ import type { GetCommitCommandInput, GetCommitCommandOutput } from "./commands/GetCommitCommand";
41
+ import type { GetDifferencesCommandInput, GetDifferencesCommandOutput } from "./commands/GetDifferencesCommand";
42
+ import type { GetFileCommandInput, GetFileCommandOutput } from "./commands/GetFileCommand";
43
+ import type { GetFolderCommandInput, GetFolderCommandOutput } from "./commands/GetFolderCommand";
44
+ import type { GetMergeCommitCommandInput, GetMergeCommitCommandOutput } from "./commands/GetMergeCommitCommand";
45
+ import type { GetMergeConflictsCommandInput, GetMergeConflictsCommandOutput } from "./commands/GetMergeConflictsCommand";
46
+ import type { GetMergeOptionsCommandInput, GetMergeOptionsCommandOutput } from "./commands/GetMergeOptionsCommand";
47
+ import type { GetPullRequestApprovalStatesCommandInput, GetPullRequestApprovalStatesCommandOutput } from "./commands/GetPullRequestApprovalStatesCommand";
48
+ import type { GetPullRequestCommandInput, GetPullRequestCommandOutput } from "./commands/GetPullRequestCommand";
49
+ import type { GetPullRequestOverrideStateCommandInput, GetPullRequestOverrideStateCommandOutput } from "./commands/GetPullRequestOverrideStateCommand";
50
+ import type { GetRepositoryCommandInput, GetRepositoryCommandOutput } from "./commands/GetRepositoryCommand";
51
+ import type { GetRepositoryTriggersCommandInput, GetRepositoryTriggersCommandOutput } from "./commands/GetRepositoryTriggersCommand";
52
+ import type { ListApprovalRuleTemplatesCommandInput, ListApprovalRuleTemplatesCommandOutput } from "./commands/ListApprovalRuleTemplatesCommand";
53
+ import type { ListAssociatedApprovalRuleTemplatesForRepositoryCommandInput, ListAssociatedApprovalRuleTemplatesForRepositoryCommandOutput } from "./commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand";
54
+ import type { ListBranchesCommandInput, ListBranchesCommandOutput } from "./commands/ListBranchesCommand";
55
+ import type { ListFileCommitHistoryCommandInput, ListFileCommitHistoryCommandOutput } from "./commands/ListFileCommitHistoryCommand";
56
+ import type { ListPullRequestsCommandInput, ListPullRequestsCommandOutput } from "./commands/ListPullRequestsCommand";
57
+ import type { ListRepositoriesCommandInput, ListRepositoriesCommandOutput } from "./commands/ListRepositoriesCommand";
58
+ import type { ListRepositoriesForApprovalRuleTemplateCommandInput, ListRepositoriesForApprovalRuleTemplateCommandOutput } from "./commands/ListRepositoriesForApprovalRuleTemplateCommand";
59
+ import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
60
+ import type { MergeBranchesByFastForwardCommandInput, MergeBranchesByFastForwardCommandOutput } from "./commands/MergeBranchesByFastForwardCommand";
61
+ import type { MergeBranchesBySquashCommandInput, MergeBranchesBySquashCommandOutput } from "./commands/MergeBranchesBySquashCommand";
62
+ import type { MergeBranchesByThreeWayCommandInput, MergeBranchesByThreeWayCommandOutput } from "./commands/MergeBranchesByThreeWayCommand";
63
+ import type { MergePullRequestByFastForwardCommandInput, MergePullRequestByFastForwardCommandOutput } from "./commands/MergePullRequestByFastForwardCommand";
64
+ import type { MergePullRequestBySquashCommandInput, MergePullRequestBySquashCommandOutput } from "./commands/MergePullRequestBySquashCommand";
65
+ import type { MergePullRequestByThreeWayCommandInput, MergePullRequestByThreeWayCommandOutput } from "./commands/MergePullRequestByThreeWayCommand";
66
+ import type { OverridePullRequestApprovalRulesCommandInput, OverridePullRequestApprovalRulesCommandOutput } from "./commands/OverridePullRequestApprovalRulesCommand";
67
+ import type { PostCommentForComparedCommitCommandInput, PostCommentForComparedCommitCommandOutput } from "./commands/PostCommentForComparedCommitCommand";
68
+ import type { PostCommentForPullRequestCommandInput, PostCommentForPullRequestCommandOutput } from "./commands/PostCommentForPullRequestCommand";
69
+ import type { PostCommentReplyCommandInput, PostCommentReplyCommandOutput } from "./commands/PostCommentReplyCommand";
70
+ import type { PutCommentReactionCommandInput, PutCommentReactionCommandOutput } from "./commands/PutCommentReactionCommand";
71
+ import type { PutFileCommandInput, PutFileCommandOutput } from "./commands/PutFileCommand";
72
+ import type { PutRepositoryTriggersCommandInput, PutRepositoryTriggersCommandOutput } from "./commands/PutRepositoryTriggersCommand";
73
+ import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
74
+ import type { TestRepositoryTriggersCommandInput, TestRepositoryTriggersCommandOutput } from "./commands/TestRepositoryTriggersCommand";
75
+ import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
76
+ import type { UpdateApprovalRuleTemplateContentCommandInput, UpdateApprovalRuleTemplateContentCommandOutput } from "./commands/UpdateApprovalRuleTemplateContentCommand";
77
+ import type { UpdateApprovalRuleTemplateDescriptionCommandInput, UpdateApprovalRuleTemplateDescriptionCommandOutput } from "./commands/UpdateApprovalRuleTemplateDescriptionCommand";
78
+ import type { UpdateApprovalRuleTemplateNameCommandInput, UpdateApprovalRuleTemplateNameCommandOutput } from "./commands/UpdateApprovalRuleTemplateNameCommand";
79
+ import type { UpdateCommentCommandInput, UpdateCommentCommandOutput } from "./commands/UpdateCommentCommand";
80
+ import type { UpdateDefaultBranchCommandInput, UpdateDefaultBranchCommandOutput } from "./commands/UpdateDefaultBranchCommand";
81
+ import type { UpdatePullRequestApprovalRuleContentCommandInput, UpdatePullRequestApprovalRuleContentCommandOutput } from "./commands/UpdatePullRequestApprovalRuleContentCommand";
82
+ import type { UpdatePullRequestApprovalStateCommandInput, UpdatePullRequestApprovalStateCommandOutput } from "./commands/UpdatePullRequestApprovalStateCommand";
83
+ import type { UpdatePullRequestDescriptionCommandInput, UpdatePullRequestDescriptionCommandOutput } from "./commands/UpdatePullRequestDescriptionCommand";
84
+ import type { UpdatePullRequestStatusCommandInput, UpdatePullRequestStatusCommandOutput } from "./commands/UpdatePullRequestStatusCommand";
85
+ import type { UpdatePullRequestTitleCommandInput, UpdatePullRequestTitleCommandOutput } from "./commands/UpdatePullRequestTitleCommand";
86
+ import type { UpdateRepositoryDescriptionCommandInput, UpdateRepositoryDescriptionCommandOutput } from "./commands/UpdateRepositoryDescriptionCommand";
87
+ import type { UpdateRepositoryEncryptionKeyCommandInput, UpdateRepositoryEncryptionKeyCommandOutput } from "./commands/UpdateRepositoryEncryptionKeyCommand";
88
+ import type { UpdateRepositoryNameCommandInput, UpdateRepositoryNameCommandOutput } from "./commands/UpdateRepositoryNameCommand";
89
+ import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
90
90
  import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
91
91
  export { __Client };
92
92
  /**
@@ -195,7 +195,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
195
195
  * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
196
196
  * @internal
197
197
  */
198
- defaultUserAgentProvider?: Provider<__UserAgent>;
198
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
199
199
  /**
200
200
  * Default credentials provider; Not available in browser runtime.
201
201
  * @deprecated
@@ -1,4 +1,4 @@
1
- import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types";
1
+ import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
2
2
  import type { CodeCommitHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
3
  /**
4
4
  * @internal
@@ -1,4 +1,4 @@
1
- import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
3
3
  import { type CodeCommitClientResolvedConfig } from "../CodeCommitClient";
4
4
  /**
@@ -390,7 +390,7 @@
390
390
  */
391
391
  export * from "./CodeCommitClient";
392
392
  export * from "./CodeCommit";
393
- export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
393
+ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
394
394
  export type { RuntimeExtension } from "./runtimeExtensions";
395
395
  export type { CodeCommitExtensionConfiguration } from "./extensionConfiguration";
396
396
  export * from "./commands";
@@ -1,4 +1,4 @@
1
- import { ApprovalState, BatchGetRepositoriesErrorCodeEnum, ChangeTypeEnum, ConflictDetailLevelTypeEnum, ConflictResolutionStrategyTypeEnum, FileModeTypeEnum, MergeOptionTypeEnum, ObjectTypeEnum, OrderEnum, OverrideStatus, PullRequestEventType, PullRequestStatusEnum, RelativeFileVersionEnum, ReplacementTypeEnum, RepositoryTriggerEventEnum, SortByEnum } from "./enums";
1
+ import type { ApprovalState, BatchGetRepositoriesErrorCodeEnum, ChangeTypeEnum, ConflictDetailLevelTypeEnum, ConflictResolutionStrategyTypeEnum, FileModeTypeEnum, MergeOptionTypeEnum, ObjectTypeEnum, OrderEnum, OverrideStatus, PullRequestEventType, PullRequestStatusEnum, RelativeFileVersionEnum, ReplacementTypeEnum, RepositoryTriggerEventEnum, SortByEnum } from "./enums";
2
2
  /**
3
3
  * <p>Returns information about a specific approval on a pull request.</p>
4
4
  * @public
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { DescribeMergeConflictsCommandInput, DescribeMergeConflictsCommandOutput } from "../commands/DescribeMergeConflictsCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { DescribePullRequestEventsCommandInput, DescribePullRequestEventsCommandOutput } from "../commands/DescribePullRequestEventsCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { GetCommentReactionsCommandInput, GetCommentReactionsCommandOutput } from "../commands/GetCommentReactionsCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { GetCommentsForComparedCommitCommandInput, GetCommentsForComparedCommitCommandOutput } from "../commands/GetCommentsForComparedCommitCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { GetCommentsForPullRequestCommandInput, GetCommentsForPullRequestCommandOutput } from "../commands/GetCommentsForPullRequestCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { GetDifferencesCommandInput, GetDifferencesCommandOutput } from "../commands/GetDifferencesCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { GetMergeConflictsCommandInput, GetMergeConflictsCommandOutput } from "../commands/GetMergeConflictsCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListApprovalRuleTemplatesCommandInput, ListApprovalRuleTemplatesCommandOutput } from "../commands/ListApprovalRuleTemplatesCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListAssociatedApprovalRuleTemplatesForRepositoryCommandInput, ListAssociatedApprovalRuleTemplatesForRepositoryCommandOutput } from "../commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListBranchesCommandInput, ListBranchesCommandOutput } from "../commands/ListBranchesCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListFileCommitHistoryCommandInput, ListFileCommitHistoryCommandOutput } from "../commands/ListFileCommitHistoryCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListPullRequestsCommandInput, ListPullRequestsCommandOutput } from "../commands/ListPullRequestsCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListRepositoriesForApprovalRuleTemplateCommandInput, ListRepositoriesForApprovalRuleTemplateCommandOutput } from "../commands/ListRepositoriesForApprovalRuleTemplateCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListRepositoriesCommandInput, ListRepositoriesCommandOutput } from "../commands/ListRepositoriesCommand";
3
- import { CodeCommitPaginationConfiguration } from "./Interfaces";
3
+ import type { CodeCommitPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: CodeCommitClientConfig) => {
18
18
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
19
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
20
  cacheMiddleware?: boolean | undefined;
21
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
21
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
22
22
  protocolSettings: {
23
23
  defaultNamespace?: string;
24
24
  [setting: string]: unknown;
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: CodeCommitClientConfig) => {
20
20
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
22
  cacheMiddleware?: boolean | undefined;
23
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
23
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
24
24
  protocolSettings: {
25
25
  defaultNamespace?: string;
26
26
  [setting: string]: unknown;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: CodeCommitClientConfig) => {
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
  cacheMiddleware?: boolean;
10
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
10
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
11
11
  protocolSettings: {
12
12
  defaultNamespace?: string;
13
13
  [setting: string]: unknown;
@@ -26,6 +26,7 @@ import {
26
26
  Client as __Client,
27
27
  } from "@smithy/smithy-client";
28
28
  import {
29
+ AwsCredentialIdentityProvider,
29
30
  BodyLengthCalculator as __BodyLengthCalculator,
30
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
31
32
  ChecksumConstructor as __ChecksumConstructor,
@@ -37,8 +38,6 @@ import {
37
38
  Provider as __Provider,
38
39
  StreamCollector as __StreamCollector,
39
40
  UrlParser as __UrlParser,
40
- AwsCredentialIdentityProvider,
41
- Provider,
42
41
  UserAgent as __UserAgent,
43
42
  } from "@smithy/types";
44
43
  import {
@@ -546,7 +545,7 @@ export interface ClientDefaults
546
545
  useFipsEndpoint?: boolean | __Provider<boolean>;
547
546
  region?: string | __Provider<string>;
548
547
  profile?: string;
549
- defaultUserAgentProvider?: Provider<__UserAgent>;
548
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
550
549
  credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
551
550
  maxAttempts?: number | __Provider<number>;
552
551
  retryMode?: string | __Provider<string>;
@@ -1,7 +1,7 @@
1
1
  import {
2
- HttpAuthScheme,
3
2
  AwsCredentialIdentity,
4
3
  AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
5
  } from "@smithy/types";
6
6
  import { CodeCommitHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
@@ -2,7 +2,7 @@ import {
2
2
  AwsSdkSigV4AuthInputConfig,
3
3
  AwsSdkSigV4AuthResolvedConfig,
4
4
  AwsSdkSigV4PreviouslyResolved,
5
- } from "@aws-sdk/core";
5
+ } from "@aws-sdk/core/httpAuthSchemes";
6
6
  import {
7
7
  HandlerExecutionContext,
8
8
  HttpAuthScheme,
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: CodeCommitClientConfig) => {
30
30
  protocol:
31
31
  | import("@smithy/types").ClientProtocol<any, any>
32
32
  | import("@smithy/types").ClientProtocolCtor<any, any>
33
- | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
33
+ | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
34
34
  protocolSettings: {
35
35
  defaultNamespace?: string;
36
36
  [setting: string]: unknown;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: CodeCommitClientConfig) => {
30
30
  protocol:
31
31
  | import("@smithy/types").ClientProtocol<any, any>
32
32
  | import("@smithy/types").ClientProtocolCtor<any, any>
33
- | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
33
+ | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
34
34
  protocolSettings: {
35
35
  defaultNamespace?: string;
36
36
  [setting: string]: unknown;
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: CodeCommitClientConfig) => {
12
12
  protocol:
13
13
  | import("@smithy/types").ClientProtocol<any, any>
14
14
  | import("@smithy/types").ClientProtocolCtor<any, any>
15
- | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
15
+ | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
16
16
  protocolSettings: {
17
17
  defaultNamespace?: string;
18
18
  [setting: string]: unknown;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codecommit",
3
3
  "description": "AWS SDK for JavaScript Codecommit Client for Node.js, Browser and React Native",
4
- "version": "3.1018.0",
4
+ "version": "3.1020.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-codecommit",
@@ -23,38 +23,38 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "^3.973.25",
27
- "@aws-sdk/credential-provider-node": "^3.972.26",
26
+ "@aws-sdk/core": "^3.973.26",
27
+ "@aws-sdk/credential-provider-node": "^3.972.28",
28
28
  "@aws-sdk/middleware-host-header": "^3.972.8",
29
29
  "@aws-sdk/middleware-logger": "^3.972.8",
30
30
  "@aws-sdk/middleware-recursion-detection": "^3.972.9",
31
- "@aws-sdk/middleware-user-agent": "^3.972.26",
31
+ "@aws-sdk/middleware-user-agent": "^3.972.27",
32
32
  "@aws-sdk/region-config-resolver": "^3.972.10",
33
33
  "@aws-sdk/types": "^3.973.6",
34
34
  "@aws-sdk/util-endpoints": "^3.996.5",
35
35
  "@aws-sdk/util-user-agent-browser": "^3.972.8",
36
- "@aws-sdk/util-user-agent-node": "^3.973.12",
36
+ "@aws-sdk/util-user-agent-node": "^3.973.13",
37
37
  "@smithy/config-resolver": "^4.4.13",
38
- "@smithy/core": "^3.23.12",
38
+ "@smithy/core": "^3.23.13",
39
39
  "@smithy/fetch-http-handler": "^5.3.15",
40
40
  "@smithy/hash-node": "^4.2.12",
41
41
  "@smithy/invalid-dependency": "^4.2.12",
42
42
  "@smithy/middleware-content-length": "^4.2.12",
43
- "@smithy/middleware-endpoint": "^4.4.27",
44
- "@smithy/middleware-retry": "^4.4.44",
45
- "@smithy/middleware-serde": "^4.2.15",
43
+ "@smithy/middleware-endpoint": "^4.4.28",
44
+ "@smithy/middleware-retry": "^4.4.45",
45
+ "@smithy/middleware-serde": "^4.2.16",
46
46
  "@smithy/middleware-stack": "^4.2.12",
47
47
  "@smithy/node-config-provider": "^4.3.12",
48
- "@smithy/node-http-handler": "^4.5.0",
48
+ "@smithy/node-http-handler": "^4.5.1",
49
49
  "@smithy/protocol-http": "^5.3.12",
50
- "@smithy/smithy-client": "^4.12.7",
50
+ "@smithy/smithy-client": "^4.12.8",
51
51
  "@smithy/types": "^4.13.1",
52
52
  "@smithy/url-parser": "^4.2.12",
53
53
  "@smithy/util-base64": "^4.3.2",
54
54
  "@smithy/util-body-length-browser": "^4.2.2",
55
55
  "@smithy/util-body-length-node": "^4.2.3",
56
- "@smithy/util-defaults-mode-browser": "^4.3.43",
57
- "@smithy/util-defaults-mode-node": "^4.2.47",
56
+ "@smithy/util-defaults-mode-browser": "^4.3.44",
57
+ "@smithy/util-defaults-mode-node": "^4.2.48",
58
58
  "@smithy/util-endpoints": "^3.3.3",
59
59
  "@smithy/util-middleware": "^4.2.12",
60
60
  "@smithy/util-retry": "^4.2.12",