From 50a2a74dd36007e16ab1b39c3aa05b2ef48e2ded Mon Sep 17 00:00:00 2001 From: roshanemoraes Date: Fri, 10 Jan 2025 12:04:55 +0530 Subject: [PATCH] Fix typos and spacing --- README.md | 2 +- ballerina/Dependencies.toml | 1 - ballerina/Module.md | 2 +- ballerina/Package.md | 2 +- ballerina/tests/README.md | 0 ballerina/tests/mock_service.bal | 1 - ballerina/tests/mock_test.bal | 1 - examples/batch-operations/Config.toml.template | 2 +- examples/batch-operations/Dependencies.toml | 1 - examples/order-management/Config.toml.template | 2 +- examples/order-management/Dependencies.toml | 1 - examples/order-management/main.bal | 1 - examples/search-operation/Config.toml.template | 2 +- examples/search-operation/Dependencies.toml | 1 - 14 files changed, 6 insertions(+), 13 deletions(-) delete mode 100644 ballerina/tests/README.md diff --git a/README.md b/README.md index 574ab75..2783403 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,7 @@ public function main() returns error? { The `HubSpot CRM Commerce Orders` connector provides practical examples illustrating usage in various scenarios. Explore these [examples](https://github.com/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/), covering the following use cases: -1. [Batch Operations](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/batch-operations)- Perform Batch operations on Orders in HubSpot +1. [Batch Operations](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/batch-operations) - Perform Batch operations on Orders in HubSpot 2. [Order Management](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/order-management) - Perford CRUD operations on Orders in HubSpot 3. [Search Operation](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/search-operation) - Perform Search operations on Orders in HubSpot diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index 7871a5f..c0fdbd6 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -325,4 +325,3 @@ dependencies = [ modules = [ {org = "ballerinax", packageName = "hubspot.crm.commerce.orders", moduleName = "hubspot.crm.commerce.orders"} ] - diff --git a/ballerina/Module.md b/ballerina/Module.md index 89dc0bc..af86f3f 100644 --- a/ballerina/Module.md +++ b/ballerina/Module.md @@ -189,6 +189,6 @@ public function main() returns error? { The `HubSpot CRM Commerce Orders` connector provides practical examples illustrating usage in various scenarios. Explore these [examples](https://github.com/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/), covering the following use cases: -1. [Batch Operations](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/batch-operations)- Perform Batch operations on Orders in HubSpot +1. [Batch Operations](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/batch-operations) - Perform Batch operations on Orders in HubSpot 2. [Order Management](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/order-management) - Perford CRUD operations on Orders in HubSpot 3. [Search Operation](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/search-operation) - Perform Search operations on Orders in HubSpot diff --git a/ballerina/Package.md b/ballerina/Package.md index 89dc0bc..af86f3f 100644 --- a/ballerina/Package.md +++ b/ballerina/Package.md @@ -189,6 +189,6 @@ public function main() returns error? { The `HubSpot CRM Commerce Orders` connector provides practical examples illustrating usage in various scenarios. Explore these [examples](https://github.com/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/), covering the following use cases: -1. [Batch Operations](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/batch-operations)- Perform Batch operations on Orders in HubSpot +1. [Batch Operations](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/batch-operations) - Perform Batch operations on Orders in HubSpot 2. [Order Management](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/order-management) - Perford CRUD operations on Orders in HubSpot 3. [Search Operation](https://github.com/roshanemoraes/module-ballerinax-hubspot.crm.commerce.orders/tree/main/examples/search-operation) - Perform Search operations on Orders in HubSpot diff --git a/ballerina/tests/README.md b/ballerina/tests/README.md deleted file mode 100644 index e69de29..0000000 diff --git a/ballerina/tests/mock_service.bal b/ballerina/tests/mock_service.bal index 42088b8..48732f1 100644 --- a/ballerina/tests/mock_service.bal +++ b/ballerina/tests/mock_service.bal @@ -73,4 +73,3 @@ service on new http:Listener(9090) { }; }; }; - diff --git a/ballerina/tests/mock_test.bal b/ballerina/tests/mock_test.bal index 4776e0f..ddb4a21 100644 --- a/ballerina/tests/mock_test.bal +++ b/ballerina/tests/mock_test.bal @@ -86,4 +86,3 @@ isolated function mockTestForCreatingBatchOfOrdersByUniqueProperty() returns err test:assertEquals(response.results[0], expectedResult); test:assertEquals(response.status, "COMPLETE"); } - diff --git a/examples/batch-operations/Config.toml.template b/examples/batch-operations/Config.toml.template index e22b4a5..6f94451 100644 --- a/examples/batch-operations/Config.toml.template +++ b/examples/batch-operations/Config.toml.template @@ -1,3 +1,3 @@ clientId = "" clientSecret = "" -refreshToken = "" \ No newline at end of file +refreshToken = "" diff --git a/examples/batch-operations/Dependencies.toml b/examples/batch-operations/Dependencies.toml index 27ccb04..eb5efdd 100644 --- a/examples/batch-operations/Dependencies.toml +++ b/examples/batch-operations/Dependencies.toml @@ -312,4 +312,3 @@ dependencies = [ modules = [ {org = "roshane", packageName = "batch_operations", moduleName = "batch_operations"} ] - diff --git a/examples/order-management/Config.toml.template b/examples/order-management/Config.toml.template index e22b4a5..6f94451 100644 --- a/examples/order-management/Config.toml.template +++ b/examples/order-management/Config.toml.template @@ -1,3 +1,3 @@ clientId = "" clientSecret = "" -refreshToken = "" \ No newline at end of file +refreshToken = "" diff --git a/examples/order-management/Dependencies.toml b/examples/order-management/Dependencies.toml index fd645ed..4150669 100644 --- a/examples/order-management/Dependencies.toml +++ b/examples/order-management/Dependencies.toml @@ -317,4 +317,3 @@ dependencies = [ modules = [ {org = "wso2", packageName = "order_management", moduleName = "order_management"} ] - diff --git a/examples/order-management/main.bal b/examples/order-management/main.bal index af00964..7ab99f1 100644 --- a/examples/order-management/main.bal +++ b/examples/order-management/main.bal @@ -124,4 +124,3 @@ function deleteOrder(orders:Client hubspotClient, string orderId) returns error? io:println("Failed to delete order with ID: ", orderId); } } - diff --git a/examples/search-operation/Config.toml.template b/examples/search-operation/Config.toml.template index e22b4a5..6f94451 100644 --- a/examples/search-operation/Config.toml.template +++ b/examples/search-operation/Config.toml.template @@ -1,3 +1,3 @@ clientId = "" clientSecret = "" -refreshToken = "" \ No newline at end of file +refreshToken = "" diff --git a/examples/search-operation/Dependencies.toml b/examples/search-operation/Dependencies.toml index 2f46b09..33961f3 100644 --- a/examples/search-operation/Dependencies.toml +++ b/examples/search-operation/Dependencies.toml @@ -312,4 +312,3 @@ dependencies = [ modules = [ {org = "roshane", packageName = "search_operation", moduleName = "search_operation"} ] -