@fern-api/fern-api-dev 4.37.10 → 4.37.11-1-gb4ed40cb5a7
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 +15 -7
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -568008,7 +568008,7 @@ var RequestBodyConverter = class extends converters_exports.AbstractConverters.A
|
|
|
568008
568008
|
return {
|
|
568009
568009
|
requestBody: HttpRequestBody.inlinedRequestBody({
|
|
568010
568010
|
contentType,
|
|
568011
|
-
docs: this.description,
|
|
568011
|
+
docs: this.description ?? convertedSchema.schema?.typeDeclaration.docs,
|
|
568012
568012
|
name: this.context.casingsGenerator.generateName(this.schemaId),
|
|
568013
568013
|
extendedProperties: requestBodyTypeShape.extendedProperties,
|
|
568014
568014
|
extends: requestBodyTypeShape.extends,
|
|
@@ -568214,7 +568214,7 @@ var RequestBodyConverter = class extends converters_exports.AbstractConverters.A
|
|
|
568214
568214
|
return {
|
|
568215
568215
|
requestBody: HttpRequestBody.inlinedRequestBody({
|
|
568216
568216
|
contentType,
|
|
568217
|
-
docs:
|
|
568217
|
+
docs: this.description ?? convertedSchema.schema?.typeDeclaration.docs,
|
|
568218
568218
|
name: this.context.casingsGenerator.generateName(isStreaming ? this.streamingExtension?.streamRequestName ?? `${this.schemaId}_streaming` : this.schemaId),
|
|
568219
568219
|
extendedProperties: requestBodyTypeShape.extendedProperties,
|
|
568220
568220
|
extends: requestBodyTypeShape.extends,
|
|
@@ -581600,7 +581600,7 @@ var AccessTokenPosthogManager = class {
|
|
|
581600
581600
|
properties: {
|
|
581601
581601
|
...event,
|
|
581602
581602
|
...event.properties,
|
|
581603
|
-
version: "4.37.
|
|
581603
|
+
version: "4.37.11-1-gb4ed40cb5a7",
|
|
581604
581604
|
usingAccessToken: true
|
|
581605
581605
|
}
|
|
581606
581606
|
});
|
|
@@ -581651,7 +581651,7 @@ var UserPosthogManager = class {
|
|
|
581651
581651
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
581652
581652
|
event: "CLI",
|
|
581653
581653
|
properties: {
|
|
581654
|
-
version: "4.37.
|
|
581654
|
+
version: "4.37.11-1-gb4ed40cb5a7",
|
|
581655
581655
|
...event,
|
|
581656
581656
|
...event.properties,
|
|
581657
581657
|
usingAccessToken: false,
|
|
@@ -787754,7 +787754,7 @@ var import_path51 = __toESM(require("path"), 1);
|
|
|
787754
787754
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
787755
787755
|
var LOGS_FOLDER_NAME = "logs";
|
|
787756
787756
|
function getCliSource() {
|
|
787757
|
-
const version8 = "4.37.
|
|
787757
|
+
const version8 = "4.37.11-1-gb4ed40cb5a7";
|
|
787758
787758
|
return `cli@${version8}`;
|
|
787759
787759
|
}
|
|
787760
787760
|
var DebugLogger = class {
|
|
@@ -798549,7 +798549,7 @@ var LegacyDocsPublisher = class {
|
|
|
798549
798549
|
previewId: void 0,
|
|
798550
798550
|
disableTemplates: void 0,
|
|
798551
798551
|
skipUpload,
|
|
798552
|
-
cliVersion: "4.37.
|
|
798552
|
+
cliVersion: "4.37.11-1-gb4ed40cb5a7"
|
|
798553
798553
|
});
|
|
798554
798554
|
if (taskContext.getResult() === TaskResult.Failure) {
|
|
798555
798555
|
return { success: false };
|
|
@@ -818053,6 +818053,11 @@ var Generation = class {
|
|
|
818053
818053
|
origin: this.model.staticExplicit("Closed"),
|
|
818054
818054
|
namespace: this.namespaces.webSocketsCore
|
|
818055
818055
|
}),
|
|
818056
|
+
/** Reconnection info for WebSocket connections */
|
|
818057
|
+
ReconnectionInfo: () => this.csharp.classReference({
|
|
818058
|
+
origin: this.model.staticExplicit("ReconnectionInfo"),
|
|
818059
|
+
namespace: this.namespaces.webSocketsCore
|
|
818060
|
+
}),
|
|
818056
818061
|
/**
|
|
818057
818062
|
* Custom pagination class for iterating over paged results.
|
|
818058
818063
|
* @param itemType - The type of items in each page
|
|
@@ -839440,6 +839445,9 @@ var DynamicTypeLiteralMapper5 = class {
|
|
|
839440
839445
|
return rust_exports.Expression.none();
|
|
839441
839446
|
}
|
|
839442
839447
|
const innerTypeRef = typeReference2.value || { type: "unknown" };
|
|
839448
|
+
if (innerTypeRef.type === "optional" || innerTypeRef.type === "nullable") {
|
|
839449
|
+
return this.convertOptional({ typeReference: innerTypeRef, value });
|
|
839450
|
+
}
|
|
839443
839451
|
const innerValue = this.convert({ typeReference: innerTypeRef, value });
|
|
839444
839452
|
return rust_exports.Expression.functionCall("Some", [innerValue]);
|
|
839445
839453
|
}
|
|
@@ -871135,7 +871143,7 @@ var CliContext = class {
|
|
|
871135
871143
|
if (false) {
|
|
871136
871144
|
this.logger.error("CLI_VERSION is not defined");
|
|
871137
871145
|
}
|
|
871138
|
-
return "4.37.
|
|
871146
|
+
return "4.37.11-1-gb4ed40cb5a7";
|
|
871139
871147
|
}
|
|
871140
871148
|
getCliName() {
|
|
871141
871149
|
if (false) {
|
package/package.json
CHANGED