@aws-sdk/client-codepipeline 3.563.0 → 3.564.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 +8 -0
- package/dist-cjs/index.js +119 -0
- package/dist-es/CodePipeline.js +2 -0
- package/dist-es/commands/RollbackStageCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +33 -0
- package/dist-es/protocols/Aws_json1_1.js +49 -1
- package/dist-types/CodePipeline.d.ts +7 -0
- package/dist-types/CodePipelineClient.d.ts +3 -2
- package/dist-types/commands/CreatePipelineCommand.d.ts +6 -0
- package/dist-types/commands/GetPipelineCommand.d.ts +3 -0
- package/dist-types/commands/GetPipelineExecutionCommand.d.ts +5 -1
- package/dist-types/commands/GetPipelineStateCommand.d.ts +3 -0
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +11 -1
- package/dist-types/commands/RollbackStageCommand.d.ts +86 -0
- package/dist-types/commands/UpdatePipelineCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +168 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/CodePipeline.d.ts +17 -0
- package/dist-types/ts3.4/CodePipelineClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/RollbackStageCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +56 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +2 -3
|
@@ -135,6 +135,10 @@ import {
|
|
|
135
135
|
RetryStageExecutionCommandInput,
|
|
136
136
|
RetryStageExecutionCommandOutput,
|
|
137
137
|
} from "../commands/RetryStageExecutionCommand";
|
|
138
|
+
import {
|
|
139
|
+
RollbackStageCommandInput,
|
|
140
|
+
RollbackStageCommandOutput,
|
|
141
|
+
} from "../commands/RollbackStageCommand";
|
|
138
142
|
import {
|
|
139
143
|
StartPipelineExecutionCommandInput,
|
|
140
144
|
StartPipelineExecutionCommandOutput,
|
|
@@ -291,6 +295,10 @@ export declare const se_RetryStageExecutionCommand: (
|
|
|
291
295
|
input: RetryStageExecutionCommandInput,
|
|
292
296
|
context: __SerdeContext
|
|
293
297
|
) => Promise<__HttpRequest>;
|
|
298
|
+
export declare const se_RollbackStageCommand: (
|
|
299
|
+
input: RollbackStageCommandInput,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<__HttpRequest>;
|
|
294
302
|
export declare const se_StartPipelineExecutionCommand: (
|
|
295
303
|
input: StartPipelineExecutionCommandInput,
|
|
296
304
|
context: __SerdeContext
|
|
@@ -447,6 +455,10 @@ export declare const de_RetryStageExecutionCommand: (
|
|
|
447
455
|
output: __HttpResponse,
|
|
448
456
|
context: __SerdeContext
|
|
449
457
|
) => Promise<RetryStageExecutionCommandOutput>;
|
|
458
|
+
export declare const de_RollbackStageCommand: (
|
|
459
|
+
output: __HttpResponse,
|
|
460
|
+
context: __SerdeContext
|
|
461
|
+
) => Promise<RollbackStageCommandOutput>;
|
|
450
462
|
export declare const de_StartPipelineExecutionCommand: (
|
|
451
463
|
output: __HttpResponse,
|
|
452
464
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codepipeline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codepipeline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.564.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-codepipeline",
|
|
@@ -20,9 +20,8 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.556.0",
|
|
24
23
|
"@aws-sdk/core": "3.556.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.564.0",
|
|
26
25
|
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
26
|
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
27
|
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|