@aws-sdk/client-sfn 3.296.0 → 3.297.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-types/SFN.d.ts +27 -0
- package/dist-types/SFNClient.d.ts +24 -4
- package/dist-types/commands/CreateActivityCommand.d.ts +16 -0
- package/dist-types/commands/CreateStateMachineCommand.d.ts +16 -0
- package/dist-types/commands/DeleteActivityCommand.d.ts +16 -0
- package/dist-types/commands/DeleteStateMachineCommand.d.ts +16 -0
- package/dist-types/commands/DescribeActivityCommand.d.ts +16 -0
- package/dist-types/commands/DescribeExecutionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeMapRunCommand.d.ts +16 -0
- package/dist-types/commands/DescribeStateMachineCommand.d.ts +16 -0
- package/dist-types/commands/DescribeStateMachineForExecutionCommand.d.ts +16 -0
- package/dist-types/commands/GetActivityTaskCommand.d.ts +16 -0
- package/dist-types/commands/GetExecutionHistoryCommand.d.ts +16 -0
- package/dist-types/commands/ListActivitiesCommand.d.ts +16 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListMapRunsCommand.d.ts +16 -0
- package/dist-types/commands/ListStateMachinesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/SendTaskFailureCommand.d.ts +16 -0
- package/dist-types/commands/SendTaskHeartbeatCommand.d.ts +16 -0
- package/dist-types/commands/SendTaskSuccessCommand.d.ts +16 -0
- package/dist-types/commands/StartExecutionCommand.d.ts +16 -0
- package/dist-types/commands/StartSyncExecutionCommand.d.ts +16 -0
- package/dist-types/commands/StopExecutionCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMapRunCommand.d.ts +16 -0
- package/dist-types/commands/UpdateStateMachineCommand.d.ts +16 -0
- package/dist-types/models/SFNServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +270 -14
- package/dist-types/pagination/GetExecutionHistoryPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListActivitiesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMapRunsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListStateMachinesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { GetExecutionHistoryCommandInput, GetExecutionHistoryCommandOutput } from "../commands/GetExecutionHistoryCommand";
|
|
3
3
|
import { SFNPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateGetExecutionHistory(config: SFNPaginationConfiguration, input: GetExecutionHistoryCommandInput, ...additionalArguments: any): Paginator<GetExecutionHistoryCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListActivitiesCommandInput, ListActivitiesCommandOutput } from "../commands/ListActivitiesCommand";
|
|
3
3
|
import { SFNPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListActivities(config: SFNPaginationConfiguration, input: ListActivitiesCommandInput, ...additionalArguments: any): Paginator<ListActivitiesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "../commands/ListExecutionsCommand";
|
|
3
3
|
import { SFNPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListExecutions(config: SFNPaginationConfiguration, input: ListExecutionsCommandInput, ...additionalArguments: any): Paginator<ListExecutionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListMapRunsCommandInput, ListMapRunsCommandOutput } from "../commands/ListMapRunsCommand";
|
|
3
3
|
import { SFNPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListMapRuns(config: SFNPaginationConfiguration, input: ListMapRunsCommandInput, ...additionalArguments: any): Paginator<ListMapRunsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListStateMachinesCommandInput, ListStateMachinesCommandOutput } from "../commands/ListStateMachinesCommand";
|
|
3
3
|
import { SFNPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListStateMachines(config: SFNPaginationConfiguration, input: ListStateMachinesCommandInput, ...additionalArguments: any): Paginator<ListStateMachinesCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sfn",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sfn Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.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",
|
|
@@ -20,9 +20,9 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|