Skip to content

Commit

Permalink
Merge pull request #814 from ThusharaSampath/main
Browse files Browse the repository at this point in the history
Fix data mapping issue for longitude and latitude
  • Loading branch information
LakshanSS authored Aug 29, 2023
2 parents be2fc64 + 2177ab5 commit 7852150
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion openapi/beezup.merchant/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ name = "beezup.merchant"
icon = "icon.png"
distribution = "2201.4.1"
repository = "https://github.com/ballerina-platform/openapi-connectors/tree/main/openapi/beezup.merchant"
version = "1.5.1"
version = "1.6.0"
authors = ["Ballerina"]
2 changes: 1 addition & 1 deletion openapi/livestorm/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = "livestorm"
icon = "icon.png"
distribution = "2201.4.1"
repository = "https://github.com/ballerina-platform/openapi-connectors/tree/main/openapi/livestorm"
version = "2.5.1"
version = "2.6.0"
authors = ["Ballerina"]
[build-options]
observabilityIncluded = true
2 changes: 1 addition & 1 deletion openapi/shopify.admin/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3"
version = "2.5.0"
authors = ["Ballerina"]
[build-options]
observabilityIncluded = true
4 changes: 3 additions & 1 deletion openapi/shopify.admin/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2722,7 +2722,9 @@ components:
type: string
description: The latitude of the billing address.
longitude:
type: string
oneOf:
- type: float
- type: string
description: The longitude of the billing address.
name:
type: string
Expand Down
4 changes: 2 additions & 2 deletions openapi/shopify.admin/types.bal
Original file line number Diff line number Diff line change
Expand Up @@ -860,9 +860,9 @@ public type CustomerAddress record {
# The last name of the person associated with the payment method.
string? last_name?;
# The latitude of the billing address.
string? latitude?;
float|string? latitude?;
# The longitude of the billing address.
string? longitude?;
float|string? longitude?;
# The full name of the person associated with the payment method.
string? name?;
# The phone number at the billing address.
Expand Down

0 comments on commit 7852150

Please sign in to comment.