Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
export default {
// Self-contained record type so the emitted .d.ts does not reference any
// external package (the downstream `seamapi/types` repo re-exports this file
// and does not depend on `openapi3-ts`). Wide enough to accept the generated
// literal; specific enough to give tsgo a named type to point at instead of
// inferring from the 83k-line literal (TS7056).
type OpenAPISpec = Record<string, unknown>

const openapi: OpenAPISpec = {
components: {
schemas: {
access_code: {
Expand Down Expand Up @@ -83913,3 +83920,5 @@ export default {
{ description: 'workspaces', name: '/workspaces' },
],
}

export default openapi
Loading