@fern-api/fern-api-dev 3.60.0 → 3.60.1
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 -5
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1467992,7 +1467992,9 @@ var DocsConfiguration = schemas_exports8.object({
|
|
|
1467992
1467992
|
theme: ThemeConfig.optional(),
|
|
1467993
1467993
|
integrations: IntegrationsConfig.optional(),
|
|
1467994
1467994
|
css: CssConfig.optional(),
|
|
1467995
|
-
js: JsConfig.optional()
|
|
1467995
|
+
js: JsConfig.optional(),
|
|
1467996
|
+
header: schemas_exports8.string().optional(),
|
|
1467997
|
+
footer: schemas_exports8.string().optional()
|
|
1467996
1467998
|
});
|
|
1467997
1467999
|
|
|
1467998
1468000
|
// ../configuration/lib/docs-yml/schemas/sdk/serialization/resources/docs/types/FolderConfiguration.js
|
|
@@ -1678886,7 +1678888,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1678886
1678888
|
properties: {
|
|
1678887
1678889
|
...event,
|
|
1678888
1678890
|
...event.properties,
|
|
1678889
|
-
version: "3.60.
|
|
1678891
|
+
version: "3.60.1",
|
|
1678890
1678892
|
usingAccessToken: true
|
|
1678891
1678893
|
}
|
|
1678892
1678894
|
});
|
|
@@ -1678936,7 +1678938,7 @@ var UserPosthogManager = class {
|
|
|
1678936
1678938
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1678937
1678939
|
event: "CLI",
|
|
1678938
1678940
|
properties: {
|
|
1678939
|
-
version: "3.60.
|
|
1678941
|
+
version: "3.60.1",
|
|
1678940
1678942
|
...event,
|
|
1678941
1678943
|
...event.properties,
|
|
1678942
1678944
|
usingAccessToken: false,
|
|
@@ -1710858,7 +1710860,7 @@ var CliContext = class {
|
|
|
1710858
1710860
|
if (false) {
|
|
1710859
1710861
|
this.logger.error("CLI_VERSION is not defined");
|
|
1710860
1710862
|
}
|
|
1710861
|
-
return "3.60.
|
|
1710863
|
+
return "3.60.1";
|
|
1710862
1710864
|
}
|
|
1710863
1710865
|
getCliName() {
|
|
1710864
1710866
|
if (false) {
|
|
@@ -1713972,7 +1713974,7 @@ var import_path56 = __toESM(require("path"), 1);
|
|
|
1713972
1713974
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1713973
1713975
|
var LOGS_FOLDER_NAME = "logs";
|
|
1713974
1713976
|
function getCliSource() {
|
|
1713975
|
-
const version7 = "3.60.
|
|
1713977
|
+
const version7 = "3.60.1";
|
|
1713976
1713978
|
return `cli@${version7}`;
|
|
1713977
1713979
|
}
|
|
1713978
1713980
|
var DebugLogger = class {
|
package/package.json
CHANGED