Skip to content

Commit

Permalink
Fix typos and spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
roshanemoraes committed Jan 10, 2025
1 parent 9de466f commit 50a2a74
Show file tree
Hide file tree
Showing 14 changed files with 6 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -325,4 +325,3 @@ dependencies = [
modules = [
{org = "ballerinax", packageName = "hubspot.crm.commerce.orders", moduleName = "hubspot.crm.commerce.orders"}
]

2 changes: 1 addition & 1 deletion ballerina/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Empty file removed ballerina/tests/README.md
Empty file.
1 change: 0 additions & 1 deletion ballerina/tests/mock_service.bal
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,3 @@ service on new http:Listener(9090) {
};
};
};

1 change: 0 additions & 1 deletion ballerina/tests/mock_test.bal
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,3 @@ isolated function mockTestForCreatingBatchOfOrdersByUniqueProperty() returns err
test:assertEquals(response.results[0], expectedResult);
test:assertEquals(response.status, "COMPLETE");
}

2 changes: 1 addition & 1 deletion examples/batch-operations/Config.toml.template
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
clientId = "<Your Client ID>"
clientSecret = "<Your Client Secret>"
refreshToken = "<Your Refresh Token>"
refreshToken = "<Your Refresh Token>"
1 change: 0 additions & 1 deletion examples/batch-operations/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -312,4 +312,3 @@ dependencies = [
modules = [
{org = "roshane", packageName = "batch_operations", moduleName = "batch_operations"}
]

2 changes: 1 addition & 1 deletion examples/order-management/Config.toml.template
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
clientId = "<Your Client ID>"
clientSecret = "<Your Client Secret>"
refreshToken = "<Your Refresh Token>"
refreshToken = "<Your Refresh Token>"
1 change: 0 additions & 1 deletion examples/order-management/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -317,4 +317,3 @@ dependencies = [
modules = [
{org = "wso2", packageName = "order_management", moduleName = "order_management"}
]

1 change: 0 additions & 1 deletion examples/order-management/main.bal
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,3 @@ function deleteOrder(orders:Client hubspotClient, string orderId) returns error?
io:println("Failed to delete order with ID: ", orderId);
}
}

2 changes: 1 addition & 1 deletion examples/search-operation/Config.toml.template
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
clientId = "<Your Client ID>"
clientSecret = "<Your Client Secret>"
refreshToken = "<Your Refresh Token>"
refreshToken = "<Your Refresh Token>"
1 change: 0 additions & 1 deletion examples/search-operation/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -312,4 +312,3 @@ dependencies = [
modules = [
{org = "roshane", packageName = "search_operation", moduleName = "search_operation"}
]

0 comments on commit 50a2a74

Please sign in to comment.