Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[HubSpot](https://www.hubspot.com/our-story) is an AI-powered customer platform.

The `ballerinax/hubspot.crm.object.lineitems` package offers APIs to connect and interact with the [HubSpot CRM Lineitems API](https://developers.hubspot.com/docs/reference/api/crm/objects/line-items) endpoints, specially based on [HubSpot REST API v3](https://developers.hubspot.com/docs/reference/api).
The `ballerinax/hubspot.crm.obj.lineitems` package offers APIs to connect and interact with the [HubSpot CRM Lineitems API](https://developers.hubspot.com/docs/reference/api/crm/objects/line-items) endpoints, specially based on [HubSpot REST API v3](https://developers.hubspot.com/docs/reference/api).

# Setup guide

Expand Down Expand Up @@ -319,7 +319,7 @@ All the contributors are encouraged to read the [Ballerina Code of Conduct](http

## Useful links

* For more information go to the [`hubspot.crm.object.lineitems` package](https://central.ballerina.io/ballerinax/hubspot.crm.object.lineitems/latest).
* For more information go to the [`hubspot.crm.object.lineitems` package](https://central.ballerina.io/ballerinax/hubspot.crm.obj.lineitems/latest).
* For example demonstrations of the usage, go to [Ballerina By Examples](https://ballerina.io/learn/by-example/).
* Chat live with us via our [Discord server](https://discord.gg/ballerinalang).
* Post all technical questions on Stack Overflow with the [#ballerina](https://stackoverflow.com/questions/tagged/ballerina) tag.
2 changes: 1 addition & 1 deletion ballerina/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[HubSpot](https://www.hubspot.com/our-story) is an AI-powered customer platform.

The `ballerinax/hubspot.crm.object.lineitems` package offers APIs to connect and interact with the [HubSpot CRM Lineitems API](https://developers.hubspot.com/docs/reference/api/crm/objects/line-items) endpoints, specially based on [HubSpot REST API v3](https://developers.hubspot.com/docs/reference/api).
The `ballerinax/hubspot.crm.obj.lineitems` package offers APIs to connect and interact with the [HubSpot CRM Lineitems API](https://developers.hubspot.com/docs/reference/api/crm/objects/line-items) endpoints, specially based on [HubSpot REST API v3](https://developers.hubspot.com/docs/reference/api).

# Setup guide

Expand Down
2 changes: 1 addition & 1 deletion ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[HubSpot](https://www.hubspot.com/our-story) is an AI-powered customer platform.

The `ballerinax/hubspot.crm.object.lineitems` package offers APIs to connect and interact with the [HubSpot CRM Lineitems API](https://developers.hubspot.com/docs/reference/api/crm/objects/line-items) endpoints, specially based on [HubSpot REST API v3](https://developers.hubspot.com/docs/reference/api).
The `ballerinax/hubspot.crm.obj.lineitems` package offers APIs to connect and interact with the [HubSpot CRM Lineitems API](https://developers.hubspot.com/docs/reference/api/crm/objects/line-items) endpoints, specially based on [HubSpot REST API v3](https://developers.hubspot.com/docs/reference/api).

# Setup guide

Expand Down
2 changes: 1 addition & 1 deletion ballerina/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {

description = 'Ballerina HubSpot CRM Lineitems Connector - Ballerina'

def packageName = "hubspot.crm.object.lineitems"
def packageName = "hubspot.crm.obj.lineitems"
def packageOrg = "ballerinax"
def tomlVersion = stripBallerinaExtensionVersion("${project.version}")
def ballerinaTomlFilePlaceHolder = new File("${project.rootDir}/build-config/resources/Ballerina.toml")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ allprojects {
def moduleVersion = project.version.replace("-SNAPSHOT", "")

task build {
dependsOn(':hubspot.crm.object.lineitems-ballerina:build')
dependsOn(':hubspot.crm.obj.lineitems-ballerina:build')
}

release {
Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Examples

The `ballerinax/hubspot.crm.object.lineitems` connector provides practical examples illustrating usage in various scenarios. Explore these
The `ballerinax/hubspot.crm.obj.lineitems` connector provides practical examples illustrating usage in various scenarios. Explore these

1. [Customer Order fulfillment](https://github.com/ballerina-platform/module-ballerinax-hubspot.crm.object.lineitems/tree/main/examples/customer-order-fulfillment) - Manage customer orders in a warehouse system
2. [Inventory management](https://github.com/ballerina-platform/module-ballerinax-hubspot.crm.object.lineitems/tree/main/examples/inventory-management) - Manage inventory for an operational deal in an E-commerce platform
Expand Down
6 changes: 3 additions & 3 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ task testExamples {

task buildExamples {
gradle.taskGraph.whenReady { graph ->
if (graph.hasTask(":hubspot.crm.object.lineitems-examples:test")) {
if (graph.hasTask(":hubspot.crm.obj.lineitems-examples:test")) {
buildExamples.enabled = false
} else {
testExamples.enabled = false
Expand All @@ -70,8 +70,8 @@ task buildExamples {
}
}

buildExamples.dependsOn ":hubspot.crm.object.lineitems-ballerina:build"
testExamples.dependsOn ":hubspot.crm.object.lineitems-ballerina:build"
buildExamples.dependsOn ":hubspot.crm.obj.lineitems-ballerina:build"
testExamples.dependsOn ":hubspot.crm.obj.lineitems-ballerina:build"

// TODO: Enable the examples build once https://github.com/ballerina-platform/ballerina-library/issues/6135 is fixed
// test.dependsOn testExamples
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ plugins {

rootProject.name = 'module-ballerinax-hubspot.crm.object.lineitems'

include ':hubspot.crm.object.lineitems-ballerina'
include ':hubspot.crm.obj.lineitems-ballerina'

project(':hubspot.crm.object.lineitems-ballerina').projectDir = file("ballerina")
project(':hubspot.crm.obj.lineitems-ballerina').projectDir = file("ballerina")

gradleEnterprise {
buildScan {
Expand Down
Loading