@fern-api/fern-api-dev 5.15.2 → 5.15.3
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 +8 -5
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -615802,6 +615802,9 @@ var NoDuplicateOverridesRule = {
|
|
|
615802
615802
|
continue;
|
|
615803
615803
|
}
|
|
615804
615804
|
const operationObj = operation;
|
|
615805
|
+
if (operationObj?.["x-fern-ignore"] === true) {
|
|
615806
|
+
continue;
|
|
615807
|
+
}
|
|
615805
615808
|
const rawSdkGroupName = operationObj?.["x-fern-sdk-group-name"];
|
|
615806
615809
|
const sdkGroupName = Array.isArray(rawSdkGroupName) ? rawSdkGroupName.join(".") : rawSdkGroupName;
|
|
615807
615810
|
const sdkMethodName = operationObj?.["x-fern-sdk-method-name"];
|
|
@@ -623606,7 +623609,7 @@ var AccessTokenPosthogManager = class {
|
|
|
623606
623609
|
properties: {
|
|
623607
623610
|
...event,
|
|
623608
623611
|
...event.properties,
|
|
623609
|
-
version: "5.15.
|
|
623612
|
+
version: "5.15.3",
|
|
623610
623613
|
usingAccessToken: true
|
|
623611
623614
|
}
|
|
623612
623615
|
});
|
|
@@ -623660,7 +623663,7 @@ var UserPosthogManager = class {
|
|
|
623660
623663
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
623661
623664
|
event: "CLI",
|
|
623662
623665
|
properties: {
|
|
623663
|
-
version: "5.15.
|
|
623666
|
+
version: "5.15.3",
|
|
623664
623667
|
...event,
|
|
623665
623668
|
...event.properties,
|
|
623666
623669
|
usingAccessToken: false,
|
|
@@ -848611,7 +848614,7 @@ var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
|
848611
848614
|
var LOGS_FOLDER_NAME = "logs";
|
|
848612
848615
|
var MAX_LOGS_DIR_SIZE_BYTES = 100 * 1024 * 1024;
|
|
848613
848616
|
function getCliSource() {
|
|
848614
|
-
const version7 = "5.15.
|
|
848617
|
+
const version7 = "5.15.3";
|
|
848615
848618
|
return `cli@${version7}`;
|
|
848616
848619
|
}
|
|
848617
848620
|
var DebugLogger = class {
|
|
@@ -861419,7 +861422,7 @@ var LegacyDocsPublisher = class {
|
|
|
861419
861422
|
previewId,
|
|
861420
861423
|
disableTemplates: void 0,
|
|
861421
861424
|
skipUpload,
|
|
861422
|
-
cliVersion: "5.15.
|
|
861425
|
+
cliVersion: "5.15.3",
|
|
861423
861426
|
loginCommand: "fern auth login"
|
|
861424
861427
|
});
|
|
861425
861428
|
if (taskContext.getResult() === TaskResult.Failure) {
|
|
@@ -935944,7 +935947,7 @@ var CliContext = class _CliContext {
|
|
|
935944
935947
|
if (false) {
|
|
935945
935948
|
this.logger.error("CLI_VERSION is not defined");
|
|
935946
935949
|
}
|
|
935947
|
-
return "5.15.
|
|
935950
|
+
return "5.15.3";
|
|
935948
935951
|
}
|
|
935949
935952
|
getCliName() {
|
|
935950
935953
|
if (false) {
|
package/package.json
CHANGED