Skip to content
This repository was archived by the owner on Jan 21, 2024. It is now read-only.

Commit 39ccb86

Browse files
committed
Fix beta note in ts typings
1 parent 6901e2b commit 39ccb86

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

js/module/typings/webapi-parser.d.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -313,17 +313,17 @@ declare module "webapi-parser" {
313313
static generateYamlString(model: WebApiBaseUnit): Promise<string>
314314
}
315315

316-
/** **BETA** Provides methods for OAS 3.0 processing */
316+
/** BETA! Provides methods for OAS 3.0 processing */
317317
export class oas30 {
318318

319-
/** **BETA** Parses OAS 3.0 JSON content from string or url.
319+
/** BETA! Parses OAS 3.0 JSON content from string or url.
320320
*
321321
* @param urlOrContent File url/path or content string.
322322
* @return Parsed WebApi Model.
323323
*/
324324
static parse(urlOrContent: string): Promise<WebApiBaseUnit>
325325

326-
/** **BETA** Parses OAS 3.0 JSON content from string with a custom API Doc location.
326+
/** BETA! Parses OAS 3.0 JSON content from string with a custom API Doc location.
327327
*
328328
* @param content Content string to be parsed.
329329
* @param baseUrl Location to assign to a doc parsed from a content string.
@@ -332,28 +332,28 @@ declare module "webapi-parser" {
332332
*/
333333
static parse(content: string, baseUrl: string): Promise<WebApiBaseUnit>
334334

335-
/** **BETA** Generates file with OAS 3.0 JSON content.
335+
/** BETA! Generates file with OAS 3.0 JSON content.
336336
*
337337
* @param model Parsed WebApi Model to generate content from.
338338
* @param url Path to the generated file.
339339
*/
340340
static generateFile(model: WebApiBaseUnit, url: string): Promise<void>
341341

342-
/** **BETA** Generates string with OAS 3.0 JSON content.
342+
/** BETA! Generates string with OAS 3.0 JSON content.
343343
*
344344
* @param model Parsed WebApi Model to generate content from.
345345
* @return Generated string.
346346
*/
347347
static generateString(model: WebApiBaseUnit): Promise<string>
348348

349-
/** **BETA** Validates parsed OAS 3.0 model.
349+
/** BETA! Validates parsed OAS 3.0 model.
350350
*
351351
* @param model Parsed WebApi Model to be validated.
352352
* @return Validation report.
353353
*/
354354
static validate(model: WebApiBaseUnit): Promise<client.validate.ValidationReport>
355355

356-
/** **BETA** Resolves parsed OAS 3.0 model.
356+
/** BETA! Resolves parsed OAS 3.0 model.
357357
*
358358
* Resolution process includes resolving references to all types, libraries, etc.
359359
*
@@ -362,14 +362,14 @@ declare module "webapi-parser" {
362362
*/
363363
static resolve(model: WebApiBaseUnit): Promise<WebApiBaseUnit>
364364

365-
/** **BETA** Parses OAS 3.0 YAML content from string or url.
365+
/** BETA! Parses OAS 3.0 YAML content from string or url.
366366
*
367367
* @param urlOrContent File url/path or content string.
368368
* @return Parsed WebApi Model.
369369
*/
370370
static parseYaml(urlOrContent: string): Promise<WebApiBaseUnit>
371371

372-
/** **BETA** Parses OAS 3.0 YAML content from string with a custom API Doc location.
372+
/** BETA! Parses OAS 3.0 YAML content from string with a custom API Doc location.
373373
*
374374
* @param content Content string to be parsed.
375375
* @param baseUrl Location to assign to a doc parsed from a content string.
@@ -378,14 +378,14 @@ declare module "webapi-parser" {
378378
*/
379379
static parseYaml(content: string, baseUrl: string): Promise<WebApiBaseUnit>
380380

381-
/** **BETA** Generates file with OAS 3.0 YAML content.
381+
/** BETA! Generates file with OAS 3.0 YAML content.
382382
*
383383
* @param model Parsed WebApi Model to generate content from.
384384
* @param url Path to the generated file.
385385
*/
386386
static generateYamlFile(model: WebApiBaseUnit, url: string): Promise<void>
387387

388-
/** **BETA** Generates string with OAS 3.0 YAML content.
388+
/** BETA! Generates string with OAS 3.0 YAML content.
389389
*
390390
* @param model Parsed WebApi Model to generate content from.
391391
* @return Generated string.

0 commit comments

Comments
 (0)