@fern-api/fern-api-dev 3.51.3-4-gd9f8fe64b6b → 3.51.3-7-gb5cd7eed23f
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 +5 -5
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1525290,7 +1525290,7 @@ var DynamicSnippetsGeneratorContext6 = class _DynamicSnippetsGeneratorContext ex
|
|
|
1525290
1525290
|
return this.customConfig?.clientModuleName ?? "Client";
|
|
1525291
1525291
|
}
|
|
1525292
1525292
|
getRootModuleName() {
|
|
1525293
|
-
return upperFirst_default(this.customConfig?.
|
|
1525293
|
+
return upperFirst_default(this.customConfig?.moduleName ?? this.customConfig?.clientModuleName ?? this.config.organization);
|
|
1525294
1525294
|
}
|
|
1525295
1525295
|
isSingleEnvironmentID(environment2) {
|
|
1525296
1525296
|
return typeof environment2 === "string";
|
|
@@ -1662559,7 +1662559,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1662559
1662559
|
properties: {
|
|
1662560
1662560
|
...event,
|
|
1662561
1662561
|
...event.properties,
|
|
1662562
|
-
version: "3.51.3-
|
|
1662562
|
+
version: "3.51.3-7-gb5cd7eed23f",
|
|
1662563
1662563
|
usingAccessToken: true
|
|
1662564
1662564
|
}
|
|
1662565
1662565
|
});
|
|
@@ -1662609,7 +1662609,7 @@ var UserPosthogManager = class {
|
|
|
1662609
1662609
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1662610
1662610
|
event: "CLI",
|
|
1662611
1662611
|
properties: {
|
|
1662612
|
-
version: "3.51.3-
|
|
1662612
|
+
version: "3.51.3-7-gb5cd7eed23f",
|
|
1662613
1662613
|
...event,
|
|
1662614
1662614
|
...event.properties,
|
|
1662615
1662615
|
usingAccessToken: false,
|
|
@@ -1695751,7 +1695751,7 @@ var CliContext = class {
|
|
|
1695751
1695751
|
if (false) {
|
|
1695752
1695752
|
this.logger.error("CLI_VERSION is not defined");
|
|
1695753
1695753
|
}
|
|
1695754
|
-
return "3.51.3-
|
|
1695754
|
+
return "3.51.3-7-gb5cd7eed23f";
|
|
1695755
1695755
|
}
|
|
1695756
1695756
|
getCliName() {
|
|
1695757
1695757
|
if (false) {
|
|
@@ -1698864,7 +1698864,7 @@ var import_path54 = __toESM(require("path"), 1);
|
|
|
1698864
1698864
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1698865
1698865
|
var LOGS_FOLDER_NAME = "logs";
|
|
1698866
1698866
|
function getCliSource() {
|
|
1698867
|
-
const version7 = "3.51.3-
|
|
1698867
|
+
const version7 = "3.51.3-7-gb5cd7eed23f";
|
|
1698868
1698868
|
return `cli@${version7}`;
|
|
1698869
1698869
|
}
|
|
1698870
1698870
|
var DebugLogger = class {
|
package/package.json
CHANGED