@fern-api/fern-api-dev 3.36.0 → 3.36.1-2-g63cb401637
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 +9 -4
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1413767,7 +1413767,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1413767
1413767
|
properties: {
|
|
1413768
1413768
|
...event,
|
|
1413769
1413769
|
...event.properties,
|
|
1413770
|
-
version: "3.36.
|
|
1413770
|
+
version: "3.36.1-2-g63cb401637",
|
|
1413771
1413771
|
usingAccessToken: true
|
|
1413772
1413772
|
}
|
|
1413773
1413773
|
});
|
|
@@ -1413866,7 +1413866,7 @@ var UserPosthogManager = class {
|
|
|
1413866
1413866
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1413867
1413867
|
event: "CLI",
|
|
1413868
1413868
|
properties: {
|
|
1413869
|
-
version: "3.36.
|
|
1413869
|
+
version: "3.36.1-2-g63cb401637",
|
|
1413870
1413870
|
...event,
|
|
1413871
1413871
|
...event.properties,
|
|
1413872
1413872
|
usingAccessToken: false,
|
|
@@ -1493976,7 +1493976,7 @@ var CliContext = class {
|
|
|
1493976
1493976
|
if (false) {
|
|
1493977
1493977
|
this.logger.error("CLI_VERSION is not defined");
|
|
1493978
1493978
|
}
|
|
1493979
|
-
return "3.36.
|
|
1493979
|
+
return "3.36.1-2-g63cb401637";
|
|
1493980
1493980
|
}
|
|
1493981
1493981
|
getCliName() {
|
|
1493982
1493982
|
if (false) {
|
|
@@ -1588924,7 +1588924,7 @@ var import_path35 = __toESM(require("path"), 1);
|
|
|
1588924
1588924
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1588925
1588925
|
var LOGS_FOLDER_NAME = "logs";
|
|
1588926
1588926
|
function getCliSource() {
|
|
1588927
|
-
const version6 = "3.36.
|
|
1588927
|
+
const version6 = "3.36.1-2-g63cb401637";
|
|
1588928
1588928
|
return `cli@${version6}`;
|
|
1588929
1588929
|
}
|
|
1588930
1588930
|
var DebugLogger = class {
|
|
@@ -1598625,6 +1598625,11 @@ var ALLOWED_FILE_TYPES = /* @__PURE__ */ new Set([
|
|
|
1598625
1598625
|
// document files
|
|
1598626
1598626
|
"application/pdf",
|
|
1598627
1598627
|
"application/xml",
|
|
1598628
|
+
// spreadsheet files
|
|
1598629
|
+
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
|
1598630
|
+
// .xlsx
|
|
1598631
|
+
"application/x-cfb",
|
|
1598632
|
+
// .xls (and other legacy Microsoft Office formats)
|
|
1598628
1598633
|
// font files
|
|
1598629
1598634
|
"font/woff",
|
|
1598630
1598635
|
"font/woff2",
|
package/package.json
CHANGED