Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
subpackage definitions not needed at root level
Browse files Browse the repository at this point in the history
RohinBhargava committed Dec 5, 2024
1 parent 37dad44 commit eb6ffbb
Showing 4 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -20143,6 +20143,7 @@
"description": "Response to a request to list training-step metrics of a fine-tuned model."
}
},
"subpackages": {},
"auths": {
"bearerAuth": {
"type": "bearerAuth"
Original file line number Diff line number Diff line change
@@ -709,5 +709,6 @@
}
}
},
"subpackages": {},
"auths": {}
}
Original file line number Diff line number Diff line change
@@ -671,5 +671,6 @@
}
}
},
"subpackages": {},
"auths": {}
}
Original file line number Diff line number Diff line change
@@ -105,10 +105,11 @@ export class OpenApiDocumentConverterNode extends BaseOpenApiV3_1ConverterNode<
id: FernRegistry.ApiDefinitionId(apiDefinitionId),
endpoints: endpoints ?? {},
// Websockets are not implemented in OAS, but are in AsyncAPI
websockets: {} as Record<FernRegistry.WebSocketId, FernRegistry.api.latest.WebSocketChannel>,
websockets: {},
webhooks: { ...(this.webhooks?.convert() ?? {}), ...(webhookEndpoints ?? {}) },
types,
subpackages: undefined,
// This is not necessary and will be removed
subpackages: {},
auths: this.auth?.convert() ?? {},
// TODO: Implement globalHeaders
globalHeaders: undefined,

0 comments on commit eb6ffbb

Please sign in to comment.