@fern-api/fern-api-dev 3.30.3-1-g1afe186e21 → 3.30.4
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 +6 -4
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1300366,6 +1300366,7 @@ var SPECIAL_TOKENS = [
|
|
|
1300366
1300366
|
"BT",
|
|
1300367
1300367
|
"MV",
|
|
1300368
1300368
|
// finance
|
|
1300369
|
+
"ACH",
|
|
1300369
1300370
|
"USD",
|
|
1300370
1300371
|
"EUR",
|
|
1300371
1300372
|
"GBP",
|
|
@@ -1413664,7 +1413665,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1413664
1413665
|
properties: {
|
|
1413665
1413666
|
...event,
|
|
1413666
1413667
|
...event.properties,
|
|
1413667
|
-
version: "3.30.
|
|
1413668
|
+
version: "3.30.4",
|
|
1413668
1413669
|
usingAccessToken: true
|
|
1413669
1413670
|
}
|
|
1413670
1413671
|
});
|
|
@@ -1413763,7 +1413764,7 @@ var UserPosthogManager = class {
|
|
|
1413763
1413764
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1413764
1413765
|
event: "CLI",
|
|
1413765
1413766
|
properties: {
|
|
1413766
|
-
version: "3.30.
|
|
1413767
|
+
version: "3.30.4",
|
|
1413767
1413768
|
...event,
|
|
1413768
1413769
|
...event.properties,
|
|
1413769
1413770
|
usingAccessToken: false,
|
|
@@ -1418955,6 +1418956,7 @@ var SPECIAL_TOKENS3 = [
|
|
|
1418955
1418956
|
"BT",
|
|
1418956
1418957
|
"MV",
|
|
1418957
1418958
|
// finance
|
|
1418959
|
+
"ACH",
|
|
1418958
1418960
|
"USD",
|
|
1418959
1418961
|
"EUR",
|
|
1418960
1418962
|
"GBP",
|
|
@@ -1493829,7 +1493831,7 @@ var CliContext = class {
|
|
|
1493829
1493831
|
if (false) {
|
|
1493830
1493832
|
this.logger.error("CLI_VERSION is not defined");
|
|
1493831
1493833
|
}
|
|
1493832
|
-
return "3.30.
|
|
1493834
|
+
return "3.30.4";
|
|
1493833
1493835
|
}
|
|
1493834
1493836
|
getCliName() {
|
|
1493835
1493837
|
if (false) {
|
|
@@ -1588650,7 +1588652,7 @@ var import_path35 = __toESM(require("path"), 1);
|
|
|
1588650
1588652
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1588651
1588653
|
var LOGS_FOLDER_NAME = "logs";
|
|
1588652
1588654
|
function getCliSource() {
|
|
1588653
|
-
const version6 = "3.30.
|
|
1588655
|
+
const version6 = "3.30.4";
|
|
1588654
1588656
|
return `cli@${version6}`;
|
|
1588655
1588657
|
}
|
|
1588656
1588658
|
var DebugLogger = class {
|
package/package.json
CHANGED