@keystrokehq/cli 0.1.76 → 0.1.78
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/index.mjs
CHANGED
|
@@ -5998,7 +5998,7 @@ function registerAppListCommand(app) {
|
|
|
5998
5998
|
//#endregion
|
|
5999
5999
|
//#region src/commands/apps/search.ts
|
|
6000
6000
|
function registerAppSearchCommand(app) {
|
|
6001
|
-
app.command("search").description("Search the Composio app catalog (live)").argument("<query>", "Search query").option("--category <category>", "Filter by category").option("--limit <n>", "Page size", (value) => Number.parseInt(value, 10)).option("--cursor <cursor>", "Pagination cursor").action((query, options) => runCliCommand("App search failed", async () => {
|
|
6001
|
+
app.command("search").description("Search the Composio app catalog (live)").argument("<query>", "Search query").usage("[options] \"{query}\"").option("--category <category>", "Filter by category").option("--limit <n>", "Page size", (value) => Number.parseInt(value, 10)).option("--cursor <cursor>", "Pagination cursor").action((query, options) => runCliCommand("App search failed", async () => {
|
|
6002
6002
|
const config = createCliConfig();
|
|
6003
6003
|
const client = createCliPlatformClient(config);
|
|
6004
6004
|
await resolveActiveOrganization(config);
|