@aws-sdk/client-codecatalyst 3.370.0 → 3.378.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/README.md +110 -22
- package/dist-cjs/CodeCatalyst.js +14 -0
- package/dist-cjs/commands/CreateSourceRepositoryCommand.js +45 -0
- package/dist-cjs/commands/DeleteProjectCommand.js +45 -0
- package/dist-cjs/commands/DeleteSourceRepositoryCommand.js +45 -0
- package/dist-cjs/commands/DeleteSpaceCommand.js +45 -0
- package/dist-cjs/commands/GetSourceRepositoryCommand.js +45 -0
- package/dist-cjs/commands/UpdateProjectCommand.js +45 -0
- package/dist-cjs/commands/UpdateSpaceCommand.js +45 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +508 -2
- package/dist-es/CodeCatalyst.js +14 -0
- package/dist-es/commands/CreateSourceRepositoryCommand.js +41 -0
- package/dist-es/commands/DeleteProjectCommand.js +41 -0
- package/dist-es/commands/DeleteSourceRepositoryCommand.js +41 -0
- package/dist-es/commands/DeleteSpaceCommand.js +41 -0
- package/dist-es/commands/GetSourceRepositoryCommand.js +41 -0
- package/dist-es/commands/UpdateProjectCommand.js +41 -0
- package/dist-es/commands/UpdateSpaceCommand.js +41 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +492 -0
- package/dist-types/CodeCatalyst.d.ts +103 -22
- package/dist-types/CodeCatalystClient.d.ts +63 -24
- package/dist-types/commands/CreateSourceRepositoryCommand.d.ts +100 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +96 -0
- package/dist-types/commands/DeleteSourceRepositoryCommand.d.ts +97 -0
- package/dist-types/commands/DeleteSpaceCommand.d.ts +97 -0
- package/dist-types/commands/GetSourceRepositoryCommand.d.ts +100 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +98 -0
- package/dist-types/commands/UpdateSpaceCommand.d.ts +96 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/index.d.ts +54 -22
- package/dist-types/models/models_0.d.ts +250 -8
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/CodeCatalyst.d.ts +119 -0
- package/dist-types/ts3.4/CodeCatalystClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateSourceRepositoryCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteProjectCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteSourceRepositoryCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteSpaceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetSourceRepositoryCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateSpaceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +71 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +33 -33
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
CreateSourceRepositoryBranchCommandInput,
|
|
20
20
|
CreateSourceRepositoryBranchCommandOutput,
|
|
21
21
|
} from "../commands/CreateSourceRepositoryBranchCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateSourceRepositoryCommandInput,
|
|
24
|
+
CreateSourceRepositoryCommandOutput,
|
|
25
|
+
} from "../commands/CreateSourceRepositoryCommand";
|
|
22
26
|
import {
|
|
23
27
|
DeleteAccessTokenCommandInput,
|
|
24
28
|
DeleteAccessTokenCommandOutput,
|
|
@@ -27,6 +31,18 @@ import {
|
|
|
27
31
|
DeleteDevEnvironmentCommandInput,
|
|
28
32
|
DeleteDevEnvironmentCommandOutput,
|
|
29
33
|
} from "../commands/DeleteDevEnvironmentCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteProjectCommandInput,
|
|
36
|
+
DeleteProjectCommandOutput,
|
|
37
|
+
} from "../commands/DeleteProjectCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteSourceRepositoryCommandInput,
|
|
40
|
+
DeleteSourceRepositoryCommandOutput,
|
|
41
|
+
} from "../commands/DeleteSourceRepositoryCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteSpaceCommandInput,
|
|
44
|
+
DeleteSpaceCommandOutput,
|
|
45
|
+
} from "../commands/DeleteSpaceCommand";
|
|
30
46
|
import {
|
|
31
47
|
GetDevEnvironmentCommandInput,
|
|
32
48
|
GetDevEnvironmentCommandOutput,
|
|
@@ -39,6 +55,10 @@ import {
|
|
|
39
55
|
GetSourceRepositoryCloneUrlsCommandInput,
|
|
40
56
|
GetSourceRepositoryCloneUrlsCommandOutput,
|
|
41
57
|
} from "../commands/GetSourceRepositoryCloneUrlsCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetSourceRepositoryCommandInput,
|
|
60
|
+
GetSourceRepositoryCommandOutput,
|
|
61
|
+
} from "../commands/GetSourceRepositoryCommand";
|
|
42
62
|
import {
|
|
43
63
|
GetSpaceCommandInput,
|
|
44
64
|
GetSpaceCommandOutput,
|
|
@@ -103,6 +123,14 @@ import {
|
|
|
103
123
|
UpdateDevEnvironmentCommandInput,
|
|
104
124
|
UpdateDevEnvironmentCommandOutput,
|
|
105
125
|
} from "../commands/UpdateDevEnvironmentCommand";
|
|
126
|
+
import {
|
|
127
|
+
UpdateProjectCommandInput,
|
|
128
|
+
UpdateProjectCommandOutput,
|
|
129
|
+
} from "../commands/UpdateProjectCommand";
|
|
130
|
+
import {
|
|
131
|
+
UpdateSpaceCommandInput,
|
|
132
|
+
UpdateSpaceCommandOutput,
|
|
133
|
+
} from "../commands/UpdateSpaceCommand";
|
|
106
134
|
import {
|
|
107
135
|
VerifySessionCommandInput,
|
|
108
136
|
VerifySessionCommandOutput,
|
|
@@ -119,6 +147,10 @@ export declare const se_CreateProjectCommand: (
|
|
|
119
147
|
input: CreateProjectCommandInput,
|
|
120
148
|
context: __SerdeContext
|
|
121
149
|
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_CreateSourceRepositoryCommand: (
|
|
151
|
+
input: CreateSourceRepositoryCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
122
154
|
export declare const se_CreateSourceRepositoryBranchCommand: (
|
|
123
155
|
input: CreateSourceRepositoryBranchCommandInput,
|
|
124
156
|
context: __SerdeContext
|
|
@@ -131,6 +163,18 @@ export declare const se_DeleteDevEnvironmentCommand: (
|
|
|
131
163
|
input: DeleteDevEnvironmentCommandInput,
|
|
132
164
|
context: __SerdeContext
|
|
133
165
|
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const se_DeleteProjectCommand: (
|
|
167
|
+
input: DeleteProjectCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_DeleteSourceRepositoryCommand: (
|
|
171
|
+
input: DeleteSourceRepositoryCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_DeleteSpaceCommand: (
|
|
175
|
+
input: DeleteSpaceCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
134
178
|
export declare const se_GetDevEnvironmentCommand: (
|
|
135
179
|
input: GetDevEnvironmentCommandInput,
|
|
136
180
|
context: __SerdeContext
|
|
@@ -139,6 +183,10 @@ export declare const se_GetProjectCommand: (
|
|
|
139
183
|
input: GetProjectCommandInput,
|
|
140
184
|
context: __SerdeContext
|
|
141
185
|
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const se_GetSourceRepositoryCommand: (
|
|
187
|
+
input: GetSourceRepositoryCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
142
190
|
export declare const se_GetSourceRepositoryCloneUrlsCommand: (
|
|
143
191
|
input: GetSourceRepositoryCloneUrlsCommandInput,
|
|
144
192
|
context: __SerdeContext
|
|
@@ -207,6 +255,14 @@ export declare const se_UpdateDevEnvironmentCommand: (
|
|
|
207
255
|
input: UpdateDevEnvironmentCommandInput,
|
|
208
256
|
context: __SerdeContext
|
|
209
257
|
) => Promise<__HttpRequest>;
|
|
258
|
+
export declare const se_UpdateProjectCommand: (
|
|
259
|
+
input: UpdateProjectCommandInput,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<__HttpRequest>;
|
|
262
|
+
export declare const se_UpdateSpaceCommand: (
|
|
263
|
+
input: UpdateSpaceCommandInput,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<__HttpRequest>;
|
|
210
266
|
export declare const se_VerifySessionCommand: (
|
|
211
267
|
input: VerifySessionCommandInput,
|
|
212
268
|
context: __SerdeContext
|
|
@@ -223,6 +279,10 @@ export declare const de_CreateProjectCommand: (
|
|
|
223
279
|
output: __HttpResponse,
|
|
224
280
|
context: __SerdeContext
|
|
225
281
|
) => Promise<CreateProjectCommandOutput>;
|
|
282
|
+
export declare const de_CreateSourceRepositoryCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<CreateSourceRepositoryCommandOutput>;
|
|
226
286
|
export declare const de_CreateSourceRepositoryBranchCommand: (
|
|
227
287
|
output: __HttpResponse,
|
|
228
288
|
context: __SerdeContext
|
|
@@ -235,6 +295,18 @@ export declare const de_DeleteDevEnvironmentCommand: (
|
|
|
235
295
|
output: __HttpResponse,
|
|
236
296
|
context: __SerdeContext
|
|
237
297
|
) => Promise<DeleteDevEnvironmentCommandOutput>;
|
|
298
|
+
export declare const de_DeleteProjectCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<DeleteProjectCommandOutput>;
|
|
302
|
+
export declare const de_DeleteSourceRepositoryCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<DeleteSourceRepositoryCommandOutput>;
|
|
306
|
+
export declare const de_DeleteSpaceCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<DeleteSpaceCommandOutput>;
|
|
238
310
|
export declare const de_GetDevEnvironmentCommand: (
|
|
239
311
|
output: __HttpResponse,
|
|
240
312
|
context: __SerdeContext
|
|
@@ -243,6 +315,10 @@ export declare const de_GetProjectCommand: (
|
|
|
243
315
|
output: __HttpResponse,
|
|
244
316
|
context: __SerdeContext
|
|
245
317
|
) => Promise<GetProjectCommandOutput>;
|
|
318
|
+
export declare const de_GetSourceRepositoryCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<GetSourceRepositoryCommandOutput>;
|
|
246
322
|
export declare const de_GetSourceRepositoryCloneUrlsCommand: (
|
|
247
323
|
output: __HttpResponse,
|
|
248
324
|
context: __SerdeContext
|
|
@@ -311,6 +387,14 @@ export declare const de_UpdateDevEnvironmentCommand: (
|
|
|
311
387
|
output: __HttpResponse,
|
|
312
388
|
context: __SerdeContext
|
|
313
389
|
) => Promise<UpdateDevEnvironmentCommandOutput>;
|
|
390
|
+
export declare const de_UpdateProjectCommand: (
|
|
391
|
+
output: __HttpResponse,
|
|
392
|
+
context: __SerdeContext
|
|
393
|
+
) => Promise<UpdateProjectCommandOutput>;
|
|
394
|
+
export declare const de_UpdateSpaceCommand: (
|
|
395
|
+
output: __HttpResponse,
|
|
396
|
+
context: __SerdeContext
|
|
397
|
+
) => Promise<UpdateSpaceCommandOutput>;
|
|
314
398
|
export declare const de_VerifySessionCommand: (
|
|
315
399
|
output: __HttpResponse,
|
|
316
400
|
context: __SerdeContext
|
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.378.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,41 +21,41 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
25
|
-
"@aws-sdk/middleware-logger": "3.
|
|
26
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
-
"@aws-sdk/middleware-token": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/types": "3.
|
|
30
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
-
"@smithy/config-resolver": "^
|
|
34
|
-
"@smithy/fetch-http-handler": "^
|
|
35
|
-
"@smithy/hash-node": "^
|
|
36
|
-
"@smithy/invalid-dependency": "^
|
|
37
|
-
"@smithy/middleware-content-length": "^
|
|
38
|
-
"@smithy/middleware-endpoint": "^
|
|
39
|
-
"@smithy/middleware-retry": "^
|
|
40
|
-
"@smithy/middleware-serde": "^
|
|
41
|
-
"@smithy/middleware-stack": "^
|
|
42
|
-
"@smithy/node-config-provider": "^
|
|
43
|
-
"@smithy/node-http-handler": "^
|
|
44
|
-
"@smithy/protocol-http": "^
|
|
45
|
-
"@smithy/smithy-client": "^
|
|
46
|
-
"@smithy/types": "^
|
|
47
|
-
"@smithy/url-parser": "^
|
|
48
|
-
"@smithy/util-base64": "^
|
|
49
|
-
"@smithy/util-body-length-browser": "^
|
|
50
|
-
"@smithy/util-body-length-node": "^
|
|
51
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
52
|
-
"@smithy/util-defaults-mode-node": "^
|
|
53
|
-
"@smithy/util-retry": "^
|
|
54
|
-
"@smithy/util-utf8": "^
|
|
24
|
+
"@aws-sdk/middleware-host-header": "3.378.0",
|
|
25
|
+
"@aws-sdk/middleware-logger": "3.378.0",
|
|
26
|
+
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
27
|
+
"@aws-sdk/middleware-token": "3.378.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.378.0",
|
|
29
|
+
"@aws-sdk/types": "3.378.0",
|
|
30
|
+
"@aws-sdk/util-endpoints": "3.378.0",
|
|
31
|
+
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
33
|
+
"@smithy/config-resolver": "^2.0.1",
|
|
34
|
+
"@smithy/fetch-http-handler": "^2.0.1",
|
|
35
|
+
"@smithy/hash-node": "^2.0.1",
|
|
36
|
+
"@smithy/invalid-dependency": "^2.0.1",
|
|
37
|
+
"@smithy/middleware-content-length": "^2.0.1",
|
|
38
|
+
"@smithy/middleware-endpoint": "^2.0.1",
|
|
39
|
+
"@smithy/middleware-retry": "^2.0.1",
|
|
40
|
+
"@smithy/middleware-serde": "^2.0.1",
|
|
41
|
+
"@smithy/middleware-stack": "^2.0.0",
|
|
42
|
+
"@smithy/node-config-provider": "^2.0.1",
|
|
43
|
+
"@smithy/node-http-handler": "^2.0.1",
|
|
44
|
+
"@smithy/protocol-http": "^2.0.1",
|
|
45
|
+
"@smithy/smithy-client": "^2.0.1",
|
|
46
|
+
"@smithy/types": "^2.0.2",
|
|
47
|
+
"@smithy/url-parser": "^2.0.1",
|
|
48
|
+
"@smithy/util-base64": "^2.0.0",
|
|
49
|
+
"@smithy/util-body-length-browser": "^2.0.0",
|
|
50
|
+
"@smithy/util-body-length-node": "^2.0.0",
|
|
51
|
+
"@smithy/util-defaults-mode-browser": "^2.0.1",
|
|
52
|
+
"@smithy/util-defaults-mode-node": "^2.0.1",
|
|
53
|
+
"@smithy/util-retry": "^2.0.0",
|
|
54
|
+
"@smithy/util-utf8": "^2.0.0",
|
|
55
55
|
"tslib": "^2.5.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@smithy/service-client-documentation-generator": "^
|
|
58
|
+
"@smithy/service-client-documentation-generator": "^2.0.0",
|
|
59
59
|
"@tsconfig/node14": "1.0.3",
|
|
60
60
|
"@types/node": "^14.14.31",
|
|
61
61
|
"concurrently": "7.0.0",
|