@kubb/adapter-oas 5.0.0-beta.61 → 5.0.0-beta.63

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/dist/index.d.ts CHANGED
@@ -1250,7 +1250,7 @@ type AdapterOasResolvedOptions = {
1250
1250
  enumSuffix: AdapterOasOptions['enumSuffix'];
1251
1251
  /**
1252
1252
  * Map from original `$ref` paths to their collision-resolved schema names.
1253
- * Populated after each `parse()` call.
1253
+ * Populated once the adapter resolves a spec's schemas, on the first `stream()` or `parse()`.
1254
1254
  *
1255
1255
  * @example
1256
1256
  * ```ts
@@ -1267,7 +1267,7 @@ type AdapterOas = AdapterFactoryOptions<'oas', AdapterOasOptions, AdapterOasReso
1267
1267
  //#endregion
1268
1268
  //#region src/adapter.d.ts
1269
1269
  /**
1270
- * Canonical adapter name for `@kubb/adapter-oas`. Used for driver lookups.
1270
+ * The `name` of `@kubb/adapter-oas`, used to identify this adapter in a Kubb config.
1271
1271
  */
1272
1272
  declare const adapterOasName = "oas";
1273
1273
  /**