@kubb/adapter-oas 5.0.0-alpha.3 → 5.0.0-alpha.30

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubb/adapter-oas",
3
- "version": "5.0.0-alpha.3",
3
+ "version": "5.0.0-alpha.30",
4
4
  "description": "OpenAPI / Swagger adapter for Kubb — converts OAS input into a @kubb/ast RootNode.",
5
5
  "keywords": [
6
6
  "openapi",
@@ -36,18 +36,18 @@
36
36
  "!/**/__snapshots__/**"
37
37
  ],
38
38
  "dependencies": {
39
- "@kubb/fabric-core": "0.13.3",
40
- "@redocly/openapi-core": "^2.22.1",
39
+ "@kubb/fabric-core": "0.15.1",
40
+ "@redocly/openapi-core": "^2.25.4",
41
41
  "@stoplight/yaml": "^4.3.0",
42
42
  "fflate": "^0.8.2",
43
43
  "jsonpointer": "^5.0.1",
44
44
  "oas": "^31.1.2",
45
- "oas-normalize": "^16.0.2",
45
+ "oas-normalize": "^16.0.4",
46
46
  "openapi-types": "^12.1.3",
47
- "remeda": "^2.33.6",
47
+ "remeda": "^2.33.7",
48
48
  "swagger2openapi": "^7.0.8",
49
- "@kubb/ast": "5.0.0-alpha.3",
50
- "@kubb/core": "5.0.0-alpha.3"
49
+ "@kubb/ast": "5.0.0-alpha.30",
50
+ "@kubb/core": "5.0.0-alpha.30"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/swagger2openapi": "^7.0.4",
package/src/adapter.ts CHANGED
@@ -1,121 +1,128 @@
1
- import path from 'node:path'
2
- import { createRoot } from '@kubb/ast'
3
- import type { AdapterSource } from '@kubb/core'
4
- import { defineAdapter } from '@kubb/core'
5
- import { resolveServerUrl } from './oas/resolveServerUrl.ts'
6
- import { parseFromConfig } from './oas/utils.ts'
7
- import { createOasParser } from './parser.ts'
8
- import type { OasAdapter } from './types.ts'
9
- import { getImports } from './utils.ts'
1
+ import { collectImports, createRoot } from '@kubb/ast'
2
+ import type { RootNode } from '@kubb/ast/types'
3
+ import { createAdapter } from '@kubb/core'
4
+ import { DEFAULT_PARSER_OPTIONS } from './constants.ts'
5
+ import { applyDiscriminatorInheritance } from './discriminator.ts'
6
+ import { parseFromConfig, validateDocument } from './factory.ts'
7
+ import { parseOas } from './parser.ts'
8
+ import { resolveServerUrl } from './resolvers.ts'
9
+ import type { AdapterOas, Document } from './types.ts'
10
10
 
11
- export const adapterOasName = 'oas' satisfies OasAdapter['name']
11
+ /**
12
+ * Stable string identifier for the OAS adapter used in Kubb's adapter registry.
13
+ */
14
+ export const adapterOasName = 'oas' satisfies AdapterOas['name']
12
15
 
13
16
  /**
14
- * Creates an OpenAPI / Swagger adapter for Kubb.
17
+ * Creates the default OpenAPI / Swagger adapter for Kubb.
15
18
  *
16
- * This is the default adapter you can omit it from your config when using
17
- * an OpenAPI spec, but supplying it explicitly lets you pass options.
19
+ * Parses the spec, optionally validates it, resolves the base URL, and converts
20
+ * everything into a `RootNode` that downstream plugins consume.
18
21
  *
19
22
  * @example
20
23
  * ```ts
21
24
  * import { defineConfig } from '@kubb/core'
22
25
  * import { adapterOas } from '@kubb/adapter-oas'
26
+ * import { pluginTs } from '@kubb/plugin-ts'
23
27
  *
24
28
  * export default defineConfig({
25
- * adapter: adapterOas({ validate: true, dateType: 'date' }),
26
- * input: { path: './openapi.yaml' },
27
- * plugins: [pluginTs(), pluginZod()],
29
+ * adapter: adapterOas({ dateType: 'date', serverIndex: 0 }),
30
+ * input: { path: './openapi.yaml' },
31
+ * plugins: [pluginTs()],
28
32
  * })
29
33
  * ```
30
34
  */
31
- export const adapterOas = defineAdapter<OasAdapter>((options) => {
35
+ export const adapterOas = createAdapter<AdapterOas>((options) => {
32
36
  const {
33
37
  validate = true,
34
- oasClass,
35
38
  contentType,
36
39
  serverIndex,
37
40
  serverVariables,
38
41
  discriminator = 'strict',
39
- collisionDetection = false,
40
- dateType = 'string',
41
- integerType = 'number',
42
- unknownType = 'any',
43
- emptySchemaType = unknownType,
42
+ dateType = DEFAULT_PARSER_OPTIONS.dateType,
43
+ integerType = DEFAULT_PARSER_OPTIONS.integerType,
44
+ unknownType = DEFAULT_PARSER_OPTIONS.unknownType,
45
+ enumSuffix = DEFAULT_PARSER_OPTIONS.enumSuffix,
46
+ emptySchemaType = unknownType || DEFAULT_PARSER_OPTIONS.emptySchemaType,
44
47
  } = options
45
48
 
46
- // Mutable Map shared between `options` and each `parse()` call.
47
- // Populated (and replaced) on every parse so consumers always see the latest state.
48
- const nameMapping = new Map<string, string>()
49
+ // Let-binding so parse() can replace it with a simple reassignment (no clear+loop).
50
+ let nameMapping = new Map<string, string>()
51
+ let parsedDocument: Document | null
52
+ let rootNode: RootNode | null
49
53
 
50
54
  return {
51
55
  name: adapterOasName,
52
- options: {
53
- validate,
54
- oasClass,
55
- contentType,
56
- serverIndex,
57
- serverVariables,
58
- discriminator,
59
- collisionDetection,
60
- dateType,
61
- integerType,
62
- unknownType,
63
- emptySchemaType,
64
- nameMapping,
56
+ get options() {
57
+ return {
58
+ validate,
59
+ contentType,
60
+ serverIndex,
61
+ serverVariables,
62
+ discriminator,
63
+ dateType,
64
+ integerType,
65
+ unknownType,
66
+ emptySchemaType,
67
+ enumSuffix,
68
+ nameMapping,
69
+ }
70
+ },
71
+ get document() {
72
+ return parsedDocument
73
+ },
74
+ get rootNode() {
75
+ return rootNode
65
76
  },
66
77
  getImports(node, resolve) {
67
- return getImports({ node, nameMapping, resolve })
78
+ return collectImports({
79
+ node,
80
+ nameMapping,
81
+ resolve: (schemaName) => {
82
+ const result = resolve(schemaName)
83
+ if (!result) return
84
+
85
+ return { name: [result.name], path: result.path }
86
+ },
87
+ })
68
88
  },
69
89
  async parse(source) {
70
- const fakeConfig = sourceToFakeConfig(source)
71
- const oas = await parseFromConfig(fakeConfig, oasClass)
72
-
73
- oas.setOptions({ contentType, discriminator, collisionDetection })
90
+ const document = await parseFromConfig(source)
74
91
 
75
92
  if (validate) {
76
- try {
77
- await oas.validate()
78
- } catch (_err) {
79
- // Validation failures are non-fatal — mirror plugin-oas behavior
80
- }
93
+ await validateDocument(document)
81
94
  }
82
95
 
83
- const server = serverIndex !== undefined ? oas.api.servers?.at(serverIndex) : undefined
96
+ const server = serverIndex !== undefined ? document.servers?.at(serverIndex) : undefined
84
97
  const baseURL = server?.url ? resolveServerUrl(server, serverVariables) : undefined
85
98
 
86
- const parser = createOasParser(oas, { contentType, collisionDetection })
99
+ const { root: parsedRoot, nameMapping: parsedNameMapping } = parseOas(document, {
100
+ contentType,
101
+ dateType,
102
+ integerType,
103
+ unknownType,
104
+ emptySchemaType,
105
+ enumSuffix,
106
+ })
87
107
 
88
- // Sync the adapter's shared nameMapping with the one computed by the parser.
89
- nameMapping.clear()
90
- for (const [key, value] of parser.nameMapping) {
91
- nameMapping.set(key, value)
92
- }
108
+ const node = discriminator === 'inherit' ? applyDiscriminatorInheritance(parsedRoot) : parsedRoot
93
109
 
94
- const root = parser.parse({ dateType, integerType, unknownType, emptySchemaType })
110
+ // This must happen after parseOas() because legacy enum remapping is finalized there.
111
+ nameMapping = parsedNameMapping
112
+ // Expose the raw document so consumers (e.g. plugin-redoc) can access it.
113
+ parsedDocument = document
95
114
 
96
- return createRoot({
97
- ...root,
115
+ rootNode = createRoot({
116
+ ...node,
98
117
  meta: {
99
- title: oas.api.info?.title,
100
- version: oas.api.info?.version,
118
+ title: document.info?.title,
119
+ description: document.info?.description,
120
+ version: document.info?.version,
101
121
  baseURL,
102
122
  },
103
123
  })
124
+
125
+ return rootNode
104
126
  },
105
127
  }
106
128
  })
107
-
108
- // TODO: remove once parseFromConfig accepts AdapterSource directly
109
- function sourceToFakeConfig(source: AdapterSource): Parameters<typeof parseFromConfig>[0] {
110
- switch (source.type) {
111
- case 'path':
112
- return { root: path.dirname(source.path), input: { path: source.path } } as Parameters<typeof parseFromConfig>[0]
113
- case 'data':
114
- return { root: process.cwd(), input: { data: source.data } } as Parameters<typeof parseFromConfig>[0]
115
- case 'paths':
116
- return {
117
- root: source.paths[0] ? path.dirname(source.paths[0]) : process.cwd(),
118
- input: source.paths.map((p) => ({ path: p })),
119
- } as Parameters<typeof parseFromConfig>[0]
120
- }
121
- }
package/src/constants.ts CHANGED
@@ -1,41 +1,72 @@
1
- import type { MediaType, SchemaType } from '@kubb/ast/types'
2
- import type { HttpMethods as OASHttpMethods } from 'oas/types'
1
+ import { schemaTypes } from '@kubb/ast'
2
+ import type { ParserOptions, ScalarSchemaType, SchemaType } from '@kubb/ast/types'
3
3
 
4
- // ─── Merge defaults ────────────────────────────────────────────────────────────
4
+ /**
5
+ * Default parser options applied when no explicit options are provided.
6
+ *
7
+ * @example
8
+ * ```ts
9
+ * import { DEFAULT_PARSER_OPTIONS } from '@kubb/adapter-oas'
10
+ *
11
+ * const parser = createOasParser(oas)
12
+ * const root = parser.parse({ ...DEFAULT_PARSER_OPTIONS, dateType: 'date' })
13
+ * ```
14
+ */
15
+ export const DEFAULT_PARSER_OPTIONS = {
16
+ dateType: 'string',
17
+ integerType: 'number',
18
+ unknownType: 'any',
19
+ emptySchemaType: 'any',
20
+ enumSuffix: 'enum',
21
+ } as const satisfies ParserOptions
5
22
 
6
23
  /**
7
- * OpenAPI version string written into merged document stubs.
24
+ * OpenAPI version string written into the stub document created during multi-spec merges.
8
25
  */
9
26
  export const MERGE_OPENAPI_VERSION = '3.0.0' as const
10
27
 
11
28
  /**
12
- * Fallback `info.title` used when merging multiple API documents.
29
+ * Fallback `info.title` placed in the stub document when merging multiple API files.
13
30
  */
14
31
  export const MERGE_DEFAULT_TITLE = 'Merged API' as const
15
32
 
16
33
  /**
17
- * Fallback `info.version` used when merging multiple API documents.
34
+ * Fallback `info.version` placed in the stub document when merging multiple API files.
18
35
  */
19
36
  export const MERGE_DEFAULT_VERSION = '1.0.0' as const
20
37
 
21
- // ─── Schema analysis ───────────────────────────────────────────────────────────
22
-
23
38
  /**
24
- * JSON Schema keywords that indicate structural composition.
25
- * A schema fragment containing any of these keys must not be inlined into its
26
- * parent during `allOf` flattening it carries semantic meaning of its own.
39
+ * Set of JSON Schema keywords that prevent a schema fragment from being inlined during `allOf` flattening.
40
+ *
41
+ * A fragment that contains any of these keys carries structural meaning of its own and must stay as a separate
42
+ * intersection member rather than being merged into the parent.
43
+ *
44
+ * @example
45
+ * ```ts
46
+ * import { structuralKeys } from '@kubb/adapter-oas'
47
+ *
48
+ * const isStructural = Object.keys(fragment).some((key) => structuralKeys.has(key))
49
+ * // true when fragment has e.g. 'properties' or 'oneOf'
50
+ * ```
27
51
  */
28
- export const structuralKeys = new Set<string>(['properties', 'items', 'additionalProperties', 'oneOf', 'anyOf', 'allOf', 'not'])
52
+ export const structuralKeys = new Set(['properties', 'items', 'additionalProperties', 'oneOf', 'anyOf', 'allOf', 'not'] as const)
29
53
 
30
54
  /**
31
- * Maps OAS/JSON Schema `format` strings to their Kubb `SchemaType` equivalents.
55
+ * Static map from OAS `format` strings to Kubb `SchemaType` values.
32
56
  *
33
- * Only formats that need a type different from the raw OAS `type` are listed.
34
- * `int64`, `date-time`, `date`, and `time` are handled separately because their
35
- * mapping depends on runtime parser options.
57
+ * Only formats whose AST type differs from the OAS `type` field appear here.
58
+ * Formats that depend on runtime options (`int64`, `date-time`, `date`, `time`) are handled separately
59
+ * in the parser. `ipv4` and `ipv6` map to their own dedicated schema types; `hostname` and
60
+ * `idn-hostname` map to `'url'` as the closest generic string-format type.
36
61
  *
37
- * Note: `ipv4`, `ipv6`, and `hostname` map to `'url'` — the closest supported
38
- * scalar type in the Kubb AST, even though these are not strictly URLs.
62
+ * @example
63
+ * ```ts
64
+ * import { formatMap } from '@kubb/adapter-oas'
65
+ *
66
+ * formatMap['uuid'] // 'uuid'
67
+ * formatMap['binary'] // 'blob'
68
+ * formatMap['float'] // 'number'
69
+ * ```
39
70
  */
40
71
  export const formatMap = {
41
72
  uuid: 'uuid',
@@ -44,8 +75,8 @@ export const formatMap = {
44
75
  uri: 'url',
45
76
  'uri-reference': 'url',
46
77
  url: 'url',
47
- ipv4: 'url',
48
- ipv6: 'url',
78
+ ipv4: 'ipv4',
79
+ ipv6: 'ipv6',
49
80
  hostname: 'url',
50
81
  'idn-hostname': 'url',
51
82
  binary: 'blob',
@@ -58,53 +89,23 @@ export const formatMap = {
58
89
  } as const satisfies Record<string, SchemaType>
59
90
 
60
91
  /**
61
- * Exhaustive list of media types that Kubb recognizes.
62
- * Kept as a module-level constant to avoid re-allocating the array on every call.
63
- */
64
- export const knownMediaTypes = [
65
- 'application/json',
66
- 'application/xml',
67
- 'application/x-www-form-urlencoded',
68
- 'application/octet-stream',
69
- 'application/pdf',
70
- 'application/zip',
71
- 'application/graphql',
72
- 'multipart/form-data',
73
- 'text/plain',
74
- 'text/html',
75
- 'text/csv',
76
- 'text/xml',
77
- 'image/png',
78
- 'image/jpeg',
79
- 'image/gif',
80
- 'image/webp',
81
- 'image/svg+xml',
82
- 'audio/mpeg',
83
- 'video/mp4',
84
- ] as const satisfies ReadonlyArray<MediaType>
85
-
86
- /**
87
- * Vendor extension keys used to attach human-readable labels to enum values.
88
- * Checked in priority order: the first key found wins.
92
+ * Vendor extension keys that attach human-readable labels to enum values, checked in priority order.
93
+ *
94
+ * @example
95
+ * ```ts
96
+ * import { enumExtensionKeys } from '@kubb/adapter-oas'
97
+ *
98
+ * const key = enumExtensionKeys.find((k) => k in schema) // 'x-enumNames' | 'x-enum-varnames' | undefined
99
+ * ```
89
100
  */
90
101
  export const enumExtensionKeys = ['x-enumNames', 'x-enum-varnames'] as const
91
102
 
92
- // ─── HTTP ──────────────────────────────────────────────────────────────────────
93
-
94
103
  /**
95
- * Canonical HTTP method names for the Kubb OAS layer.
96
- * Keys are uppercase (used in generated code); values are the lowercase strings
97
- * that the `oas` library uses internally.
98
- *
99
- * TODO(v5): remove — use `httpMethods` from `@kubb/ast`
104
+ * Maps `'any' | 'unknown' | 'void'` option strings to their `ScalarSchemaType` constant.
105
+ * Replaces a plain object lookup with a `Map` for explicit key membership testing via `.has()`.
100
106
  */
101
- export const httpMethods = {
102
- GET: 'get',
103
- POST: 'post',
104
- PUT: 'put',
105
- PATCH: 'patch',
106
- DELETE: 'delete',
107
- HEAD: 'head',
108
- OPTIONS: 'options',
109
- TRACE: 'trace',
110
- } as const satisfies Record<Uppercase<OASHttpMethods>, OASHttpMethods>
107
+ export const typeOptionMap = new Map<'any' | 'unknown' | 'void', ScalarSchemaType>([
108
+ ['any', schemaTypes.any],
109
+ ['unknown', schemaTypes.unknown],
110
+ ['void', schemaTypes.void],
111
+ ])
@@ -0,0 +1,99 @@
1
+ import { createProperty, createSchema, narrowSchema, transform } from '@kubb/ast'
2
+ import type { RootNode } from '@kubb/ast/types'
3
+
4
+ type DiscriminatorTarget = { propertyName: string; enumValues: Array<string | number | boolean> }
5
+
6
+ /**
7
+ * Injects discriminator enum values into child schemas so they know which value identifies them.
8
+ *
9
+ * Finds every union schema in `root.schemas` that has a `discriminatorPropertyName`, collects the
10
+ * enum value each union member is mapped to, then adds (or replaces) that property on the matching
11
+ * child object schema.
12
+ *
13
+ * Returns a new `RootNode` — the original is never mutated.
14
+ *
15
+ * @example
16
+ * ```ts
17
+ * const { root } = parseOas(document, options)
18
+ * const next = applyDiscriminatorInheritance(root)
19
+ * ```
20
+ */
21
+ export function applyDiscriminatorInheritance(root: RootNode): RootNode {
22
+ const childMap = new Map<string, DiscriminatorTarget>()
23
+
24
+ for (const schema of root.schemas) {
25
+ // Case 1: top-level schema is a union (oneOf/anyOf with discriminator)
26
+ // Case 2: top-level schema is an intersection wrapping a union (oneOf/anyOf + shared properties)
27
+ let unionNode = narrowSchema(schema, 'union')
28
+
29
+ if (!unionNode) {
30
+ const intersectionMembers = narrowSchema(schema, 'intersection')?.members
31
+ if (intersectionMembers) {
32
+ for (const m of intersectionMembers) {
33
+ const u = narrowSchema(m, 'union')
34
+ if (u) {
35
+ unionNode = u
36
+ break
37
+ }
38
+ }
39
+ }
40
+ }
41
+
42
+ if (!unionNode?.discriminatorPropertyName || !unionNode.members) continue
43
+
44
+ const { discriminatorPropertyName, members } = unionNode
45
+
46
+ for (const member of members) {
47
+ // Members with a discriminant value are intersections: [RefSchemaNode, ObjectSchemaNode]
48
+ const intersectionNode = narrowSchema(member, 'intersection')
49
+ if (!intersectionNode?.members) continue
50
+
51
+ let refNode: ReturnType<typeof narrowSchema<'ref'>> | undefined
52
+ let objNode: ReturnType<typeof narrowSchema<'object'>> | undefined
53
+
54
+ for (const m of intersectionNode.members) {
55
+ refNode ??= narrowSchema(m, 'ref')
56
+ objNode ??= narrowSchema(m, 'object')
57
+ }
58
+
59
+ if (!refNode?.name || !objNode) continue
60
+
61
+ const prop = objNode.properties.find((p) => p.name === discriminatorPropertyName)
62
+ const enumNode = prop ? narrowSchema(prop.schema, 'enum') : undefined
63
+ if (!enumNode?.enumValues?.length) continue
64
+
65
+ const enumValues = enumNode.enumValues.filter((v): v is string | number | boolean => v !== null)
66
+ if (!enumValues.length) continue
67
+
68
+ const existing = childMap.get(refNode.name)
69
+ if (existing) {
70
+ existing.enumValues.push(...enumValues)
71
+ } else {
72
+ childMap.set(refNode.name, { propertyName: discriminatorPropertyName, enumValues: [...enumValues] })
73
+ }
74
+ }
75
+ }
76
+
77
+ if (childMap.size === 0) return root
78
+
79
+ return transform(root, {
80
+ schema(node, { parent }) {
81
+ if (parent?.kind !== 'Root' || !node.name) return
82
+
83
+ const entry = childMap.get(node.name)
84
+ if (!entry) return
85
+
86
+ const objectNode = narrowSchema(node, 'object')
87
+ if (!objectNode) return
88
+
89
+ const { propertyName, enumValues } = entry
90
+ const enumSchema = createSchema({ type: 'enum', enumValues })
91
+ const newProp = createProperty({ name: propertyName, required: true, schema: enumSchema })
92
+
93
+ const existingIdx = objectNode.properties.findIndex((p) => p.name === propertyName)
94
+ const newProperties = existingIdx >= 0 ? objectNode.properties.map((p, i) => (i === existingIdx ? newProp : p)) : [...objectNode.properties, newProp]
95
+
96
+ return { ...objectNode, properties: newProperties }
97
+ },
98
+ })
99
+ }
package/src/factory.ts ADDED
@@ -0,0 +1,154 @@
1
+ import path from 'node:path'
2
+ import { URLPath } from '@internals/utils'
3
+ import type { AdapterSource } from '@kubb/core'
4
+ import { bundle, loadConfig } from '@redocly/openapi-core'
5
+ import yaml from '@stoplight/yaml'
6
+ import OASNormalize from 'oas-normalize'
7
+ import { mergeDeep } from 'remeda'
8
+ import swagger2openapi from 'swagger2openapi'
9
+ import { MERGE_DEFAULT_TITLE, MERGE_DEFAULT_VERSION, MERGE_OPENAPI_VERSION } from './constants.ts'
10
+ import { isOpenApiV2Document } from './guards.ts'
11
+ import type { Document } from './types.ts'
12
+
13
+ export type ParseOptions = {
14
+ canBundle?: boolean
15
+ enablePaths?: boolean
16
+ }
17
+
18
+ /**
19
+ * Loads and dereferences an OpenAPI document, returning the raw `Document`.
20
+ *
21
+ * Accepts a file path string or an already-parsed document object. File paths are bundled via
22
+ * Redocly to resolve external `$ref`s. Swagger 2.0 documents are automatically up-converted
23
+ * to OpenAPI 3.0 via `swagger2openapi`.
24
+ *
25
+ * @example
26
+ * ```ts
27
+ * const document = await parseDocument('./openapi.yaml')
28
+ * const document = await parse(rawDocumentObject, { canBundle: false })
29
+ * ```
30
+ */
31
+ export async function parseDocument(pathOrApi: string | Document, { canBundle = true, enablePaths = true }: ParseOptions = {}): Promise<Document> {
32
+ if (typeof pathOrApi === 'string' && canBundle) {
33
+ const config = await loadConfig()
34
+ const bundleResults = await bundle({ ref: pathOrApi, config, base: pathOrApi })
35
+
36
+ return parseDocument(bundleResults.bundle.parsed as string, { canBundle, enablePaths })
37
+ }
38
+
39
+ const oasNormalize = new OASNormalize(pathOrApi, {
40
+ enablePaths,
41
+ colorizeErrors: true,
42
+ })
43
+ const document = (await oasNormalize.load()) as Document
44
+
45
+ if (isOpenApiV2Document(document)) {
46
+ const { openapi } = await swagger2openapi.convertObj(document, {
47
+ anchors: true,
48
+ })
49
+
50
+ return openapi as Document
51
+ }
52
+
53
+ return document
54
+ }
55
+
56
+ /**
57
+ * Deep-merges multiple OpenAPI documents into a single `Document`.
58
+ *
59
+ * Each document is parsed independently then recursively merged with `remeda`'s `mergeDeep`.
60
+ * Throws when the input array is empty.
61
+ *
62
+ * @example
63
+ * ```ts
64
+ * const document = await mergeDocuments(['./pets.yaml', './orders.yaml'])
65
+ * ```
66
+ */
67
+ export async function mergeDocuments(pathOrApi: Array<string | Document>): Promise<Document> {
68
+ const documents: Document[] = []
69
+ for (const p of pathOrApi) {
70
+ documents.push(await parseDocument(p, { enablePaths: false, canBundle: false }))
71
+ }
72
+
73
+ if (documents.length === 0) {
74
+ throw new Error('No OAS documents provided for merging.')
75
+ }
76
+
77
+ const seed: Document = {
78
+ openapi: MERGE_OPENAPI_VERSION,
79
+ info: { title: MERGE_DEFAULT_TITLE, version: MERGE_DEFAULT_VERSION },
80
+ paths: {},
81
+ components: { schemas: {} },
82
+ } as Document
83
+
84
+ const merged = documents.reduce((acc, current) => mergeDeep(acc, current as Document), seed)
85
+
86
+ return parseDocument(merged)
87
+ }
88
+
89
+ /**
90
+ * Creates a `Document` from an `AdapterSource`.
91
+ *
92
+ * Handles all three source types:
93
+ * - `{ type: 'path' }` — resolves and bundles a local file path or remote URL.
94
+ * - `{ type: 'paths' }` — merges multiple file paths into a single document.
95
+ * - `{ type: 'data' }` — parses an inline string (YAML/JSON) or raw object.
96
+ *
97
+ * @example
98
+ * ```ts
99
+ * const document = await parseFromConfig({ type: 'path', path: './openapi.yaml' })
100
+ * const document = await parseFromConfig({ type: 'data', data: '{"openapi":"3.0.0",...}' })
101
+ * ```
102
+ */
103
+ export function parseFromConfig(source: AdapterSource): Promise<Document> {
104
+ if (source.type === 'data') {
105
+ if (typeof source.data === 'object') {
106
+ return parseDocument(structuredClone(source.data) as Document)
107
+ }
108
+
109
+ try {
110
+ const api: string = yaml.parse(source.data as string)
111
+ return parseDocument(api)
112
+ } catch {
113
+ return parseDocument(source.data as string)
114
+ }
115
+ }
116
+
117
+ if (source.type === 'paths') {
118
+ return mergeDocuments(source.paths)
119
+ }
120
+
121
+ // type === 'path'
122
+ if (new URLPath(source.path).isURL) {
123
+ return parseDocument(source.path)
124
+ }
125
+
126
+ return parseDocument(path.resolve(path.dirname(source.path), source.path))
127
+ }
128
+
129
+ /**
130
+ * Validates an OpenAPI document using `oas-normalize` with colorized error output.
131
+ *
132
+ * @example
133
+ * ```ts
134
+ * await validateDocument(document)
135
+ * ```
136
+ */
137
+ export async function validateDocument(document: Document): Promise<void> {
138
+ try {
139
+ const oasNormalize = new OASNormalize(document, {
140
+ enablePaths: true,
141
+ colorizeErrors: true,
142
+ })
143
+
144
+ await oasNormalize.validate({
145
+ parser: {
146
+ validate: {
147
+ errors: { colorize: true },
148
+ },
149
+ },
150
+ })
151
+ } catch (_err) {
152
+ // Validation failures are non-fatal — mirror plugin-oas behavior
153
+ }
154
+ }