@fern-api/fern-api-dev 3.52.0-61-g25c914de7fa → 3.52.0-62-gdd301ac11bc
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/cli.cjs +12 -12
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1402470,16 +1402470,16 @@ function isUnicodeSupported() {
|
|
|
1402470
1402470
|
|
|
1402471
1402471
|
// ../../../node_modules/.pnpm/log-symbols@5.1.0/node_modules/log-symbols/index.js
|
|
1402472
1402472
|
var main = {
|
|
1402473
|
-
info:
|
|
1402474
|
-
success:
|
|
1402475
|
-
warning:
|
|
1402476
|
-
error:
|
|
1402473
|
+
info: source_default.blue("\u2139"),
|
|
1402474
|
+
success: source_default.green("\u2714"),
|
|
1402475
|
+
warning: source_default.yellow("\u26A0"),
|
|
1402476
|
+
error: source_default.red("\u2716")
|
|
1402477
1402477
|
};
|
|
1402478
1402478
|
var fallback = {
|
|
1402479
|
-
info:
|
|
1402480
|
-
success:
|
|
1402481
|
-
warning:
|
|
1402482
|
-
error:
|
|
1402479
|
+
info: source_default.blue("i"),
|
|
1402480
|
+
success: source_default.green("\u221A"),
|
|
1402481
|
+
warning: source_default.yellow("\u203C"),
|
|
1402482
|
+
error: source_default.red("\xD7")
|
|
1402483
1402483
|
};
|
|
1402484
1402484
|
var logSymbols = isUnicodeSupported() ? main : fallback;
|
|
1402485
1402485
|
var log_symbols_default = logSymbols;
|
|
@@ -1650952,7 +1650952,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1650952
1650952
|
properties: {
|
|
1650953
1650953
|
...event,
|
|
1650954
1650954
|
...event.properties,
|
|
1650955
|
-
version: "3.52.0-
|
|
1650955
|
+
version: "3.52.0-62-gdd301ac11bc",
|
|
1650956
1650956
|
usingAccessToken: true
|
|
1650957
1650957
|
}
|
|
1650958
1650958
|
});
|
|
@@ -1651002,7 +1651002,7 @@ var UserPosthogManager = class {
|
|
|
1651002
1651002
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1651003
1651003
|
event: "CLI",
|
|
1651004
1651004
|
properties: {
|
|
1651005
|
-
version: "3.52.0-
|
|
1651005
|
+
version: "3.52.0-62-gdd301ac11bc",
|
|
1651006
1651006
|
...event,
|
|
1651007
1651007
|
...event.properties,
|
|
1651008
1651008
|
usingAccessToken: false,
|
|
@@ -1684144,7 +1684144,7 @@ var CliContext = class {
|
|
|
1684144
1684144
|
if (false) {
|
|
1684145
1684145
|
this.logger.error("CLI_VERSION is not defined");
|
|
1684146
1684146
|
}
|
|
1684147
|
-
return "3.52.0-
|
|
1684147
|
+
return "3.52.0-62-gdd301ac11bc";
|
|
1684148
1684148
|
}
|
|
1684149
1684149
|
getCliName() {
|
|
1684150
1684150
|
if (false) {
|
|
@@ -1687257,7 +1687257,7 @@ var import_path54 = __toESM(require("path"), 1);
|
|
|
1687257
1687257
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1687258
1687258
|
var LOGS_FOLDER_NAME = "logs";
|
|
1687259
1687259
|
function getCliSource() {
|
|
1687260
|
-
const version7 = "3.52.0-
|
|
1687260
|
+
const version7 = "3.52.0-62-gdd301ac11bc";
|
|
1687261
1687261
|
return `cli@${version7}`;
|
|
1687262
1687262
|
}
|
|
1687263
1687263
|
var DebugLogger = class {
|
package/package.json
CHANGED