@fern-api/fern-api-dev 3.47.7 → 3.47.8
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
|
@@ -1429260,7 +1429260,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1429260
1429260
|
properties: {
|
|
1429261
1429261
|
...event,
|
|
1429262
1429262
|
...event.properties,
|
|
1429263
|
-
version: "3.47.
|
|
1429263
|
+
version: "3.47.8",
|
|
1429264
1429264
|
usingAccessToken: true
|
|
1429265
1429265
|
}
|
|
1429266
1429266
|
});
|
|
@@ -1429359,7 +1429359,7 @@ var UserPosthogManager = class {
|
|
|
1429359
1429359
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1429360
1429360
|
event: "CLI",
|
|
1429361
1429361
|
properties: {
|
|
1429362
|
-
version: "3.47.
|
|
1429362
|
+
version: "3.47.8",
|
|
1429363
1429363
|
...event,
|
|
1429364
1429364
|
...event.properties,
|
|
1429365
1429365
|
usingAccessToken: false,
|
|
@@ -1508785,7 +1508785,7 @@ var CliContext = class {
|
|
|
1508785
1508785
|
if (false) {
|
|
1508786
1508786
|
this.logger.error("CLI_VERSION is not defined");
|
|
1508787
1508787
|
}
|
|
1508788
|
-
return "3.47.
|
|
1508788
|
+
return "3.47.8";
|
|
1508789
1508789
|
}
|
|
1508790
1508790
|
getCliName() {
|
|
1508791
1508791
|
if (false) {
|
|
@@ -1557307,7 +1557307,7 @@ var SecuritySchemeConverter = class extends AbstractConverter {
|
|
|
1557307
1557307
|
convert() {
|
|
1557308
1557308
|
switch (this.securityScheme.type) {
|
|
1557309
1557309
|
case "http": {
|
|
1557310
|
-
if (this.securityScheme.scheme === "bearer") {
|
|
1557310
|
+
if (this.securityScheme.scheme?.toLowerCase() === "bearer") {
|
|
1557311
1557311
|
return AuthScheme.bearer({
|
|
1557312
1557312
|
key: this.schemeId,
|
|
1557313
1557313
|
token: this.context.casingsGenerator.generateName("token"),
|
|
@@ -1557315,7 +1557315,7 @@ var SecuritySchemeConverter = class extends AbstractConverter {
|
|
|
1557315
1557315
|
docs: this.securityScheme.description
|
|
1557316
1557316
|
});
|
|
1557317
1557317
|
}
|
|
1557318
|
-
if (this.securityScheme.scheme === "basic") {
|
|
1557318
|
+
if (this.securityScheme.scheme?.toLowerCase() === "basic") {
|
|
1557319
1557319
|
return AuthScheme.basic({
|
|
1557320
1557320
|
key: this.schemeId,
|
|
1557321
1557321
|
username: this.context.casingsGenerator.generateName("username"),
|
|
@@ -1609941,7 +1609941,7 @@ var import_path40 = __toESM(require("path"), 1);
|
|
|
1609941
1609941
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1609942
1609942
|
var LOGS_FOLDER_NAME = "logs";
|
|
1609943
1609943
|
function getCliSource() {
|
|
1609944
|
-
const version7 = "3.47.
|
|
1609944
|
+
const version7 = "3.47.8";
|
|
1609945
1609945
|
return `cli@${version7}`;
|
|
1609946
1609946
|
}
|
|
1609947
1609947
|
var DebugLogger = class {
|
package/package.json
CHANGED