@fern-api/fern-api-dev 3.51.2-14-g5d7b91b08b2 → 3.51.2-15-gb37c48b414e
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 +7 -7
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1662426,7 +1662426,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1662426
1662426
|
properties: {
|
|
1662427
1662427
|
...event,
|
|
1662428
1662428
|
...event.properties,
|
|
1662429
|
-
version: "3.51.2-
|
|
1662429
|
+
version: "3.51.2-15-gb37c48b414e",
|
|
1662430
1662430
|
usingAccessToken: true
|
|
1662431
1662431
|
}
|
|
1662432
1662432
|
});
|
|
@@ -1662476,7 +1662476,7 @@ var UserPosthogManager = class {
|
|
|
1662476
1662476
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1662477
1662477
|
event: "CLI",
|
|
1662478
1662478
|
properties: {
|
|
1662479
|
-
version: "3.51.2-
|
|
1662479
|
+
version: "3.51.2-15-gb37c48b414e",
|
|
1662480
1662480
|
...event,
|
|
1662481
1662481
|
...event.properties,
|
|
1662482
1662482
|
usingAccessToken: false,
|
|
@@ -1695618,7 +1695618,7 @@ var CliContext = class {
|
|
|
1695618
1695618
|
if (false) {
|
|
1695619
1695619
|
this.logger.error("CLI_VERSION is not defined");
|
|
1695620
1695620
|
}
|
|
1695621
|
-
return "3.51.2-
|
|
1695621
|
+
return "3.51.2-15-gb37c48b414e";
|
|
1695622
1695622
|
}
|
|
1695623
1695623
|
getCliName() {
|
|
1695624
1695624
|
if (false) {
|
|
@@ -1698731,7 +1698731,7 @@ var import_path54 = __toESM(require("path"), 1);
|
|
|
1698731
1698731
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1698732
1698732
|
var LOGS_FOLDER_NAME = "logs";
|
|
1698733
1698733
|
function getCliSource() {
|
|
1698734
|
-
const version7 = "3.51.2-
|
|
1698734
|
+
const version7 = "3.51.2-15-gb37c48b414e";
|
|
1698735
1698735
|
return `cli@${version7}`;
|
|
1698736
1698736
|
}
|
|
1698737
1698737
|
var DebugLogger = class {
|
|
@@ -1731234,7 +1731234,7 @@ async function tryRunCli(cliContext) {
|
|
|
1731234
1731234
|
addWriteDocsDefinitionCommand(cli, cliContext);
|
|
1731235
1731235
|
addWriteTranslationCommand(cli, cliContext);
|
|
1731236
1731236
|
addExportCommand(cli, cliContext);
|
|
1731237
|
-
|
|
1731237
|
+
addBetaCommand(cli, cliContext);
|
|
1731238
1731238
|
addGetOrganizationCommand(cli, cliContext);
|
|
1731239
1731239
|
addGeneratorCommands(cli, cliContext);
|
|
1731240
1731240
|
addProtocGenFernCommand(cli, cliContext);
|
|
@@ -1732630,9 +1732630,9 @@ function addExportCommand(cli, cliContext) {
|
|
|
1732630
1732630
|
}
|
|
1732631
1732631
|
);
|
|
1732632
1732632
|
}
|
|
1732633
|
-
function
|
|
1732633
|
+
function addBetaCommand(cli, cliContext) {
|
|
1732634
1732634
|
cli.command(
|
|
1732635
|
-
"
|
|
1732635
|
+
"beta",
|
|
1732636
1732636
|
false,
|
|
1732637
1732637
|
// Hidden from --help while in-development.
|
|
1732638
1732638
|
(yargs) => yargs.help(false).version(false).strict(false).parserConfiguration({
|
package/package.json
CHANGED