From c26512d80c150ccfaf890cf882d3b77dfebe8ae5 Mon Sep 17 00:00:00 2001 From: Sivaroopan Nirhoshan Date: Fri, 8 Dec 2023 10:36:06 +0530 Subject: [PATCH] Make path item open record --- ballerina/Ballerina.toml | 2 +- ballerina/openapi_types.bal | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index 94f7ecf..ba5a765 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -2,7 +2,7 @@ distribution = "2201.7.2" org = "ballerinax" name = "ai.agent" -version = "0.6.0" +version = "0.6.1" license = ["Apache-2.0"] authors = ["Ballerina"] keywords = ["AI/Agent", "Cost/Freemium"] diff --git a/ballerina/openapi_types.bal b/ballerina/openapi_types.bal index cfbbb7f..9278ab3 100644 --- a/ballerina/openapi_types.bal +++ b/ballerina/openapi_types.bal @@ -64,7 +64,7 @@ public type Paths record {| |}; # Describes a single path item. -public type PathItem record {| +public type PathItem record { # Description of the path item string description?; # Summary of the path item @@ -91,7 +91,7 @@ public type PathItem record {| (Parameter|Reference)[] parameters?; # Not allowed $ref never \$ref?; -|}; +}; # Describes HTTP headers public type Header record {