2024-08-04 10:59:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the Protevus Platform.
|
|
|
|
*
|
|
|
|
* (C) Protevus <developers@protevus.com>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
2024-08-04 09:12:26 +00:00
|
|
|
|
2024-08-04 12:05:47 +00:00
|
|
|
/// This library exports various components of the Protevus OpenAPI v2 specification.
|
|
|
|
/// It provides access to classes and utilities for working with OpenAPI v2 documents,
|
|
|
|
/// including document structure, headers, metadata, operations, parameters, paths,
|
|
|
|
/// responses, schemas, security definitions, and common types used throughout the API.
|
|
|
|
library v2;
|
|
|
|
|
|
|
|
export 'package:protevus_openapi/src/v2/document.dart';
|
|
|
|
export 'package:protevus_openapi/src/v2/header.dart';
|
|
|
|
export 'package:protevus_openapi/src/v2/metadata.dart';
|
|
|
|
export 'package:protevus_openapi/src/v2/operation.dart';
|
|
|
|
export 'package:protevus_openapi/src/v2/parameter.dart';
|
|
|
|
export 'package:protevus_openapi/src/v2/path.dart';
|
|
|
|
export 'package:protevus_openapi/src/v2/property.dart';
|
|
|
|
export 'package:protevus_openapi/src/v2/response.dart';
|
|
|
|
export 'package:protevus_openapi/src/v2/schema.dart';
|
|
|
|
export 'package:protevus_openapi/src/v2/security.dart';
|
|
|
|
export 'package:protevus_openapi/src/v2/types.dart';
|