@fern-api/fern-api-dev 5.7.9 → 5.7.10-5-ga363a8fd0e0
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 -6
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -611929,7 +611929,7 @@ var OpenAPIConverter = class extends AbstractSpecConverter {
|
|
|
611929
611929
|
const methods = ["get", "post", "put", "patch", "delete", "options", "head", "trace"];
|
|
611930
611930
|
for (const method8 of methods) {
|
|
611931
611931
|
const operation = pathItem[method8];
|
|
611932
|
-
if (operation?.security) {
|
|
611932
|
+
if (operation?.security != null && operation.security.length > 0) {
|
|
611933
611933
|
delete operation.security;
|
|
611934
611934
|
}
|
|
611935
611935
|
}
|
|
@@ -622577,7 +622577,7 @@ var AccessTokenPosthogManager = class {
|
|
|
622577
622577
|
properties: {
|
|
622578
622578
|
...event,
|
|
622579
622579
|
...event.properties,
|
|
622580
|
-
version: "5.7.
|
|
622580
|
+
version: "5.7.10-5-ga363a8fd0e0",
|
|
622581
622581
|
usingAccessToken: true
|
|
622582
622582
|
}
|
|
622583
622583
|
});
|
|
@@ -622631,7 +622631,7 @@ var UserPosthogManager = class {
|
|
|
622631
622631
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
622632
622632
|
event: "CLI",
|
|
622633
622633
|
properties: {
|
|
622634
|
-
version: "5.7.
|
|
622634
|
+
version: "5.7.10-5-ga363a8fd0e0",
|
|
622635
622635
|
...event,
|
|
622636
622636
|
...event.properties,
|
|
622637
622637
|
usingAccessToken: false,
|
|
@@ -847364,7 +847364,7 @@ var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
|
847364
847364
|
var LOGS_FOLDER_NAME = "logs";
|
|
847365
847365
|
var MAX_LOGS_DIR_SIZE_BYTES = 100 * 1024 * 1024;
|
|
847366
847366
|
function getCliSource() {
|
|
847367
|
-
const version7 = "5.7.
|
|
847367
|
+
const version7 = "5.7.10-5-ga363a8fd0e0";
|
|
847368
847368
|
return `cli@${version7}`;
|
|
847369
847369
|
}
|
|
847370
847370
|
var DebugLogger = class {
|
|
@@ -859980,7 +859980,7 @@ var LegacyDocsPublisher = class {
|
|
|
859980
859980
|
previewId,
|
|
859981
859981
|
disableTemplates: void 0,
|
|
859982
859982
|
skipUpload,
|
|
859983
|
-
cliVersion: "5.7.
|
|
859983
|
+
cliVersion: "5.7.10-5-ga363a8fd0e0",
|
|
859984
859984
|
loginCommand: "fern auth login"
|
|
859985
859985
|
});
|
|
859986
859986
|
if (taskContext.getResult() === TaskResult.Failure) {
|
|
@@ -934422,7 +934422,7 @@ var CliContext = class _CliContext {
|
|
|
934422
934422
|
if (false) {
|
|
934423
934423
|
this.logger.error("CLI_VERSION is not defined");
|
|
934424
934424
|
}
|
|
934425
|
-
return "5.7.
|
|
934425
|
+
return "5.7.10-5-ga363a8fd0e0";
|
|
934426
934426
|
}
|
|
934427
934427
|
getCliName() {
|
|
934428
934428
|
if (false) {
|
package/package.json
CHANGED