@fern-api/fern-api-dev 4.37.10 → 4.37.11

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.
Files changed (2) hide show
  1. package/cli.cjs +12 -7
  2. 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: void 0,
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.10",
581603
+ version: "4.37.11",
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.10",
581654
+ version: "4.37.11",
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.10";
787757
+ const version8 = "4.37.11";
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.10"
798552
+ cliVersion: "4.37.11"
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
@@ -871135,7 +871140,7 @@ var CliContext = class {
871135
871140
  if (false) {
871136
871141
  this.logger.error("CLI_VERSION is not defined");
871137
871142
  }
871138
- return "4.37.10";
871143
+ return "4.37.11";
871139
871144
  }
871140
871145
  getCliName() {
871141
871146
  if (false) {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "4.37.10",
2
+ "version": "4.37.11",
3
3
  "repository": {
4
4
  "type": "git",
5
5
  "url": "git+https://github.com/fern-api/fern.git",