@aws-sdk/client-codecatalyst 3.369.0 → 3.374.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/README.md +110 -22
  2. package/dist-cjs/CodeCatalyst.js +14 -0
  3. package/dist-cjs/commands/CreateSourceRepositoryCommand.js +45 -0
  4. package/dist-cjs/commands/DeleteProjectCommand.js +45 -0
  5. package/dist-cjs/commands/DeleteSourceRepositoryCommand.js +45 -0
  6. package/dist-cjs/commands/DeleteSpaceCommand.js +45 -0
  7. package/dist-cjs/commands/GetSourceRepositoryCommand.js +45 -0
  8. package/dist-cjs/commands/UpdateProjectCommand.js +45 -0
  9. package/dist-cjs/commands/UpdateSpaceCommand.js +45 -0
  10. package/dist-cjs/commands/index.js +7 -0
  11. package/dist-cjs/protocols/Aws_restJson1.js +508 -2
  12. package/dist-es/CodeCatalyst.js +14 -0
  13. package/dist-es/commands/CreateSourceRepositoryCommand.js +41 -0
  14. package/dist-es/commands/DeleteProjectCommand.js +41 -0
  15. package/dist-es/commands/DeleteSourceRepositoryCommand.js +41 -0
  16. package/dist-es/commands/DeleteSpaceCommand.js +41 -0
  17. package/dist-es/commands/GetSourceRepositoryCommand.js +41 -0
  18. package/dist-es/commands/UpdateProjectCommand.js +41 -0
  19. package/dist-es/commands/UpdateSpaceCommand.js +41 -0
  20. package/dist-es/commands/index.js +7 -0
  21. package/dist-es/protocols/Aws_restJson1.js +492 -0
  22. package/dist-types/CodeCatalyst.d.ts +103 -22
  23. package/dist-types/CodeCatalystClient.d.ts +63 -24
  24. package/dist-types/commands/CreateSourceRepositoryCommand.d.ts +100 -0
  25. package/dist-types/commands/DeleteProjectCommand.d.ts +96 -0
  26. package/dist-types/commands/DeleteSourceRepositoryCommand.d.ts +97 -0
  27. package/dist-types/commands/DeleteSpaceCommand.d.ts +97 -0
  28. package/dist-types/commands/GetSourceRepositoryCommand.d.ts +100 -0
  29. package/dist-types/commands/UpdateProjectCommand.d.ts +98 -0
  30. package/dist-types/commands/UpdateSpaceCommand.d.ts +96 -0
  31. package/dist-types/commands/index.d.ts +7 -0
  32. package/dist-types/index.d.ts +54 -22
  33. package/dist-types/models/models_0.d.ts +250 -8
  34. package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
  35. package/dist-types/ts3.4/CodeCatalyst.d.ts +119 -0
  36. package/dist-types/ts3.4/CodeCatalystClient.d.ts +42 -0
  37. package/dist-types/ts3.4/commands/CreateSourceRepositoryCommand.d.ts +42 -0
  38. package/dist-types/ts3.4/commands/DeleteProjectCommand.d.ts +38 -0
  39. package/dist-types/ts3.4/commands/DeleteSourceRepositoryCommand.d.ts +42 -0
  40. package/dist-types/ts3.4/commands/DeleteSpaceCommand.d.ts +35 -0
  41. package/dist-types/ts3.4/commands/GetSourceRepositoryCommand.d.ts +39 -0
  42. package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +38 -0
  43. package/dist-types/ts3.4/commands/UpdateSpaceCommand.d.ts +35 -0
  44. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  45. package/dist-types/ts3.4/models/models_0.d.ts +71 -0
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
  47. package/package.json +14 -15
@@ -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.369.0",
4
+ "version": "3.374.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,27 +21,27 @@
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.369.0",
25
- "@aws-sdk/middleware-logger": "3.369.0",
26
- "@aws-sdk/middleware-recursion-detection": "3.369.0",
27
- "@aws-sdk/middleware-token": "3.369.0",
28
- "@aws-sdk/middleware-user-agent": "3.369.0",
29
- "@aws-sdk/types": "3.369.0",
30
- "@aws-sdk/util-endpoints": "3.369.0",
31
- "@aws-sdk/util-user-agent-browser": "3.369.0",
32
- "@aws-sdk/util-user-agent-node": "3.369.0",
24
+ "@aws-sdk/middleware-host-header": "3.370.0",
25
+ "@aws-sdk/middleware-logger": "3.370.0",
26
+ "@aws-sdk/middleware-recursion-detection": "3.370.0",
27
+ "@aws-sdk/middleware-token": "3.370.0",
28
+ "@aws-sdk/middleware-user-agent": "3.370.0",
29
+ "@aws-sdk/types": "3.370.0",
30
+ "@aws-sdk/util-endpoints": "3.370.0",
31
+ "@aws-sdk/util-user-agent-browser": "3.370.0",
32
+ "@aws-sdk/util-user-agent-node": "3.370.0",
33
33
  "@smithy/config-resolver": "^1.0.1",
34
34
  "@smithy/fetch-http-handler": "^1.0.1",
35
35
  "@smithy/hash-node": "^1.0.1",
36
36
  "@smithy/invalid-dependency": "^1.0.1",
37
37
  "@smithy/middleware-content-length": "^1.0.1",
38
- "@smithy/middleware-endpoint": "^1.0.1",
39
- "@smithy/middleware-retry": "^1.0.2",
38
+ "@smithy/middleware-endpoint": "^1.0.2",
39
+ "@smithy/middleware-retry": "^1.0.3",
40
40
  "@smithy/middleware-serde": "^1.0.1",
41
41
  "@smithy/middleware-stack": "^1.0.1",
42
42
  "@smithy/node-config-provider": "^1.0.1",
43
43
  "@smithy/node-http-handler": "^1.0.2",
44
- "@smithy/protocol-http": "^1.0.1",
44
+ "@smithy/protocol-http": "^1.1.0",
45
45
  "@smithy/smithy-client": "^1.0.3",
46
46
  "@smithy/types": "^1.1.0",
47
47
  "@smithy/url-parser": "^1.0.1",
@@ -50,12 +50,11 @@
50
50
  "@smithy/util-body-length-node": "^1.0.1",
51
51
  "@smithy/util-defaults-mode-browser": "^1.0.1",
52
52
  "@smithy/util-defaults-mode-node": "^1.0.1",
53
- "@smithy/util-retry": "^1.0.2",
53
+ "@smithy/util-retry": "^1.0.3",
54
54
  "@smithy/util-utf8": "^1.0.1",
55
55
  "tslib": "^2.5.0"
56
56
  },
57
57
  "devDependencies": {
58
- "@aws-sdk/service-client-documentation-generator": "3.310.0",
59
58
  "@smithy/service-client-documentation-generator": "^1.0.1",
60
59
  "@tsconfig/node14": "1.0.3",
61
60
  "@types/node": "^14.14.31",