onflyt-cli 0.1.5 → 0.1.6

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.js CHANGED
@@ -1712,7 +1712,7 @@ var init_config = __esm({
1712
1712
  CONFIG_DIR = join(homedir(), ".onflyt");
1713
1713
  CONFIG_FILE = join(CONFIG_DIR, "config.json");
1714
1714
  PROJECT_CONFIG_FILE = "onflyt.json";
1715
- API_URL = process.env.ONFLYT_API_URL || "https://deploy-api.onflyt.com";
1715
+ API_URL = process.env.ONFLYT_API_URL || "https://deploy-api.onflyt.com/api";
1716
1716
  }
1717
1717
  });
1718
1718
 
@@ -10628,7 +10628,7 @@ var bigText = (str) => {
10628
10628
  return c;
10629
10629
  }).join("");
10630
10630
  };
10631
- var Logo = () => /* @__PURE__ */ React3.createElement(Box, { flexDirection: "column" }, /* @__PURE__ */ React3.createElement(Box, { alignItems: "center" }, /* @__PURE__ */ React3.createElement(Text2, { color: "rgb(255,191,0)" }, " \u2B21 "), /* @__PURE__ */ React3.createElement(Text2, { bold: true, color: "rgb(255,191,0)" }, bigText("Onflyt")), /* @__PURE__ */ React3.createElement(Text2, null, " "), /* @__PURE__ */ React3.createElement(Text2, { bold: true, color: "black", backgroundColor: "rgb(255,191,0)" }, " ", "v0.1.4-beta", " ")));
10631
+ var Logo = () => /* @__PURE__ */ React3.createElement(Box, { flexDirection: "column" }, /* @__PURE__ */ React3.createElement(Box, { alignItems: "center" }, /* @__PURE__ */ React3.createElement(Text2, { color: "rgb(255,191,0)" }, " \u2B21 "), /* @__PURE__ */ React3.createElement(Text2, { bold: true, color: "rgb(255,191,0)" }, bigText("Onflyt")), /* @__PURE__ */ React3.createElement(Text2, null, " "), /* @__PURE__ */ React3.createElement(Text2, { bold: true, color: "black", backgroundColor: "rgb(255,191,0)" }, " ", "0.1.6-beta", " ")));
10632
10632
  var ErrorDisplay = ({ message }) => /* @__PURE__ */ React3.createElement(Box, { flexDirection: "column" }, /* @__PURE__ */ React3.createElement(Logo, null), /* @__PURE__ */ React3.createElement(Box, { marginTop: 1 }, /* @__PURE__ */ React3.createElement(Text2, { bold: true, color: "red" }, "\u2716 Error")), /* @__PURE__ */ React3.createElement(Box, { marginTop: 1 }, /* @__PURE__ */ React3.createElement(Text2, { color: "red" }, message)));
10633
10633
 
10634
10634
  // src/commands/login.tsx
@@ -12990,14 +12990,14 @@ import { render } from "ink";
12990
12990
  import React16 from "react";
12991
12991
  import { Text as Text13, Box as Box12 } from "ink";
12992
12992
  var App = () => {
12993
- return /* @__PURE__ */ React16.createElement(Box12, { flexDirection: "column" }, /* @__PURE__ */ React16.createElement(Text13, { bold: true }, " \u2B21 Onflyt CLI v0.1.4-beta"), /* @__PURE__ */ React16.createElement(Text13, null, "Type onflyt --help for available commands"));
12993
+ return /* @__PURE__ */ React16.createElement(Box12, { flexDirection: "column" }, /* @__PURE__ */ React16.createElement(Text13, { bold: true }, " \u2B21 Onflyt CLI 0.1.6-beta"), /* @__PURE__ */ React16.createElement(Text13, null, "Type onflyt --help for available commands"));
12994
12994
  };
12995
12995
  var App_default = App;
12996
12996
 
12997
12997
  // src/index.tsx
12998
12998
  var cli = meow(
12999
12999
  `
13000
- Onflyt CLI v0.1.4-beta
13000
+ Onflyt CLI 0.1.6-beta
13001
13001
 
13002
13002
  Usage
13003
13003
  $ onflyt <command>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "onflyt-cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "description": "Onflyt CLI - Deploy Node.js and Python APIs to serverless pods. Pay only per use.",
6
6
  "repository": {
package/src/App.tsx CHANGED
@@ -4,7 +4,7 @@ import { Text, Box } from "ink";
4
4
  const App = () => {
5
5
  return (
6
6
  <Box flexDirection="column">
7
- <Text bold> ⬡ Onflyt CLI 0.1.5-beta</Text>
7
+ <Text bold> ⬡ Onflyt CLI 0.1.6-beta</Text>
8
8
  <Text>Type onflyt --help for available commands</Text>
9
9
  </Box>
10
10
  );
@@ -24,7 +24,7 @@ export const Logo: React.FC = () => (
24
24
  <Text> </Text>
25
25
  <Text bold color="black" backgroundColor="rgb(255,191,0)">
26
26
  {" "}
27
- 0.1.5-beta{" "}
27
+ 0.1.6-beta{" "}
28
28
  </Text>
29
29
  </Box>
30
30
  </Box>
package/src/index.tsx CHANGED
@@ -17,7 +17,7 @@ import Rollback from "./commands/rollback.js";
17
17
 
18
18
  const cli = meow(
19
19
  `
20
- Onflyt CLI 0.1.5-beta
20
+ Onflyt CLI 0.1.6-beta
21
21
 
22
22
  Usage
23
23
  $ onflyt <command>