@fern-api/fern-api-dev 3.54.0-1-gcebacd6a60f → 3.54.0
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 +4 -9
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1498423,11 +1498423,6 @@ var Generation = class {
|
|
|
1498423
1498423
|
origin: this.model.staticExplicit("JsonUtils"),
|
|
1498424
1498424
|
namespace: this.namespaces.core
|
|
1498425
1498425
|
}),
|
|
1498426
|
-
/** Test assertion helper for JSON comparison */
|
|
1498427
|
-
JsonAssert: () => this.csharp.classReference({
|
|
1498428
|
-
origin: this.model.staticExplicit("JsonAssert"),
|
|
1498429
|
-
namespace: this.namespaces.testUtils
|
|
1498430
|
-
}),
|
|
1498431
1498426
|
/** Factory for creating custom pagination instances */
|
|
1498432
1498427
|
CustomPagerFactory: () => this.csharp.classReference({
|
|
1498433
1498428
|
origin: this.model.staticExplicit(`${this.names.classes.customPager}Factory`),
|
|
@@ -1652572,7 +1652567,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1652572
1652567
|
properties: {
|
|
1652573
1652568
|
...event,
|
|
1652574
1652569
|
...event.properties,
|
|
1652575
|
-
version: "3.54.0
|
|
1652570
|
+
version: "3.54.0",
|
|
1652576
1652571
|
usingAccessToken: true
|
|
1652577
1652572
|
}
|
|
1652578
1652573
|
});
|
|
@@ -1652622,7 +1652617,7 @@ var UserPosthogManager = class {
|
|
|
1652622
1652617
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1652623
1652618
|
event: "CLI",
|
|
1652624
1652619
|
properties: {
|
|
1652625
|
-
version: "3.54.0
|
|
1652620
|
+
version: "3.54.0",
|
|
1652626
1652621
|
...event,
|
|
1652627
1652622
|
...event.properties,
|
|
1652628
1652623
|
usingAccessToken: false,
|
|
@@ -1685764,7 +1685759,7 @@ var CliContext = class {
|
|
|
1685764
1685759
|
if (false) {
|
|
1685765
1685760
|
this.logger.error("CLI_VERSION is not defined");
|
|
1685766
1685761
|
}
|
|
1685767
|
-
return "3.54.0
|
|
1685762
|
+
return "3.54.0";
|
|
1685768
1685763
|
}
|
|
1685769
1685764
|
getCliName() {
|
|
1685770
1685765
|
if (false) {
|
|
@@ -1688877,7 +1688872,7 @@ var import_path54 = __toESM(require("path"), 1);
|
|
|
1688877
1688872
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1688878
1688873
|
var LOGS_FOLDER_NAME = "logs";
|
|
1688879
1688874
|
function getCliSource() {
|
|
1688880
|
-
const version7 = "3.54.0
|
|
1688875
|
+
const version7 = "3.54.0";
|
|
1688881
1688876
|
return `cli@${version7}`;
|
|
1688882
1688877
|
}
|
|
1688883
1688878
|
var DebugLogger = class {
|
package/package.json
CHANGED