@aws-sdk/client-codecatalyst 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.
- package/dist-cjs/runtimeConfig.js +6 -5
- package/dist-es/CodeCatalyst.js +5 -5
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-types/CodeCatalyst.d.ts +38 -38
- package/dist-types/CodeCatalystClient.d.ts +41 -41
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/pagination/ListAccessTokensPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDevEnvironmentSessionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDevEnvironmentsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEventLogsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListProjectsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSourceRepositoriesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSourceRepositoryBranchesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSpacesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListWorkflowRunsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListWorkflowsPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/CodeCatalystClient.d.ts +1 -2
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +13 -13
|
@@ -3,11 +3,12 @@ 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
|
|
6
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
7
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
7
8
|
const token_providers_1 = require("@aws-sdk/token-providers");
|
|
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");
|
|
10
|
-
const
|
|
11
|
+
const core_1 = require("@smithy/core");
|
|
11
12
|
const hash_node_1 = require("@smithy/hash-node");
|
|
12
13
|
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
13
14
|
const node_config_provider_1 = require("@smithy/node-config-provider");
|
|
@@ -22,7 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
22
23
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
23
24
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
24
25
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
25
|
-
(0,
|
|
26
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
26
27
|
const loaderConfig = {
|
|
27
28
|
profile: config?.profile,
|
|
28
29
|
logger: clientSharedValues.logger,
|
|
@@ -32,7 +33,7 @@ const getRuntimeConfig = (config) => {
|
|
|
32
33
|
...config,
|
|
33
34
|
runtime: "node",
|
|
34
35
|
defaultsMode,
|
|
35
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
36
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
36
37
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
37
38
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
38
39
|
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
@@ -41,7 +42,7 @@ const getRuntimeConfig = (config) => {
|
|
|
41
42
|
identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#httpBearerAuth") || (async (idProps) => {
|
|
42
43
|
return await (0, token_providers_1.nodeProvider)(idProps)(idProps);
|
|
43
44
|
}),
|
|
44
|
-
signer: new
|
|
45
|
+
signer: new core_1.HttpBearerAuthSigner(),
|
|
45
46
|
},
|
|
46
47
|
],
|
|
47
48
|
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
package/dist-es/CodeCatalyst.js
CHANGED
|
@@ -9,15 +9,15 @@ import { DeleteAccessTokenCommand, } from "./commands/DeleteAccessTokenCommand";
|
|
|
9
9
|
import { DeleteDevEnvironmentCommand, } from "./commands/DeleteDevEnvironmentCommand";
|
|
10
10
|
import { DeleteProjectCommand, } from "./commands/DeleteProjectCommand";
|
|
11
11
|
import { DeleteSourceRepositoryCommand, } from "./commands/DeleteSourceRepositoryCommand";
|
|
12
|
-
import { DeleteSpaceCommand } from "./commands/DeleteSpaceCommand";
|
|
12
|
+
import { DeleteSpaceCommand, } from "./commands/DeleteSpaceCommand";
|
|
13
13
|
import { GetDevEnvironmentCommand, } from "./commands/GetDevEnvironmentCommand";
|
|
14
|
-
import { GetProjectCommand } from "./commands/GetProjectCommand";
|
|
14
|
+
import { GetProjectCommand, } from "./commands/GetProjectCommand";
|
|
15
15
|
import { GetSourceRepositoryCloneUrlsCommand, } from "./commands/GetSourceRepositoryCloneUrlsCommand";
|
|
16
16
|
import { GetSourceRepositoryCommand, } from "./commands/GetSourceRepositoryCommand";
|
|
17
17
|
import { GetSpaceCommand } from "./commands/GetSpaceCommand";
|
|
18
18
|
import { GetSubscriptionCommand, } from "./commands/GetSubscriptionCommand";
|
|
19
19
|
import { GetUserDetailsCommand, } from "./commands/GetUserDetailsCommand";
|
|
20
|
-
import { GetWorkflowCommand } from "./commands/GetWorkflowCommand";
|
|
20
|
+
import { GetWorkflowCommand, } from "./commands/GetWorkflowCommand";
|
|
21
21
|
import { GetWorkflowRunCommand, } from "./commands/GetWorkflowRunCommand";
|
|
22
22
|
import { ListAccessTokensCommand, } from "./commands/ListAccessTokensCommand";
|
|
23
23
|
import { ListDevEnvironmentsCommand, } from "./commands/ListDevEnvironmentsCommand";
|
|
@@ -26,7 +26,7 @@ import { ListEventLogsCommand, } from "./commands/ListEventLogsCommand";
|
|
|
26
26
|
import { ListProjectsCommand, } from "./commands/ListProjectsCommand";
|
|
27
27
|
import { ListSourceRepositoriesCommand, } from "./commands/ListSourceRepositoriesCommand";
|
|
28
28
|
import { ListSourceRepositoryBranchesCommand, } from "./commands/ListSourceRepositoryBranchesCommand";
|
|
29
|
-
import { ListSpacesCommand } from "./commands/ListSpacesCommand";
|
|
29
|
+
import { ListSpacesCommand, } from "./commands/ListSpacesCommand";
|
|
30
30
|
import { ListWorkflowRunsCommand, } from "./commands/ListWorkflowRunsCommand";
|
|
31
31
|
import { ListWorkflowsCommand, } from "./commands/ListWorkflowsCommand";
|
|
32
32
|
import { StartDevEnvironmentCommand, } from "./commands/StartDevEnvironmentCommand";
|
|
@@ -36,7 +36,7 @@ import { StopDevEnvironmentCommand, } from "./commands/StopDevEnvironmentCommand
|
|
|
36
36
|
import { StopDevEnvironmentSessionCommand, } from "./commands/StopDevEnvironmentSessionCommand";
|
|
37
37
|
import { UpdateDevEnvironmentCommand, } from "./commands/UpdateDevEnvironmentCommand";
|
|
38
38
|
import { UpdateProjectCommand, } from "./commands/UpdateProjectCommand";
|
|
39
|
-
import { UpdateSpaceCommand } from "./commands/UpdateSpaceCommand";
|
|
39
|
+
import { UpdateSpaceCommand, } from "./commands/UpdateSpaceCommand";
|
|
40
40
|
import { VerifySessionCommand, } from "./commands/VerifySessionCommand";
|
|
41
41
|
import { paginateListAccessTokens } from "./pagination/ListAccessTokensPaginator";
|
|
42
42
|
import { paginateListDevEnvironmentSessions } from "./pagination/ListDevEnvironmentSessionsPaginator";
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
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 { nodeProvider } from "@aws-sdk/token-providers";
|
|
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,43 +1,43 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { CodeCatalystClient } from "./CodeCatalystClient";
|
|
3
|
-
import { CreateAccessTokenCommandInput, CreateAccessTokenCommandOutput } from "./commands/CreateAccessTokenCommand";
|
|
4
|
-
import { CreateDevEnvironmentCommandInput, CreateDevEnvironmentCommandOutput } from "./commands/CreateDevEnvironmentCommand";
|
|
5
|
-
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
6
|
-
import { CreateSourceRepositoryBranchCommandInput, CreateSourceRepositoryBranchCommandOutput } from "./commands/CreateSourceRepositoryBranchCommand";
|
|
7
|
-
import { CreateSourceRepositoryCommandInput, CreateSourceRepositoryCommandOutput } from "./commands/CreateSourceRepositoryCommand";
|
|
8
|
-
import { DeleteAccessTokenCommandInput, DeleteAccessTokenCommandOutput } from "./commands/DeleteAccessTokenCommand";
|
|
9
|
-
import { DeleteDevEnvironmentCommandInput, DeleteDevEnvironmentCommandOutput } from "./commands/DeleteDevEnvironmentCommand";
|
|
10
|
-
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
11
|
-
import { DeleteSourceRepositoryCommandInput, DeleteSourceRepositoryCommandOutput } from "./commands/DeleteSourceRepositoryCommand";
|
|
12
|
-
import { DeleteSpaceCommandInput, DeleteSpaceCommandOutput } from "./commands/DeleteSpaceCommand";
|
|
13
|
-
import { GetDevEnvironmentCommandInput, GetDevEnvironmentCommandOutput } from "./commands/GetDevEnvironmentCommand";
|
|
14
|
-
import { GetProjectCommandInput, GetProjectCommandOutput } from "./commands/GetProjectCommand";
|
|
15
|
-
import { GetSourceRepositoryCloneUrlsCommandInput, GetSourceRepositoryCloneUrlsCommandOutput } from "./commands/GetSourceRepositoryCloneUrlsCommand";
|
|
16
|
-
import { GetSourceRepositoryCommandInput, GetSourceRepositoryCommandOutput } from "./commands/GetSourceRepositoryCommand";
|
|
17
|
-
import { GetSpaceCommandInput, GetSpaceCommandOutput } from "./commands/GetSpaceCommand";
|
|
18
|
-
import { GetSubscriptionCommandInput, GetSubscriptionCommandOutput } from "./commands/GetSubscriptionCommand";
|
|
19
|
-
import { GetUserDetailsCommandInput, GetUserDetailsCommandOutput } from "./commands/GetUserDetailsCommand";
|
|
20
|
-
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
21
|
-
import { GetWorkflowRunCommandInput, GetWorkflowRunCommandOutput } from "./commands/GetWorkflowRunCommand";
|
|
22
|
-
import { ListAccessTokensCommandInput, ListAccessTokensCommandOutput } from "./commands/ListAccessTokensCommand";
|
|
23
|
-
import { ListDevEnvironmentsCommandInput, ListDevEnvironmentsCommandOutput } from "./commands/ListDevEnvironmentsCommand";
|
|
24
|
-
import { ListDevEnvironmentSessionsCommandInput, ListDevEnvironmentSessionsCommandOutput } from "./commands/ListDevEnvironmentSessionsCommand";
|
|
25
|
-
import { ListEventLogsCommandInput, ListEventLogsCommandOutput } from "./commands/ListEventLogsCommand";
|
|
26
|
-
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
27
|
-
import { ListSourceRepositoriesCommandInput, ListSourceRepositoriesCommandOutput } from "./commands/ListSourceRepositoriesCommand";
|
|
28
|
-
import { ListSourceRepositoryBranchesCommandInput, ListSourceRepositoryBranchesCommandOutput } from "./commands/ListSourceRepositoryBranchesCommand";
|
|
29
|
-
import { ListSpacesCommandInput, ListSpacesCommandOutput } from "./commands/ListSpacesCommand";
|
|
30
|
-
import { ListWorkflowRunsCommandInput, ListWorkflowRunsCommandOutput } from "./commands/ListWorkflowRunsCommand";
|
|
31
|
-
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
32
|
-
import { StartDevEnvironmentCommandInput, StartDevEnvironmentCommandOutput } from "./commands/StartDevEnvironmentCommand";
|
|
33
|
-
import { StartDevEnvironmentSessionCommandInput, StartDevEnvironmentSessionCommandOutput } from "./commands/StartDevEnvironmentSessionCommand";
|
|
34
|
-
import { StartWorkflowRunCommandInput, StartWorkflowRunCommandOutput } from "./commands/StartWorkflowRunCommand";
|
|
35
|
-
import { StopDevEnvironmentCommandInput, StopDevEnvironmentCommandOutput } from "./commands/StopDevEnvironmentCommand";
|
|
36
|
-
import { StopDevEnvironmentSessionCommandInput, StopDevEnvironmentSessionCommandOutput } from "./commands/StopDevEnvironmentSessionCommand";
|
|
37
|
-
import { UpdateDevEnvironmentCommandInput, UpdateDevEnvironmentCommandOutput } from "./commands/UpdateDevEnvironmentCommand";
|
|
38
|
-
import { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
39
|
-
import { UpdateSpaceCommandInput, UpdateSpaceCommandOutput } from "./commands/UpdateSpaceCommand";
|
|
40
|
-
import { VerifySessionCommandInput, VerifySessionCommandOutput } from "./commands/VerifySessionCommand";
|
|
3
|
+
import { type CreateAccessTokenCommandInput, type CreateAccessTokenCommandOutput } from "./commands/CreateAccessTokenCommand";
|
|
4
|
+
import { type CreateDevEnvironmentCommandInput, type CreateDevEnvironmentCommandOutput } from "./commands/CreateDevEnvironmentCommand";
|
|
5
|
+
import { type CreateProjectCommandInput, type CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
6
|
+
import { type CreateSourceRepositoryBranchCommandInput, type CreateSourceRepositoryBranchCommandOutput } from "./commands/CreateSourceRepositoryBranchCommand";
|
|
7
|
+
import { type CreateSourceRepositoryCommandInput, type CreateSourceRepositoryCommandOutput } from "./commands/CreateSourceRepositoryCommand";
|
|
8
|
+
import { type DeleteAccessTokenCommandInput, type DeleteAccessTokenCommandOutput } from "./commands/DeleteAccessTokenCommand";
|
|
9
|
+
import { type DeleteDevEnvironmentCommandInput, type DeleteDevEnvironmentCommandOutput } from "./commands/DeleteDevEnvironmentCommand";
|
|
10
|
+
import { type DeleteProjectCommandInput, type DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
11
|
+
import { type DeleteSourceRepositoryCommandInput, type DeleteSourceRepositoryCommandOutput } from "./commands/DeleteSourceRepositoryCommand";
|
|
12
|
+
import { type DeleteSpaceCommandInput, type DeleteSpaceCommandOutput } from "./commands/DeleteSpaceCommand";
|
|
13
|
+
import { type GetDevEnvironmentCommandInput, type GetDevEnvironmentCommandOutput } from "./commands/GetDevEnvironmentCommand";
|
|
14
|
+
import { type GetProjectCommandInput, type GetProjectCommandOutput } from "./commands/GetProjectCommand";
|
|
15
|
+
import { type GetSourceRepositoryCloneUrlsCommandInput, type GetSourceRepositoryCloneUrlsCommandOutput } from "./commands/GetSourceRepositoryCloneUrlsCommand";
|
|
16
|
+
import { type GetSourceRepositoryCommandInput, type GetSourceRepositoryCommandOutput } from "./commands/GetSourceRepositoryCommand";
|
|
17
|
+
import { type GetSpaceCommandInput, type GetSpaceCommandOutput } from "./commands/GetSpaceCommand";
|
|
18
|
+
import { type GetSubscriptionCommandInput, type GetSubscriptionCommandOutput } from "./commands/GetSubscriptionCommand";
|
|
19
|
+
import { type GetUserDetailsCommandInput, type GetUserDetailsCommandOutput } from "./commands/GetUserDetailsCommand";
|
|
20
|
+
import { type GetWorkflowCommandInput, type GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
21
|
+
import { type GetWorkflowRunCommandInput, type GetWorkflowRunCommandOutput } from "./commands/GetWorkflowRunCommand";
|
|
22
|
+
import { type ListAccessTokensCommandInput, type ListAccessTokensCommandOutput } from "./commands/ListAccessTokensCommand";
|
|
23
|
+
import { type ListDevEnvironmentsCommandInput, type ListDevEnvironmentsCommandOutput } from "./commands/ListDevEnvironmentsCommand";
|
|
24
|
+
import { type ListDevEnvironmentSessionsCommandInput, type ListDevEnvironmentSessionsCommandOutput } from "./commands/ListDevEnvironmentSessionsCommand";
|
|
25
|
+
import { type ListEventLogsCommandInput, type ListEventLogsCommandOutput } from "./commands/ListEventLogsCommand";
|
|
26
|
+
import { type ListProjectsCommandInput, type ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
27
|
+
import { type ListSourceRepositoriesCommandInput, type ListSourceRepositoriesCommandOutput } from "./commands/ListSourceRepositoriesCommand";
|
|
28
|
+
import { type ListSourceRepositoryBranchesCommandInput, type ListSourceRepositoryBranchesCommandOutput } from "./commands/ListSourceRepositoryBranchesCommand";
|
|
29
|
+
import { type ListSpacesCommandInput, type ListSpacesCommandOutput } from "./commands/ListSpacesCommand";
|
|
30
|
+
import { type ListWorkflowRunsCommandInput, type ListWorkflowRunsCommandOutput } from "./commands/ListWorkflowRunsCommand";
|
|
31
|
+
import { type ListWorkflowsCommandInput, type ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
32
|
+
import { type StartDevEnvironmentCommandInput, type StartDevEnvironmentCommandOutput } from "./commands/StartDevEnvironmentCommand";
|
|
33
|
+
import { type StartDevEnvironmentSessionCommandInput, type StartDevEnvironmentSessionCommandOutput } from "./commands/StartDevEnvironmentSessionCommand";
|
|
34
|
+
import { type StartWorkflowRunCommandInput, type StartWorkflowRunCommandOutput } from "./commands/StartWorkflowRunCommand";
|
|
35
|
+
import { type StopDevEnvironmentCommandInput, type StopDevEnvironmentCommandOutput } from "./commands/StopDevEnvironmentCommand";
|
|
36
|
+
import { type StopDevEnvironmentSessionCommandInput, type StopDevEnvironmentSessionCommandOutput } from "./commands/StopDevEnvironmentSessionCommand";
|
|
37
|
+
import { type UpdateDevEnvironmentCommandInput, type UpdateDevEnvironmentCommandOutput } from "./commands/UpdateDevEnvironmentCommand";
|
|
38
|
+
import { type UpdateProjectCommandInput, type UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
39
|
+
import { type UpdateSpaceCommandInput, type UpdateSpaceCommandOutput } from "./commands/UpdateSpaceCommand";
|
|
40
|
+
import { type VerifySessionCommandInput, type VerifySessionCommandOutput } from "./commands/VerifySessionCommand";
|
|
41
41
|
export interface CodeCatalyst {
|
|
42
42
|
/**
|
|
43
43
|
* @see {@link CreateAccessTokenCommand}
|
|
@@ -5,47 +5,47 @@ 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 {
|
|
8
|
+
import type { 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 { CreateAccessTokenCommandInput, CreateAccessTokenCommandOutput } from "./commands/CreateAccessTokenCommand";
|
|
11
|
-
import { CreateDevEnvironmentCommandInput, CreateDevEnvironmentCommandOutput } from "./commands/CreateDevEnvironmentCommand";
|
|
12
|
-
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
13
|
-
import { CreateSourceRepositoryBranchCommandInput, CreateSourceRepositoryBranchCommandOutput } from "./commands/CreateSourceRepositoryBranchCommand";
|
|
14
|
-
import { CreateSourceRepositoryCommandInput, CreateSourceRepositoryCommandOutput } from "./commands/CreateSourceRepositoryCommand";
|
|
15
|
-
import { DeleteAccessTokenCommandInput, DeleteAccessTokenCommandOutput } from "./commands/DeleteAccessTokenCommand";
|
|
16
|
-
import { DeleteDevEnvironmentCommandInput, DeleteDevEnvironmentCommandOutput } from "./commands/DeleteDevEnvironmentCommand";
|
|
17
|
-
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
18
|
-
import { DeleteSourceRepositoryCommandInput, DeleteSourceRepositoryCommandOutput } from "./commands/DeleteSourceRepositoryCommand";
|
|
19
|
-
import { DeleteSpaceCommandInput, DeleteSpaceCommandOutput } from "./commands/DeleteSpaceCommand";
|
|
20
|
-
import { GetDevEnvironmentCommandInput, GetDevEnvironmentCommandOutput } from "./commands/GetDevEnvironmentCommand";
|
|
21
|
-
import { GetProjectCommandInput, GetProjectCommandOutput } from "./commands/GetProjectCommand";
|
|
22
|
-
import { GetSourceRepositoryCloneUrlsCommandInput, GetSourceRepositoryCloneUrlsCommandOutput } from "./commands/GetSourceRepositoryCloneUrlsCommand";
|
|
23
|
-
import { GetSourceRepositoryCommandInput, GetSourceRepositoryCommandOutput } from "./commands/GetSourceRepositoryCommand";
|
|
24
|
-
import { GetSpaceCommandInput, GetSpaceCommandOutput } from "./commands/GetSpaceCommand";
|
|
25
|
-
import { GetSubscriptionCommandInput, GetSubscriptionCommandOutput } from "./commands/GetSubscriptionCommand";
|
|
26
|
-
import { GetUserDetailsCommandInput, GetUserDetailsCommandOutput } from "./commands/GetUserDetailsCommand";
|
|
27
|
-
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
28
|
-
import { GetWorkflowRunCommandInput, GetWorkflowRunCommandOutput } from "./commands/GetWorkflowRunCommand";
|
|
29
|
-
import { ListAccessTokensCommandInput, ListAccessTokensCommandOutput } from "./commands/ListAccessTokensCommand";
|
|
30
|
-
import { ListDevEnvironmentsCommandInput, ListDevEnvironmentsCommandOutput } from "./commands/ListDevEnvironmentsCommand";
|
|
31
|
-
import { ListDevEnvironmentSessionsCommandInput, ListDevEnvironmentSessionsCommandOutput } from "./commands/ListDevEnvironmentSessionsCommand";
|
|
32
|
-
import { ListEventLogsCommandInput, ListEventLogsCommandOutput } from "./commands/ListEventLogsCommand";
|
|
33
|
-
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
34
|
-
import { ListSourceRepositoriesCommandInput, ListSourceRepositoriesCommandOutput } from "./commands/ListSourceRepositoriesCommand";
|
|
35
|
-
import { ListSourceRepositoryBranchesCommandInput, ListSourceRepositoryBranchesCommandOutput } from "./commands/ListSourceRepositoryBranchesCommand";
|
|
36
|
-
import { ListSpacesCommandInput, ListSpacesCommandOutput } from "./commands/ListSpacesCommand";
|
|
37
|
-
import { ListWorkflowRunsCommandInput, ListWorkflowRunsCommandOutput } from "./commands/ListWorkflowRunsCommand";
|
|
38
|
-
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
39
|
-
import { StartDevEnvironmentCommandInput, StartDevEnvironmentCommandOutput } from "./commands/StartDevEnvironmentCommand";
|
|
40
|
-
import { StartDevEnvironmentSessionCommandInput, StartDevEnvironmentSessionCommandOutput } from "./commands/StartDevEnvironmentSessionCommand";
|
|
41
|
-
import { StartWorkflowRunCommandInput, StartWorkflowRunCommandOutput } from "./commands/StartWorkflowRunCommand";
|
|
42
|
-
import { StopDevEnvironmentCommandInput, StopDevEnvironmentCommandOutput } from "./commands/StopDevEnvironmentCommand";
|
|
43
|
-
import { StopDevEnvironmentSessionCommandInput, StopDevEnvironmentSessionCommandOutput } from "./commands/StopDevEnvironmentSessionCommand";
|
|
44
|
-
import { UpdateDevEnvironmentCommandInput, UpdateDevEnvironmentCommandOutput } from "./commands/UpdateDevEnvironmentCommand";
|
|
45
|
-
import { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
46
|
-
import { UpdateSpaceCommandInput, UpdateSpaceCommandOutput } from "./commands/UpdateSpaceCommand";
|
|
47
|
-
import { VerifySessionCommandInput, VerifySessionCommandOutput } from "./commands/VerifySessionCommand";
|
|
48
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
import type { CreateAccessTokenCommandInput, CreateAccessTokenCommandOutput } from "./commands/CreateAccessTokenCommand";
|
|
11
|
+
import type { CreateDevEnvironmentCommandInput, CreateDevEnvironmentCommandOutput } from "./commands/CreateDevEnvironmentCommand";
|
|
12
|
+
import type { CreateProjectCommandInput, CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
13
|
+
import type { CreateSourceRepositoryBranchCommandInput, CreateSourceRepositoryBranchCommandOutput } from "./commands/CreateSourceRepositoryBranchCommand";
|
|
14
|
+
import type { CreateSourceRepositoryCommandInput, CreateSourceRepositoryCommandOutput } from "./commands/CreateSourceRepositoryCommand";
|
|
15
|
+
import type { DeleteAccessTokenCommandInput, DeleteAccessTokenCommandOutput } from "./commands/DeleteAccessTokenCommand";
|
|
16
|
+
import type { DeleteDevEnvironmentCommandInput, DeleteDevEnvironmentCommandOutput } from "./commands/DeleteDevEnvironmentCommand";
|
|
17
|
+
import type { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
18
|
+
import type { DeleteSourceRepositoryCommandInput, DeleteSourceRepositoryCommandOutput } from "./commands/DeleteSourceRepositoryCommand";
|
|
19
|
+
import type { DeleteSpaceCommandInput, DeleteSpaceCommandOutput } from "./commands/DeleteSpaceCommand";
|
|
20
|
+
import type { GetDevEnvironmentCommandInput, GetDevEnvironmentCommandOutput } from "./commands/GetDevEnvironmentCommand";
|
|
21
|
+
import type { GetProjectCommandInput, GetProjectCommandOutput } from "./commands/GetProjectCommand";
|
|
22
|
+
import type { GetSourceRepositoryCloneUrlsCommandInput, GetSourceRepositoryCloneUrlsCommandOutput } from "./commands/GetSourceRepositoryCloneUrlsCommand";
|
|
23
|
+
import type { GetSourceRepositoryCommandInput, GetSourceRepositoryCommandOutput } from "./commands/GetSourceRepositoryCommand";
|
|
24
|
+
import type { GetSpaceCommandInput, GetSpaceCommandOutput } from "./commands/GetSpaceCommand";
|
|
25
|
+
import type { GetSubscriptionCommandInput, GetSubscriptionCommandOutput } from "./commands/GetSubscriptionCommand";
|
|
26
|
+
import type { GetUserDetailsCommandInput, GetUserDetailsCommandOutput } from "./commands/GetUserDetailsCommand";
|
|
27
|
+
import type { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
28
|
+
import type { GetWorkflowRunCommandInput, GetWorkflowRunCommandOutput } from "./commands/GetWorkflowRunCommand";
|
|
29
|
+
import type { ListAccessTokensCommandInput, ListAccessTokensCommandOutput } from "./commands/ListAccessTokensCommand";
|
|
30
|
+
import type { ListDevEnvironmentsCommandInput, ListDevEnvironmentsCommandOutput } from "./commands/ListDevEnvironmentsCommand";
|
|
31
|
+
import type { ListDevEnvironmentSessionsCommandInput, ListDevEnvironmentSessionsCommandOutput } from "./commands/ListDevEnvironmentSessionsCommand";
|
|
32
|
+
import type { ListEventLogsCommandInput, ListEventLogsCommandOutput } from "./commands/ListEventLogsCommand";
|
|
33
|
+
import type { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
34
|
+
import type { ListSourceRepositoriesCommandInput, ListSourceRepositoriesCommandOutput } from "./commands/ListSourceRepositoriesCommand";
|
|
35
|
+
import type { ListSourceRepositoryBranchesCommandInput, ListSourceRepositoryBranchesCommandOutput } from "./commands/ListSourceRepositoryBranchesCommand";
|
|
36
|
+
import type { ListSpacesCommandInput, ListSpacesCommandOutput } from "./commands/ListSpacesCommand";
|
|
37
|
+
import type { ListWorkflowRunsCommandInput, ListWorkflowRunsCommandOutput } from "./commands/ListWorkflowRunsCommand";
|
|
38
|
+
import type { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
39
|
+
import type { StartDevEnvironmentCommandInput, StartDevEnvironmentCommandOutput } from "./commands/StartDevEnvironmentCommand";
|
|
40
|
+
import type { StartDevEnvironmentSessionCommandInput, StartDevEnvironmentSessionCommandOutput } from "./commands/StartDevEnvironmentSessionCommand";
|
|
41
|
+
import type { StartWorkflowRunCommandInput, StartWorkflowRunCommandOutput } from "./commands/StartWorkflowRunCommand";
|
|
42
|
+
import type { StopDevEnvironmentCommandInput, StopDevEnvironmentCommandOutput } from "./commands/StopDevEnvironmentCommand";
|
|
43
|
+
import type { StopDevEnvironmentSessionCommandInput, StopDevEnvironmentSessionCommandOutput } from "./commands/StopDevEnvironmentSessionCommand";
|
|
44
|
+
import type { UpdateDevEnvironmentCommandInput, UpdateDevEnvironmentCommandOutput } from "./commands/UpdateDevEnvironmentCommand";
|
|
45
|
+
import type { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
46
|
+
import type { UpdateSpaceCommandInput, UpdateSpaceCommandOutput } from "./commands/UpdateSpaceCommand";
|
|
47
|
+
import type { VerifySessionCommandInput, VerifySessionCommandOutput } from "./commands/VerifySessionCommand";
|
|
48
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
49
49
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
50
50
|
export { __Client };
|
|
51
51
|
/**
|
|
@@ -154,7 +154,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
154
154
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
155
155
|
* @internal
|
|
156
156
|
*/
|
|
157
|
-
defaultUserAgentProvider?:
|
|
157
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
158
158
|
/**
|
|
159
159
|
* Value for how many times a request will be made at most in case of retry.
|
|
160
160
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type HttpAuthScheme, type HttpAuthSchemeParameters, type HttpAuthSchemeParametersProvider, type HttpAuthSchemeProvider, type Provider,
|
|
1
|
+
import { type HandlerExecutionContext, type HttpAuthScheme, type HttpAuthSchemeParameters, type HttpAuthSchemeParametersProvider, type HttpAuthSchemeProvider, type Provider, TokenIdentity, TokenIdentityProvider } from "@smithy/types";
|
|
2
2
|
import type { CodeCatalystClientResolvedConfig } from "../CodeCatalystClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
*/
|
|
180
180
|
export * from "./CodeCatalystClient";
|
|
181
181
|
export * from "./CodeCatalyst";
|
|
182
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
182
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
183
183
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
184
184
|
export type { CodeCatalystExtensionConfiguration } from "./extensionConfiguration";
|
|
185
185
|
export * from "./commands";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _InstanceType, ComparisonOperator, DevEnvironmentSessionType, DevEnvironmentStatus, FilterKey, OperationType, UserType, WorkflowRunMode, WorkflowRunStatus, WorkflowStatus } from "./enums";
|
|
1
|
+
import type { _InstanceType, ComparisonOperator, DevEnvironmentSessionType, DevEnvironmentStatus, FilterKey, OperationType, UserType, WorkflowRunMode, WorkflowRunStatus, WorkflowStatus } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAccessTokensCommandInput, ListAccessTokensCommandOutput } from "../commands/ListAccessTokensCommand";
|
|
3
|
-
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListDevEnvironmentSessionsCommandInput, ListDevEnvironmentSessionsCommandOutput } from "../commands/ListDevEnvironmentSessionsCommand";
|
|
3
|
-
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListDevEnvironmentsCommandInput, ListDevEnvironmentsCommandOutput } from "../commands/ListDevEnvironmentsCommand";
|
|
3
|
-
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListEventLogsCommandInput, ListEventLogsCommandOutput } from "../commands/ListEventLogsCommand";
|
|
3
|
-
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "../commands/ListProjectsCommand";
|
|
3
|
-
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListSourceRepositoriesCommandInput, ListSourceRepositoriesCommandOutput } from "../commands/ListSourceRepositoriesCommand";
|
|
3
|
-
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListSourceRepositoryBranchesCommandInput, ListSourceRepositoryBranchesCommandOutput } from "../commands/ListSourceRepositoryBranchesCommand";
|
|
3
|
-
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListSpacesCommandInput, ListSpacesCommandOutput } from "../commands/ListSpacesCommand";
|
|
3
|
-
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListWorkflowRunsCommandInput, ListWorkflowRunsCommandOutput } from "../commands/ListWorkflowRunsCommand";
|
|
3
|
-
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "../commands/ListWorkflowsCommand";
|
|
3
|
-
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -17,7 +17,7 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
17
17
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
18
18
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
cacheMiddleware?: boolean | undefined;
|
|
20
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
20
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
21
21
|
protocolSettings: {
|
|
22
22
|
defaultNamespace?: string;
|
|
23
23
|
[setting: string]: unknown;
|
|
@@ -26,7 +26,7 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
26
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
27
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
28
28
|
cacheMiddleware?: boolean | undefined;
|
|
29
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
29
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
30
30
|
protocolSettings: {
|
|
31
31
|
defaultNamespace?: string;
|
|
32
32
|
[setting: string]: unknown;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
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").AwsRestJsonProtocol;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
11
11
|
protocolSettings: {
|
|
12
12
|
defaultNamespace?: string;
|
|
13
13
|
[setting: string]: unknown;
|
|
@@ -37,7 +37,6 @@ import {
|
|
|
37
37
|
Provider as __Provider,
|
|
38
38
|
StreamCollector as __StreamCollector,
|
|
39
39
|
UrlParser as __UrlParser,
|
|
40
|
-
Provider,
|
|
41
40
|
UserAgent as __UserAgent,
|
|
42
41
|
} from "@smithy/types";
|
|
43
42
|
import {
|
|
@@ -299,7 +298,7 @@ export interface ClientDefaults
|
|
|
299
298
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
300
299
|
region?: string | __Provider<string>;
|
|
301
300
|
profile?: string;
|
|
302
|
-
defaultUserAgentProvider?:
|
|
301
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
303
302
|
maxAttempts?: number | __Provider<number>;
|
|
304
303
|
retryMode?: string | __Provider<string>;
|
|
305
304
|
logger?: __Logger;
|
|
@@ -25,7 +25,7 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
25
25
|
protocol:
|
|
26
26
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
27
27
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
28
|
-
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
28
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
29
29
|
protocolSettings: {
|
|
30
30
|
defaultNamespace?: string;
|
|
31
31
|
[setting: string]: unknown;
|
|
@@ -38,7 +38,7 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
38
38
|
protocol:
|
|
39
39
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
40
40
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
41
|
-
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
41
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
42
42
|
protocolSettings: {
|
|
43
43
|
defaultNamespace?: string;
|
|
44
44
|
[setting: string]: unknown;
|
|
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
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").AwsRestJsonProtocol;
|
|
15
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
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-codecatalyst",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codecatalyst Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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-codecatalyst",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.26",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
26
26
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "^3.972.27",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
30
|
-
"@aws-sdk/token-providers": "3.
|
|
30
|
+
"@aws-sdk/token-providers": "3.1020.0",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.13",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.13",
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@smithy/core": "^3.23.13",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
38
38
|
"@smithy/hash-node": "^4.2.12",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.45",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.12",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.12",
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.12",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
49
49
|
"@smithy/types": "^4.13.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.12",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
56
56
|
"@smithy/util-endpoints": "^3.3.3",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.12",
|
|
58
58
|
"@smithy/util-retry": "^4.2.12",
|