@fern-api/fern-api-dev 3.53.0 → 3.53.1-20-gbc2955d5859
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 -4
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1443583,6 +1443583,9 @@ function maybeIntegerValidation(v23) {
|
|
|
1443583
1443583
|
return void 0;
|
|
1443584
1443584
|
}
|
|
1443585
1443585
|
function getStringExampleOfLength(length) {
|
|
1443586
|
+
if (length <= 0) {
|
|
1443587
|
+
return "";
|
|
1443588
|
+
}
|
|
1443586
1443589
|
if (length <= examples_exports.SAMPLE_STRINGS.length) {
|
|
1443587
1443590
|
const sampleString = examples_exports.SAMPLE_STRINGS[length - 1];
|
|
1443588
1443591
|
if (sampleString) {
|
|
@@ -1651198,7 +1651201,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1651198
1651201
|
properties: {
|
|
1651199
1651202
|
...event,
|
|
1651200
1651203
|
...event.properties,
|
|
1651201
|
-
version: "3.53.
|
|
1651204
|
+
version: "3.53.1-20-gbc2955d5859",
|
|
1651202
1651205
|
usingAccessToken: true
|
|
1651203
1651206
|
}
|
|
1651204
1651207
|
});
|
|
@@ -1651248,7 +1651251,7 @@ var UserPosthogManager = class {
|
|
|
1651248
1651251
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1651249
1651252
|
event: "CLI",
|
|
1651250
1651253
|
properties: {
|
|
1651251
|
-
version: "3.53.
|
|
1651254
|
+
version: "3.53.1-20-gbc2955d5859",
|
|
1651252
1651255
|
...event,
|
|
1651253
1651256
|
...event.properties,
|
|
1651254
1651257
|
usingAccessToken: false,
|
|
@@ -1684390,7 +1684393,7 @@ var CliContext = class {
|
|
|
1684390
1684393
|
if (false) {
|
|
1684391
1684394
|
this.logger.error("CLI_VERSION is not defined");
|
|
1684392
1684395
|
}
|
|
1684393
|
-
return "3.53.
|
|
1684396
|
+
return "3.53.1-20-gbc2955d5859";
|
|
1684394
1684397
|
}
|
|
1684395
1684398
|
getCliName() {
|
|
1684396
1684399
|
if (false) {
|
|
@@ -1687503,7 +1687506,7 @@ var import_path54 = __toESM(require("path"), 1);
|
|
|
1687503
1687506
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1687504
1687507
|
var LOGS_FOLDER_NAME = "logs";
|
|
1687505
1687508
|
function getCliSource() {
|
|
1687506
|
-
const version7 = "3.53.
|
|
1687509
|
+
const version7 = "3.53.1-20-gbc2955d5859";
|
|
1687507
1687510
|
return `cli@${version7}`;
|
|
1687508
1687511
|
}
|
|
1687509
1687512
|
var DebugLogger = class {
|
package/package.json
CHANGED