@togglhq/cli 1.5.68 → 1.5.69
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/build/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { n as CommanderError, t as createProgram } from "./program-
|
|
2
|
+
import { n as CommanderError, t as createProgram } from "./program-BnP1XwLR.js";
|
|
3
3
|
//#region src/cli.ts
|
|
4
4
|
try {
|
|
5
5
|
await createProgram({ enableUpdateNotification: true }).parseAsync(process.argv);
|
package/build/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as createProgram } from "./program-
|
|
1
|
+
import { t as createProgram } from "./program-BnP1XwLR.js";
|
|
2
2
|
export { createProgram };
|
|
@@ -9646,6 +9646,12 @@ async function updateOrganizationGroupUserRole(httpClient, organization_id, grou
|
|
|
9646
9646
|
json: data
|
|
9647
9647
|
}).json();
|
|
9648
9648
|
}
|
|
9649
|
+
async function getOrganizationMemberTags(httpClient, organization_id, { workspace_id }, signal) {
|
|
9650
|
+
return await httpClient.get(`organizations/${organization_id}/member-tags`, {
|
|
9651
|
+
signal,
|
|
9652
|
+
searchParams: buildSearchParams$3({ workspace_id })
|
|
9653
|
+
}).json();
|
|
9654
|
+
}
|
|
9649
9655
|
async function getOrganizationRoles(httpClient, organization_id, signal) {
|
|
9650
9656
|
return await httpClient.get(`organizations/${organization_id}/roles`, { signal }).json();
|
|
9651
9657
|
}
|
|
@@ -16463,6 +16469,32 @@ const generatedFocusOperations = [
|
|
|
16463
16469
|
]));
|
|
16464
16470
|
}
|
|
16465
16471
|
},
|
|
16472
|
+
{
|
|
16473
|
+
id: "focus.organization.get-member-tags",
|
|
16474
|
+
family: "focus",
|
|
16475
|
+
resource: "organization",
|
|
16476
|
+
action: "get-member-tags",
|
|
16477
|
+
title: "Get Member Tags Organization",
|
|
16478
|
+
description: "Get Member Tags Organization.",
|
|
16479
|
+
safety: "read",
|
|
16480
|
+
destructive: false,
|
|
16481
|
+
cli: {
|
|
16482
|
+
group: ["organization"],
|
|
16483
|
+
command: "get-member-tags",
|
|
16484
|
+
interactive: "available"
|
|
16485
|
+
},
|
|
16486
|
+
mcp: { entityTool: "organization" },
|
|
16487
|
+
inputSchema: /* @__PURE__ */ looseObject({ workspace_id: /* @__PURE__ */ number$2() }),
|
|
16488
|
+
execute: (input, { client }) => {
|
|
16489
|
+
const data = input;
|
|
16490
|
+
return client.runGeneratedRequest("getOrganizationMemberTags", () => callGeneratedRequest(getOrganizationMemberTags, [
|
|
16491
|
+
client.httpClient,
|
|
16492
|
+
client.organizationId,
|
|
16493
|
+
data,
|
|
16494
|
+
void 0
|
|
16495
|
+
]));
|
|
16496
|
+
}
|
|
16497
|
+
},
|
|
16466
16498
|
{
|
|
16467
16499
|
id: "focus.organization.get-my-groups",
|
|
16468
16500
|
family: "focus",
|
|
@@ -25978,4 +26010,4 @@ Common commands:
|
|
|
25978
26010
|
//#endregion
|
|
25979
26011
|
export { CommanderError as n, createProgram as t };
|
|
25980
26012
|
|
|
25981
|
-
//# sourceMappingURL=program-
|
|
26013
|
+
//# sourceMappingURL=program-BnP1XwLR.js.map
|
package/build/program.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as createProgram } from "./program-
|
|
1
|
+
import { t as createProgram } from "./program-BnP1XwLR.js";
|
|
2
2
|
export { createProgram };
|