@fern-api/fern-api-dev 3.55.4 → 3.55.5
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
|
@@ -1530802,7 +1530802,7 @@ function convertLayoutConfig(layout) {
|
|
|
1530802
1530802
|
sidebarWidth: parseSizeConfig(layout.sidebarWidth),
|
|
1530803
1530803
|
headerHeight: parseSizeConfig(layout.headerHeight),
|
|
1530804
1530804
|
searchbarPlacement: layout.searchbarPlacement === "header" ? FdrAPI_exports.docs.v1.commons.SearchbarPlacement.Header : layout.searchbarPlacement === "header-tabs" ? FdrAPI_exports.docs.v1.commons.SearchbarPlacement.HeaderTabs : FdrAPI_exports.docs.v1.commons.SearchbarPlacement.Sidebar,
|
|
1530805
|
-
switcherPlacement: layout.switcherPlacement === "header" ? FdrAPI_exports.docs.v1.commons.SwitcherPlacement.Header : FdrAPI_exports.docs.v1.commons.SwitcherPlacement.Sidebar,
|
|
1530805
|
+
switcherPlacement: !layout.switcherPlacement || layout.switcherPlacement === "header" ? FdrAPI_exports.docs.v1.commons.SwitcherPlacement.Header : FdrAPI_exports.docs.v1.commons.SwitcherPlacement.Sidebar,
|
|
1530806
1530806
|
tabsPlacement: layout.tabsPlacement === "header" ? FdrAPI_exports.docs.v1.commons.TabsPlacement.Header : FdrAPI_exports.docs.v1.commons.TabsPlacement.Sidebar,
|
|
1530807
1530807
|
contentAlignment: layout.contentAlignment === "left" ? FdrAPI_exports.docs.v1.commons.ContentAlignment.Left : FdrAPI_exports.docs.v1.commons.ContentAlignment.Center,
|
|
1530808
1530808
|
headerPosition: layout.headerPosition === "static" ? FdrAPI_exports.docs.v1.commons.HeaderPosition.Absolute : FdrAPI_exports.docs.v1.commons.HeaderPosition.Fixed,
|
|
@@ -1654827,7 +1654827,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1654827
1654827
|
properties: {
|
|
1654828
1654828
|
...event,
|
|
1654829
1654829
|
...event.properties,
|
|
1654830
|
-
version: "3.55.
|
|
1654830
|
+
version: "3.55.5",
|
|
1654831
1654831
|
usingAccessToken: true
|
|
1654832
1654832
|
}
|
|
1654833
1654833
|
});
|
|
@@ -1654877,7 +1654877,7 @@ var UserPosthogManager = class {
|
|
|
1654877
1654877
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1654878
1654878
|
event: "CLI",
|
|
1654879
1654879
|
properties: {
|
|
1654880
|
-
version: "3.55.
|
|
1654880
|
+
version: "3.55.5",
|
|
1654881
1654881
|
...event,
|
|
1654882
1654882
|
...event.properties,
|
|
1654883
1654883
|
usingAccessToken: false,
|
|
@@ -1688019,7 +1688019,7 @@ var CliContext = class {
|
|
|
1688019
1688019
|
if (false) {
|
|
1688020
1688020
|
this.logger.error("CLI_VERSION is not defined");
|
|
1688021
1688021
|
}
|
|
1688022
|
-
return "3.55.
|
|
1688022
|
+
return "3.55.5";
|
|
1688023
1688023
|
}
|
|
1688024
1688024
|
getCliName() {
|
|
1688025
1688025
|
if (false) {
|
|
@@ -1691132,7 +1691132,7 @@ var import_path54 = __toESM(require("path"), 1);
|
|
|
1691132
1691132
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1691133
1691133
|
var LOGS_FOLDER_NAME = "logs";
|
|
1691134
1691134
|
function getCliSource() {
|
|
1691135
|
-
const version7 = "3.55.
|
|
1691135
|
+
const version7 = "3.55.5";
|
|
1691136
1691136
|
return `cli@${version7}`;
|
|
1691137
1691137
|
}
|
|
1691138
1691138
|
var DebugLogger = class {
|
package/package.json
CHANGED