@@ -313,17 +313,17 @@ declare module "webapi-parser" {
313
313
static generateYamlString ( model : WebApiBaseUnit ) : Promise < string >
314
314
}
315
315
316
- /** ** BETA** Provides methods for OAS 3.0 processing */
316
+ /** BETA! Provides methods for OAS 3.0 processing */
317
317
export class oas30 {
318
318
319
- /** ** BETA** Parses OAS 3.0 JSON content from string or url.
319
+ /** BETA! Parses OAS 3.0 JSON content from string or url.
320
320
*
321
321
* @param urlOrContent File url/path or content string.
322
322
* @return Parsed WebApi Model.
323
323
*/
324
324
static parse ( urlOrContent : string ) : Promise < WebApiBaseUnit >
325
325
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.
327
327
*
328
328
* @param content Content string to be parsed.
329
329
* @param baseUrl Location to assign to a doc parsed from a content string.
@@ -332,28 +332,28 @@ declare module "webapi-parser" {
332
332
*/
333
333
static parse ( content : string , baseUrl : string ) : Promise < WebApiBaseUnit >
334
334
335
- /** ** BETA** Generates file with OAS 3.0 JSON content.
335
+ /** BETA! Generates file with OAS 3.0 JSON content.
336
336
*
337
337
* @param model Parsed WebApi Model to generate content from.
338
338
* @param url Path to the generated file.
339
339
*/
340
340
static generateFile ( model : WebApiBaseUnit , url : string ) : Promise < void >
341
341
342
- /** ** BETA** Generates string with OAS 3.0 JSON content.
342
+ /** BETA! Generates string with OAS 3.0 JSON content.
343
343
*
344
344
* @param model Parsed WebApi Model to generate content from.
345
345
* @return Generated string.
346
346
*/
347
347
static generateString ( model : WebApiBaseUnit ) : Promise < string >
348
348
349
- /** ** BETA** Validates parsed OAS 3.0 model.
349
+ /** BETA! Validates parsed OAS 3.0 model.
350
350
*
351
351
* @param model Parsed WebApi Model to be validated.
352
352
* @return Validation report.
353
353
*/
354
354
static validate ( model : WebApiBaseUnit ) : Promise < client . validate . ValidationReport >
355
355
356
- /** ** BETA** Resolves parsed OAS 3.0 model.
356
+ /** BETA! Resolves parsed OAS 3.0 model.
357
357
*
358
358
* Resolution process includes resolving references to all types, libraries, etc.
359
359
*
@@ -362,14 +362,14 @@ declare module "webapi-parser" {
362
362
*/
363
363
static resolve ( model : WebApiBaseUnit ) : Promise < WebApiBaseUnit >
364
364
365
- /** ** BETA** Parses OAS 3.0 YAML content from string or url.
365
+ /** BETA! Parses OAS 3.0 YAML content from string or url.
366
366
*
367
367
* @param urlOrContent File url/path or content string.
368
368
* @return Parsed WebApi Model.
369
369
*/
370
370
static parseYaml ( urlOrContent : string ) : Promise < WebApiBaseUnit >
371
371
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.
373
373
*
374
374
* @param content Content string to be parsed.
375
375
* @param baseUrl Location to assign to a doc parsed from a content string.
@@ -378,14 +378,14 @@ declare module "webapi-parser" {
378
378
*/
379
379
static parseYaml ( content : string , baseUrl : string ) : Promise < WebApiBaseUnit >
380
380
381
- /** ** BETA** Generates file with OAS 3.0 YAML content.
381
+ /** BETA! Generates file with OAS 3.0 YAML content.
382
382
*
383
383
* @param model Parsed WebApi Model to generate content from.
384
384
* @param url Path to the generated file.
385
385
*/
386
386
static generateYamlFile ( model : WebApiBaseUnit , url : string ) : Promise < void >
387
387
388
- /** ** BETA** Generates string with OAS 3.0 YAML content.
388
+ /** BETA! Generates string with OAS 3.0 YAML content.
389
389
*
390
390
* @param model Parsed WebApi Model to generate content from.
391
391
* @return Generated string.
0 commit comments