@epilot/cli 0.1.9 → 0.1.10

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.
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  API_LIST
4
- } from "../chunk-PHXL66VA.js";
4
+ } from "../chunk-MNSG22DM.js";
5
5
 
6
6
  // bin/epilot.ts
7
7
  import { runMain } from "citty";
@@ -11,7 +11,7 @@ import { defineCommand } from "citty";
11
11
  var main = defineCommand({
12
12
  meta: {
13
13
  name: "epilot",
14
- version: "0.1.9",
14
+ version: "0.1.10",
15
15
  description: "CLI for epilot APIs"
16
16
  },
17
17
  args: {
@@ -27,8 +27,8 @@ var main = defineCommand({
27
27
  subCommands: {
28
28
  auth: () => import("../auth-AAF6Z5WZ.js").then((m) => m.default),
29
29
  profile: () => import("../profile-EK4HSQ57.js").then((m) => m.default),
30
- completion: () => import("../completion-EKFXGPNK.js").then((m) => m.default),
31
- upgrade: () => import("../upgrade-KDDTJRUC.js").then((m) => m.default),
30
+ completion: () => import("../completion-HZNPHJI4.js").then((m) => m.default),
31
+ upgrade: () => import("../upgrade-TNDH4WGQ.js").then((m) => m.default),
32
32
  "access-token": () => import("../access-token-PTTCRMGK.js").then((m) => m.default),
33
33
  address: () => import("../address-2FDPEPR6.js").then((m) => m.default),
34
34
  "address-suggestions": () => import("../address-suggestions-XBEK5DDQ.js").then((m) => m.default),
@@ -87,11 +87,11 @@ process.stderr.on("error", (err) => {
87
87
  if (err.code === "EPIPE") process.exit(0);
88
88
  throw err;
89
89
  });
90
- var VERSION = true ? "0.1.9" : (await null).default.version;
90
+ var VERSION = true ? "0.1.10" : (await null).default.version;
91
91
  var args = process.argv.slice(2);
92
92
  var completionsIdx = args.indexOf("--_completions");
93
93
  if (completionsIdx >= 0) {
94
- const { handleCompletions } = await import("../completion-EKFXGPNK.js");
94
+ const { handleCompletions } = await import("../completion-HZNPHJI4.js");
95
95
  handleCompletions(args[completionsIdx + 1], args[completionsIdx + 2]);
96
96
  process.exit(0);
97
97
  }
@@ -868,14 +868,15 @@ var API_LIST = [
868
868
  kebabName: "organization",
869
869
  title: "Organization API",
870
870
  serverUrl: "https://organization-v2.sls.epilot.io",
871
- operationCount: 6,
871
+ operationCount: 7,
872
872
  operationIds: [
873
873
  "getCurrentOrganization",
874
874
  "getOrganization",
875
875
  "updateOrganization",
876
876
  "getSettings",
877
877
  "putSettingsValue",
878
- "deleteSettingsValue"
878
+ "deleteSettingsValue",
879
+ "getFeatureSettings"
879
880
  ]
880
881
  },
881
882
  {
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  API_LIST
4
- } from "./chunk-PHXL66VA.js";
4
+ } from "./chunk-MNSG22DM.js";
5
5
  import {
6
6
  DIM,
7
7
  GREEN,
@@ -72,7 +72,7 @@ ${GREEN}${BOLD}Upgraded to @epilot/cli@${latest}${RESET}
72
72
  }
73
73
  });
74
74
  var getCurrentVersion = () => {
75
- if (true) return "0.1.9";
75
+ if (true) return "0.1.10";
76
76
  try {
77
77
  const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
78
78
  encoding: "utf-8",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/cli",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "CLI for epilot APIs",
5
5
  "type": "module",
6
6
  "bin": {