working rss feed to nostr publish
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
import { ListAccountRolesCommand, } from "../commands/ListAccountRolesCommand";
|
||||
import { SSOClient } from "../SSOClient";
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListAccountRolesCommand(input), ...args);
|
||||
};
|
||||
export async function* paginateListAccountRoles(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.nextToken = token;
|
||||
input["maxResults"] = config.pageSize;
|
||||
if (config.client instanceof SSOClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected SSO | SSOClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.nextToken;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
import { ListAccountsCommand, } from "../commands/ListAccountsCommand";
|
||||
import { SSOClient } from "../SSOClient";
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListAccountsCommand(input), ...args);
|
||||
};
|
||||
export async function* paginateListAccounts(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.nextToken = token;
|
||||
input["maxResults"] = config.pageSize;
|
||||
if (config.client instanceof SSOClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected SSO | SSOClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.nextToken;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
export * from "./Interfaces";
|
||||
export * from "./ListAccountRolesPaginator";
|
||||
export * from "./ListAccountsPaginator";
|
||||
Reference in New Issue
Block a user