@ted-galago/wave-cli 0.1.13 → 0.1.14

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.cjs CHANGED
@@ -3073,10 +3073,14 @@ function registerMemberCommands(program) {
3073
3073
  members.command("list").option("--page <page>").option("--per <per>").option(
3074
3074
  "--include-coaches <includeCoaches>",
3075
3075
  "Include linked coach members. Defaults to false; omitted/false returns organization members only."
3076
+ ).option(
3077
+ "--include-disabled <includeDisabled>",
3078
+ "Include deactivated members. Defaults to false; omitted/false returns active members only."
3076
3079
  ).action(async (opts, cmd) => {
3077
3080
  const context = await resolveCommandContext(cmd.optsWithGlobals());
3078
3081
  const organizationId = resolveOrganizationId(context.organizationId);
3079
3082
  const includeCoaches = opts.includeCoaches === void 0 ? void 0 : parseStrictBooleanOption(opts.includeCoaches, "--include-coaches");
3083
+ const includeDisabled = opts.includeDisabled === void 0 ? void 0 : parseStrictBooleanOption(opts.includeDisabled, "--include-disabled");
3080
3084
  await runGraphqlQueryCommand({
3081
3085
  command: "members.list",
3082
3086
  runtimeOptions: context.runtimeOptions,
@@ -3085,7 +3089,8 @@ function registerMemberCommands(program) {
3085
3089
  organization_id: organizationId,
3086
3090
  page: opts.page,
3087
3091
  per: opts.per,
3088
- include_coaches: includeCoaches
3092
+ include_coaches: includeCoaches,
3093
+ include_disabled: includeDisabled
3089
3094
  }),
3090
3095
  isList: true
3091
3096
  });
package/dist/index.js CHANGED
@@ -3072,10 +3072,14 @@ function registerMemberCommands(program) {
3072
3072
  members.command("list").option("--page <page>").option("--per <per>").option(
3073
3073
  "--include-coaches <includeCoaches>",
3074
3074
  "Include linked coach members. Defaults to false; omitted/false returns organization members only."
3075
+ ).option(
3076
+ "--include-disabled <includeDisabled>",
3077
+ "Include deactivated members. Defaults to false; omitted/false returns active members only."
3075
3078
  ).action(async (opts, cmd) => {
3076
3079
  const context = await resolveCommandContext(cmd.optsWithGlobals());
3077
3080
  const organizationId = resolveOrganizationId(context.organizationId);
3078
3081
  const includeCoaches = opts.includeCoaches === void 0 ? void 0 : parseStrictBooleanOption(opts.includeCoaches, "--include-coaches");
3082
+ const includeDisabled = opts.includeDisabled === void 0 ? void 0 : parseStrictBooleanOption(opts.includeDisabled, "--include-disabled");
3079
3083
  await runGraphqlQueryCommand({
3080
3084
  command: "members.list",
3081
3085
  runtimeOptions: context.runtimeOptions,
@@ -3084,7 +3088,8 @@ function registerMemberCommands(program) {
3084
3088
  organization_id: organizationId,
3085
3089
  page: opts.page,
3086
3090
  per: opts.per,
3087
- include_coaches: includeCoaches
3091
+ include_coaches: includeCoaches,
3092
+ include_disabled: includeDisabled
3088
3093
  }),
3089
3094
  isList: true
3090
3095
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ted-galago/wave-cli",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "wave": "dist/index.js"