@aws-sdk/client-codecatalyst 3.1019.0 → 3.1021.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-es/CodeCatalyst.js +5 -5
- 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/ts3.4/CodeCatalystClient.d.ts +1 -2
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/package.json +14 -14
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";
|
|
@@ -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
|
*/
|
|
@@ -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;
|
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.1021.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,41 +21,41 @@
|
|
|
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.28",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
30
|
-
"@aws-sdk/token-providers": "3.
|
|
30
|
+
"@aws-sdk/token-providers": "3.1021.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.14",
|
|
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.46",
|
|
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
|
-
"@smithy/util-retry": "^4.2.
|
|
58
|
+
"@smithy/util-retry": "^4.2.13",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|