working rss feed to nostr publish
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListAliases = void 0;
|
||||
const ListAliasesCommand_1 = require("../commands/ListAliasesCommand");
|
||||
const LambdaClient_1 = require("../LambdaClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListAliasesCommand_1.ListAliasesCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListAliases(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.Marker = token;
|
||||
input["MaxItems"] = config.pageSize;
|
||||
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.NextMarker;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListAliases = paginateListAliases;
|
||||
Generated
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListCodeSigningConfigs = void 0;
|
||||
const ListCodeSigningConfigsCommand_1 = require("../commands/ListCodeSigningConfigsCommand");
|
||||
const LambdaClient_1 = require("../LambdaClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListCodeSigningConfigsCommand_1.ListCodeSigningConfigsCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListCodeSigningConfigs(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.Marker = token;
|
||||
input["MaxItems"] = config.pageSize;
|
||||
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.NextMarker;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListCodeSigningConfigs = paginateListCodeSigningConfigs;
|
||||
Generated
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListEventSourceMappings = void 0;
|
||||
const ListEventSourceMappingsCommand_1 = require("../commands/ListEventSourceMappingsCommand");
|
||||
const LambdaClient_1 = require("../LambdaClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListEventSourceMappingsCommand_1.ListEventSourceMappingsCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListEventSourceMappings(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.Marker = token;
|
||||
input["MaxItems"] = config.pageSize;
|
||||
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.NextMarker;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListEventSourceMappings = paginateListEventSourceMappings;
|
||||
Generated
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListFunctionEventInvokeConfigs = void 0;
|
||||
const ListFunctionEventInvokeConfigsCommand_1 = require("../commands/ListFunctionEventInvokeConfigsCommand");
|
||||
const LambdaClient_1 = require("../LambdaClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListFunctionEventInvokeConfigsCommand_1.ListFunctionEventInvokeConfigsCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListFunctionEventInvokeConfigs(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.Marker = token;
|
||||
input["MaxItems"] = config.pageSize;
|
||||
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.NextMarker;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListFunctionEventInvokeConfigs = paginateListFunctionEventInvokeConfigs;
|
||||
Generated
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListFunctionUrlConfigs = void 0;
|
||||
const ListFunctionUrlConfigsCommand_1 = require("../commands/ListFunctionUrlConfigsCommand");
|
||||
const LambdaClient_1 = require("../LambdaClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListFunctionUrlConfigsCommand_1.ListFunctionUrlConfigsCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListFunctionUrlConfigs(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.Marker = token;
|
||||
input["MaxItems"] = config.pageSize;
|
||||
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.NextMarker;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListFunctionUrlConfigs = paginateListFunctionUrlConfigs;
|
||||
node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListFunctionsByCodeSigningConfigPaginator.js
Generated
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListFunctionsByCodeSigningConfig = void 0;
|
||||
const ListFunctionsByCodeSigningConfigCommand_1 = require("../commands/ListFunctionsByCodeSigningConfigCommand");
|
||||
const LambdaClient_1 = require("../LambdaClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListFunctionsByCodeSigningConfigCommand_1.ListFunctionsByCodeSigningConfigCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListFunctionsByCodeSigningConfig(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.Marker = token;
|
||||
input["MaxItems"] = config.pageSize;
|
||||
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.NextMarker;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListFunctionsByCodeSigningConfig = paginateListFunctionsByCodeSigningConfig;
|
||||
Generated
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListFunctions = void 0;
|
||||
const ListFunctionsCommand_1 = require("../commands/ListFunctionsCommand");
|
||||
const LambdaClient_1 = require("../LambdaClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListFunctionsCommand_1.ListFunctionsCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListFunctions(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.Marker = token;
|
||||
input["MaxItems"] = config.pageSize;
|
||||
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.NextMarker;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListFunctions = paginateListFunctions;
|
||||
Generated
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListLayerVersions = void 0;
|
||||
const ListLayerVersionsCommand_1 = require("../commands/ListLayerVersionsCommand");
|
||||
const LambdaClient_1 = require("../LambdaClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListLayerVersionsCommand_1.ListLayerVersionsCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListLayerVersions(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.Marker = token;
|
||||
input["MaxItems"] = config.pageSize;
|
||||
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.NextMarker;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListLayerVersions = paginateListLayerVersions;
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListLayers = void 0;
|
||||
const ListLayersCommand_1 = require("../commands/ListLayersCommand");
|
||||
const LambdaClient_1 = require("../LambdaClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListLayersCommand_1.ListLayersCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListLayers(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.Marker = token;
|
||||
input["MaxItems"] = config.pageSize;
|
||||
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.NextMarker;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListLayers = paginateListLayers;
|
||||
Generated
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListProvisionedConcurrencyConfigs = void 0;
|
||||
const ListProvisionedConcurrencyConfigsCommand_1 = require("../commands/ListProvisionedConcurrencyConfigsCommand");
|
||||
const LambdaClient_1 = require("../LambdaClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListProvisionedConcurrencyConfigsCommand_1.ListProvisionedConcurrencyConfigsCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListProvisionedConcurrencyConfigs(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.Marker = token;
|
||||
input["MaxItems"] = config.pageSize;
|
||||
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.NextMarker;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListProvisionedConcurrencyConfigs = paginateListProvisionedConcurrencyConfigs;
|
||||
Generated
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListVersionsByFunction = void 0;
|
||||
const ListVersionsByFunctionCommand_1 = require("../commands/ListVersionsByFunctionCommand");
|
||||
const LambdaClient_1 = require("../LambdaClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListVersionsByFunctionCommand_1.ListVersionsByFunctionCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListVersionsByFunction(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.Marker = token;
|
||||
input["MaxItems"] = config.pageSize;
|
||||
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.NextMarker;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListVersionsByFunction = paginateListVersionsByFunction;
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const tslib_1 = require("tslib");
|
||||
tslib_1.__exportStar(require("./Interfaces"), exports);
|
||||
tslib_1.__exportStar(require("./ListAliasesPaginator"), exports);
|
||||
tslib_1.__exportStar(require("./ListCodeSigningConfigsPaginator"), exports);
|
||||
tslib_1.__exportStar(require("./ListEventSourceMappingsPaginator"), exports);
|
||||
tslib_1.__exportStar(require("./ListFunctionEventInvokeConfigsPaginator"), exports);
|
||||
tslib_1.__exportStar(require("./ListFunctionUrlConfigsPaginator"), exports);
|
||||
tslib_1.__exportStar(require("./ListFunctionsByCodeSigningConfigPaginator"), exports);
|
||||
tslib_1.__exportStar(require("./ListFunctionsPaginator"), exports);
|
||||
tslib_1.__exportStar(require("./ListLayerVersionsPaginator"), exports);
|
||||
tslib_1.__exportStar(require("./ListLayersPaginator"), exports);
|
||||
tslib_1.__exportStar(require("./ListProvisionedConcurrencyConfigsPaginator"), exports);
|
||||
tslib_1.__exportStar(require("./ListVersionsByFunctionPaginator"), exports);
|
||||
Reference in New Issue
Block a user