You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@aws-sdk/client-swf

Package Overview
Dependencies
Maintainers
5
Versions
383
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.477.0 to 3.478.0

26

dist-cjs/pagination/GetWorkflowExecutionHistoryPaginator.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.paginateGetWorkflowExecutionHistory = void 0;
const core_1 = require("@smithy/core");
const GetWorkflowExecutionHistoryCommand_1 = require("../commands/GetWorkflowExecutionHistoryCommand");
const SWFClient_1 = require("../SWFClient");
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new GetWorkflowExecutionHistoryCommand_1.GetWorkflowExecutionHistoryCommand(input), ...args);
};
async function* paginateGetWorkflowExecutionHistory(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient_1.SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
exports.paginateGetWorkflowExecutionHistory = paginateGetWorkflowExecutionHistory;
exports.paginateGetWorkflowExecutionHistory = (0, core_1.createPaginator)(SWFClient_1.SWFClient, GetWorkflowExecutionHistoryCommand_1.GetWorkflowExecutionHistoryCommand, "nextPageToken", "nextPageToken", "maximumPageSize");
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.paginateListActivityTypes = void 0;
const core_1 = require("@smithy/core");
const ListActivityTypesCommand_1 = require("../commands/ListActivityTypesCommand");
const SWFClient_1 = require("../SWFClient");
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new ListActivityTypesCommand_1.ListActivityTypesCommand(input), ...args);
};
async function* paginateListActivityTypes(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient_1.SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
exports.paginateListActivityTypes = paginateListActivityTypes;
exports.paginateListActivityTypes = (0, core_1.createPaginator)(SWFClient_1.SWFClient, ListActivityTypesCommand_1.ListActivityTypesCommand, "nextPageToken", "nextPageToken", "maximumPageSize");
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.paginateListClosedWorkflowExecutions = void 0;
const core_1 = require("@smithy/core");
const ListClosedWorkflowExecutionsCommand_1 = require("../commands/ListClosedWorkflowExecutionsCommand");
const SWFClient_1 = require("../SWFClient");
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new ListClosedWorkflowExecutionsCommand_1.ListClosedWorkflowExecutionsCommand(input), ...args);
};
async function* paginateListClosedWorkflowExecutions(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient_1.SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
exports.paginateListClosedWorkflowExecutions = paginateListClosedWorkflowExecutions;
exports.paginateListClosedWorkflowExecutions = (0, core_1.createPaginator)(SWFClient_1.SWFClient, ListClosedWorkflowExecutionsCommand_1.ListClosedWorkflowExecutionsCommand, "nextPageToken", "nextPageToken", "maximumPageSize");
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.paginateListDomains = void 0;
const core_1 = require("@smithy/core");
const ListDomainsCommand_1 = require("../commands/ListDomainsCommand");
const SWFClient_1 = require("../SWFClient");
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new ListDomainsCommand_1.ListDomainsCommand(input), ...args);
};
async function* paginateListDomains(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient_1.SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
exports.paginateListDomains = paginateListDomains;
exports.paginateListDomains = (0, core_1.createPaginator)(SWFClient_1.SWFClient, ListDomainsCommand_1.ListDomainsCommand, "nextPageToken", "nextPageToken", "maximumPageSize");
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.paginateListOpenWorkflowExecutions = void 0;
const core_1 = require("@smithy/core");
const ListOpenWorkflowExecutionsCommand_1 = require("../commands/ListOpenWorkflowExecutionsCommand");
const SWFClient_1 = require("../SWFClient");
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new ListOpenWorkflowExecutionsCommand_1.ListOpenWorkflowExecutionsCommand(input), ...args);
};
async function* paginateListOpenWorkflowExecutions(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient_1.SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
exports.paginateListOpenWorkflowExecutions = paginateListOpenWorkflowExecutions;
exports.paginateListOpenWorkflowExecutions = (0, core_1.createPaginator)(SWFClient_1.SWFClient, ListOpenWorkflowExecutionsCommand_1.ListOpenWorkflowExecutionsCommand, "nextPageToken", "nextPageToken", "maximumPageSize");
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.paginateListWorkflowTypes = void 0;
const core_1 = require("@smithy/core");
const ListWorkflowTypesCommand_1 = require("../commands/ListWorkflowTypesCommand");
const SWFClient_1 = require("../SWFClient");
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new ListWorkflowTypesCommand_1.ListWorkflowTypesCommand(input), ...args);
};
async function* paginateListWorkflowTypes(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient_1.SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
exports.paginateListWorkflowTypes = paginateListWorkflowTypes;
exports.paginateListWorkflowTypes = (0, core_1.createPaginator)(SWFClient_1.SWFClient, ListWorkflowTypesCommand_1.ListWorkflowTypesCommand, "nextPageToken", "nextPageToken", "maximumPageSize");
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.paginatePollForDecisionTask = void 0;
const core_1 = require("@smithy/core");
const PollForDecisionTaskCommand_1 = require("../commands/PollForDecisionTaskCommand");
const SWFClient_1 = require("../SWFClient");
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new PollForDecisionTaskCommand_1.PollForDecisionTaskCommand(input), ...args);
};
async function* paginatePollForDecisionTask(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient_1.SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
exports.paginatePollForDecisionTask = paginatePollForDecisionTask;
exports.paginatePollForDecisionTask = (0, core_1.createPaginator)(SWFClient_1.SWFClient, PollForDecisionTaskCommand_1.PollForDecisionTaskCommand, "nextPageToken", "nextPageToken", "maximumPageSize");

@@ -0,25 +1,4 @@

import { createPaginator } from "@smithy/core";
import { GetWorkflowExecutionHistoryCommand, } from "../commands/GetWorkflowExecutionHistoryCommand";
import { SWFClient } from "../SWFClient";
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new GetWorkflowExecutionHistoryCommand(input), ...args);
};
export async function* paginateGetWorkflowExecutionHistory(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
export const paginateGetWorkflowExecutionHistory = createPaginator(SWFClient, GetWorkflowExecutionHistoryCommand, "nextPageToken", "nextPageToken", "maximumPageSize");

@@ -0,25 +1,4 @@

import { createPaginator } from "@smithy/core";
import { ListActivityTypesCommand, } from "../commands/ListActivityTypesCommand";
import { SWFClient } from "../SWFClient";
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new ListActivityTypesCommand(input), ...args);
};
export async function* paginateListActivityTypes(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
export const paginateListActivityTypes = createPaginator(SWFClient, ListActivityTypesCommand, "nextPageToken", "nextPageToken", "maximumPageSize");

@@ -0,25 +1,4 @@

import { createPaginator } from "@smithy/core";
import { ListClosedWorkflowExecutionsCommand, } from "../commands/ListClosedWorkflowExecutionsCommand";
import { SWFClient } from "../SWFClient";
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new ListClosedWorkflowExecutionsCommand(input), ...args);
};
export async function* paginateListClosedWorkflowExecutions(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
export const paginateListClosedWorkflowExecutions = createPaginator(SWFClient, ListClosedWorkflowExecutionsCommand, "nextPageToken", "nextPageToken", "maximumPageSize");

@@ -0,25 +1,4 @@

import { createPaginator } from "@smithy/core";
import { ListDomainsCommand } from "../commands/ListDomainsCommand";
import { SWFClient } from "../SWFClient";
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new ListDomainsCommand(input), ...args);
};
export async function* paginateListDomains(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
export const paginateListDomains = createPaginator(SWFClient, ListDomainsCommand, "nextPageToken", "nextPageToken", "maximumPageSize");

@@ -0,25 +1,4 @@

import { createPaginator } from "@smithy/core";
import { ListOpenWorkflowExecutionsCommand, } from "../commands/ListOpenWorkflowExecutionsCommand";
import { SWFClient } from "../SWFClient";
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new ListOpenWorkflowExecutionsCommand(input), ...args);
};
export async function* paginateListOpenWorkflowExecutions(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
export const paginateListOpenWorkflowExecutions = createPaginator(SWFClient, ListOpenWorkflowExecutionsCommand, "nextPageToken", "nextPageToken", "maximumPageSize");

@@ -0,25 +1,4 @@

import { createPaginator } from "@smithy/core";
import { ListWorkflowTypesCommand, } from "../commands/ListWorkflowTypesCommand";
import { SWFClient } from "../SWFClient";
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new ListWorkflowTypesCommand(input), ...args);
};
export async function* paginateListWorkflowTypes(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
export const paginateListWorkflowTypes = createPaginator(SWFClient, ListWorkflowTypesCommand, "nextPageToken", "nextPageToken", "maximumPageSize");

@@ -0,25 +1,4 @@

import { createPaginator } from "@smithy/core";
import { PollForDecisionTaskCommand, } from "../commands/PollForDecisionTaskCommand";
import { SWFClient } from "../SWFClient";
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new PollForDecisionTaskCommand(input), ...args);
};
export async function* paginatePollForDecisionTask(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.nextPageToken = token;
input["maximumPageSize"] = config.pageSize;
if (config.client instanceof SWFClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SWF | SWFClient");
}
yield page;
const prevToken = token;
token = page.nextPageToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}
export const paginatePollForDecisionTask = createPaginator(SWFClient, PollForDecisionTaskCommand, "nextPageToken", "nextPageToken", "maximumPageSize");

2

dist-types/pagination/GetWorkflowExecutionHistoryPaginator.d.ts

@@ -7,2 +7,2 @@ import { Paginator } from "@smithy/types";

*/
export declare function paginateGetWorkflowExecutionHistory(config: SWFPaginationConfiguration, input: GetWorkflowExecutionHistoryCommandInput, ...additionalArguments: any): Paginator<GetWorkflowExecutionHistoryCommandOutput>;
export declare const paginateGetWorkflowExecutionHistory: (config: SWFPaginationConfiguration, input: GetWorkflowExecutionHistoryCommandInput, ...rest: any[]) => Paginator<GetWorkflowExecutionHistoryCommandOutput>;

@@ -7,2 +7,2 @@ import { Paginator } from "@smithy/types";

*/
export declare function paginateListActivityTypes(config: SWFPaginationConfiguration, input: ListActivityTypesCommandInput, ...additionalArguments: any): Paginator<ListActivityTypesCommandOutput>;
export declare const paginateListActivityTypes: (config: SWFPaginationConfiguration, input: ListActivityTypesCommandInput, ...rest: any[]) => Paginator<ListActivityTypesCommandOutput>;

@@ -7,2 +7,2 @@ import { Paginator } from "@smithy/types";

*/
export declare function paginateListClosedWorkflowExecutions(config: SWFPaginationConfiguration, input: ListClosedWorkflowExecutionsCommandInput, ...additionalArguments: any): Paginator<ListClosedWorkflowExecutionsCommandOutput>;
export declare const paginateListClosedWorkflowExecutions: (config: SWFPaginationConfiguration, input: ListClosedWorkflowExecutionsCommandInput, ...rest: any[]) => Paginator<ListClosedWorkflowExecutionsCommandOutput>;

@@ -7,2 +7,2 @@ import { Paginator } from "@smithy/types";

*/
export declare function paginateListDomains(config: SWFPaginationConfiguration, input: ListDomainsCommandInput, ...additionalArguments: any): Paginator<ListDomainsCommandOutput>;
export declare const paginateListDomains: (config: SWFPaginationConfiguration, input: ListDomainsCommandInput, ...rest: any[]) => Paginator<ListDomainsCommandOutput>;

@@ -7,2 +7,2 @@ import { Paginator } from "@smithy/types";

*/
export declare function paginateListOpenWorkflowExecutions(config: SWFPaginationConfiguration, input: ListOpenWorkflowExecutionsCommandInput, ...additionalArguments: any): Paginator<ListOpenWorkflowExecutionsCommandOutput>;
export declare const paginateListOpenWorkflowExecutions: (config: SWFPaginationConfiguration, input: ListOpenWorkflowExecutionsCommandInput, ...rest: any[]) => Paginator<ListOpenWorkflowExecutionsCommandOutput>;

@@ -7,2 +7,2 @@ import { Paginator } from "@smithy/types";

*/
export declare function paginateListWorkflowTypes(config: SWFPaginationConfiguration, input: ListWorkflowTypesCommandInput, ...additionalArguments: any): Paginator<ListWorkflowTypesCommandOutput>;
export declare const paginateListWorkflowTypes: (config: SWFPaginationConfiguration, input: ListWorkflowTypesCommandInput, ...rest: any[]) => Paginator<ListWorkflowTypesCommandOutput>;

@@ -7,2 +7,2 @@ import { Paginator } from "@smithy/types";

*/
export declare function paginatePollForDecisionTask(config: SWFPaginationConfiguration, input: PollForDecisionTaskCommandInput, ...additionalArguments: any): Paginator<PollForDecisionTaskCommandOutput>;
export declare const paginatePollForDecisionTask: (config: SWFPaginationConfiguration, input: PollForDecisionTaskCommandInput, ...rest: any[]) => Paginator<PollForDecisionTaskCommandOutput>;

@@ -7,6 +7,6 @@ import { Paginator } from "@smithy/types";

import { SWFPaginationConfiguration } from "./Interfaces";
export declare function paginateGetWorkflowExecutionHistory(
export declare const paginateGetWorkflowExecutionHistory: (
config: SWFPaginationConfiguration,
input: GetWorkflowExecutionHistoryCommandInput,
...additionalArguments: any
): Paginator<GetWorkflowExecutionHistoryCommandOutput>;
...rest: any[]
) => Paginator<GetWorkflowExecutionHistoryCommandOutput>;

@@ -7,6 +7,6 @@ import { Paginator } from "@smithy/types";

import { SWFPaginationConfiguration } from "./Interfaces";
export declare function paginateListActivityTypes(
export declare const paginateListActivityTypes: (
config: SWFPaginationConfiguration,
input: ListActivityTypesCommandInput,
...additionalArguments: any
): Paginator<ListActivityTypesCommandOutput>;
...rest: any[]
) => Paginator<ListActivityTypesCommandOutput>;

@@ -7,6 +7,6 @@ import { Paginator } from "@smithy/types";

import { SWFPaginationConfiguration } from "./Interfaces";
export declare function paginateListClosedWorkflowExecutions(
export declare const paginateListClosedWorkflowExecutions: (
config: SWFPaginationConfiguration,
input: ListClosedWorkflowExecutionsCommandInput,
...additionalArguments: any
): Paginator<ListClosedWorkflowExecutionsCommandOutput>;
...rest: any[]
) => Paginator<ListClosedWorkflowExecutionsCommandOutput>;

@@ -7,6 +7,6 @@ import { Paginator } from "@smithy/types";

import { SWFPaginationConfiguration } from "./Interfaces";
export declare function paginateListDomains(
export declare const paginateListDomains: (
config: SWFPaginationConfiguration,
input: ListDomainsCommandInput,
...additionalArguments: any
): Paginator<ListDomainsCommandOutput>;
...rest: any[]
) => Paginator<ListDomainsCommandOutput>;

@@ -7,6 +7,6 @@ import { Paginator } from "@smithy/types";

import { SWFPaginationConfiguration } from "./Interfaces";
export declare function paginateListOpenWorkflowExecutions(
export declare const paginateListOpenWorkflowExecutions: (
config: SWFPaginationConfiguration,
input: ListOpenWorkflowExecutionsCommandInput,
...additionalArguments: any
): Paginator<ListOpenWorkflowExecutionsCommandOutput>;
...rest: any[]
) => Paginator<ListOpenWorkflowExecutionsCommandOutput>;

@@ -7,6 +7,6 @@ import { Paginator } from "@smithy/types";

import { SWFPaginationConfiguration } from "./Interfaces";
export declare function paginateListWorkflowTypes(
export declare const paginateListWorkflowTypes: (
config: SWFPaginationConfiguration,
input: ListWorkflowTypesCommandInput,
...additionalArguments: any
): Paginator<ListWorkflowTypesCommandOutput>;
...rest: any[]
) => Paginator<ListWorkflowTypesCommandOutput>;

@@ -7,6 +7,6 @@ import { Paginator } from "@smithy/types";

import { SWFPaginationConfiguration } from "./Interfaces";
export declare function paginatePollForDecisionTask(
export declare const paginatePollForDecisionTask: (
config: SWFPaginationConfiguration,
input: PollForDecisionTaskCommandInput,
...additionalArguments: any
): Paginator<PollForDecisionTaskCommandOutput>;
...rest: any[]
) => Paginator<PollForDecisionTaskCommandOutput>;
{
"name": "@aws-sdk/client-swf",
"description": "AWS SDK for JavaScript Swf Client for Node.js, Browser and React Native",
"version": "3.477.0",
"version": "3.478.0",
"scripts": {

@@ -23,5 +23,5 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",

"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/client-sts": "3.477.0",
"@aws-sdk/client-sts": "3.478.0",
"@aws-sdk/core": "3.477.0",
"@aws-sdk/credential-provider-node": "3.477.0",
"@aws-sdk/credential-provider-node": "3.478.0",
"@aws-sdk/middleware-host-header": "3.468.0",

@@ -31,9 +31,10 @@ "@aws-sdk/middleware-logger": "3.468.0",

"@aws-sdk/middleware-signing": "3.468.0",
"@aws-sdk/middleware-user-agent": "3.470.0",
"@aws-sdk/middleware-user-agent": "3.478.0",
"@aws-sdk/region-config-resolver": "3.470.0",
"@aws-sdk/types": "3.468.0",
"@aws-sdk/util-endpoints": "3.470.0",
"@aws-sdk/util-endpoints": "3.478.0",
"@aws-sdk/util-user-agent-browser": "3.468.0",
"@aws-sdk/util-user-agent-node": "3.470.0",
"@smithy/config-resolver": "^2.0.21",
"@smithy/core": "^1.2.0",
"@smithy/fetch-http-handler": "^2.3.1",

@@ -40,0 +41,0 @@ "@smithy/hash-node": "^2.0.17",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc