diff --git a/openapi/openai.audio/Ballerina.toml b/openapi/openai.audio/Ballerina.toml index 4964e3241..6a62a2c08 100644 --- a/openapi/openai.audio/Ballerina.toml +++ b/openapi/openai.audio/Ballerina.toml @@ -6,7 +6,7 @@ name = "openai.audio" icon = "icon.png" distribution = "2201.4.1" repository = "https://github.com/ballerina-platform/openapi-connectors/tree/main/openapi/openai.audio" -version = "1.0.4" +version = "1.0.5" authors = ["Ballerina"] [build-options] observabilityIncluded = true diff --git a/openapi/openai.chat/Ballerina.toml b/openapi/openai.chat/Ballerina.toml index 6f373018f..7af411995 100644 --- a/openapi/openai.chat/Ballerina.toml +++ b/openapi/openai.chat/Ballerina.toml @@ -6,7 +6,7 @@ name = "openai.chat" icon = "icon.png" distribution = "2201.4.1" repository = "https://github.com/ballerina-platform/openapi-connectors/tree/main/openapi/openai.chat" -version = "1.1.1" +version = "1.1.2" authors = ["Ballerina"] [build-options] observabilityIncluded = true diff --git a/openapi/openai.embeddings/Ballerina.toml b/openapi/openai.embeddings/Ballerina.toml index c742c14b9..7596978fc 100644 --- a/openapi/openai.embeddings/Ballerina.toml +++ b/openapi/openai.embeddings/Ballerina.toml @@ -6,7 +6,7 @@ name = "openai.embeddings" icon = "icon.png" distribution = "2201.4.1" repository = "https://github.com/ballerina-platform/openapi-connectors/tree/main/openapi/openai.embeddings" -version = "1.0.4" +version = "1.0.5" authors = ["Ballerina"] [build-options] observabilityIncluded = true diff --git a/openapi/openai.finetunes/Ballerina.toml b/openapi/openai.finetunes/Ballerina.toml index f0fcc3157..f44381bd4 100644 --- a/openapi/openai.finetunes/Ballerina.toml +++ b/openapi/openai.finetunes/Ballerina.toml @@ -6,7 +6,7 @@ name = "openai.finetunes" icon = "icon.png" distribution = "2201.4.1" repository = "https://github.com/ballerina-platform/openapi-connectors/tree/main/openapi/openai.finetunes" -version = "1.0.4" +version = "1.0.5" authors = ["Ballerina"] [build-options] observabilityIncluded = true diff --git a/openapi/openai.images/Ballerina.toml b/openapi/openai.images/Ballerina.toml index 632bacc83..d632903e9 100644 --- a/openapi/openai.images/Ballerina.toml +++ b/openapi/openai.images/Ballerina.toml @@ -6,7 +6,7 @@ name = "openai.images" icon = "icon.png" distribution = "2201.4.1" repository = "https://github.com/ballerina-platform/openapi-connectors/tree/main/openapi/openai.images" -version = "1.0.4" +version = "1.0.5" authors = ["Ballerina"] [build-options] observabilityIncluded = true diff --git a/openapi/openai.moderations/Ballerina.toml b/openapi/openai.moderations/Ballerina.toml index 987156e2d..9995a1825 100644 --- a/openapi/openai.moderations/Ballerina.toml +++ b/openapi/openai.moderations/Ballerina.toml @@ -6,7 +6,7 @@ name = "openai.moderations" icon = "icon.png" distribution = "2201.4.1" repository = "https://github.com/ballerina-platform/openapi-connectors/tree/main/openapi/openai.moderations" -version = "1.0.4" +version = "1.0.5" authors = ["Ballerina"] [build-options] observabilityIncluded = true diff --git a/openapi/openai.text/Ballerina.toml b/openapi/openai.text/Ballerina.toml index 2ffcf59bc..4962bb72c 100644 --- a/openapi/openai.text/Ballerina.toml +++ b/openapi/openai.text/Ballerina.toml @@ -6,7 +6,7 @@ name = "openai.text" icon = "icon.png" distribution = "2201.4.1" repository = "https://github.com/ballerina-platform/openapi-connectors/tree/main/openapi/openai.text" -version = "1.0.4" +version = "1.0.5" authors = ["Ballerina"] [build-options] observabilityIncluded = true diff --git a/openapi/shopify.admin/Ballerina.toml b/openapi/shopify.admin/Ballerina.toml index 17fad6ec8..c7d402c34 100644 --- a/openapi/shopify.admin/Ballerina.toml +++ b/openapi/shopify.admin/Ballerina.toml @@ -6,7 +6,7 @@ name = "shopify.admin" icon = "icon.png" distribution = "2201.4.1" repository = "https://github.com/ballerina-platform/openapi-connectors/tree/main/openapi/shopify.admin" -version = "2.4.1" +version = "2.4.2" authors = ["Ballerina"] [build-options] observabilityIncluded = true diff --git a/openapi/shopify.admin/openapi.yml b/openapi/shopify.admin/openapi.yml index 69aef36c7..8d42fd95b 100644 --- a/openapi/shopify.admin/openapi.yml +++ b/openapi/shopify.admin/openapi.yml @@ -3338,7 +3338,9 @@ components: type: integer description: The unique identifier for the refund that the order adjustment is associated with. amount: - type: integer + oneOf: + - type: integer + - type: string description: The value of the discrepancy between the calculated refund and the actual refund. If the kind property's value is shipping_refund, then amount returns the value of shipping charges refunded to the customer. tax_amount: type: string diff --git a/openapi/shopify.admin/types.bal b/openapi/shopify.admin/types.bal index f769042ac..d2601d9ed 100644 --- a/openapi/shopify.admin/types.bal +++ b/openapi/shopify.admin/types.bal @@ -134,7 +134,7 @@ public type OrderAdjustment record { # The unique identifier for the refund that the order adjustment is associated with. int? refund_id?; # The value of the discrepancy between the calculated refund and the actual refund. If the kind property's value is shipping_refund, then amount returns the value of shipping charges refunded to the customer. - int? amount?; + int|string? amount?; # The taxes that are added to amount, such as applicable shipping taxes added to a shipping refund. string? tax_amount?; # The order adjustment type. Valid values are shipping_refund and refund_discrepancy.