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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## Overview

[HubSpot](https://www.hubspot.com) is an AI-powered customer relationship management (CRM) platform.
[HubSpot](https://www.hubspot.com) is an AI-powered customer relationship management (CRM) platform.

The `ballerinax/module-ballerinax-hubspot.crm.obj.contacts` package offers APIs to connect and interact with the [HubSpot Contact API](https://api.hubapi.com/crm/v3/objects/contacts) endpoints, specifically based on the [HubSpot REST API](https://developers.hubspot.com/docs/reference/api/crm/objects/contacts).

Expand All @@ -22,7 +22,7 @@ To use the HubSpot connector, you must have access to the HubSpot API through a

1. Open the [HubSpot Developer Portal](https://app.hubspot.com/login/?loginRedirectUrl=https%3A%2F%2Fapp.hubspot.com%2Fsignup-hubspot%2Fdevelopers%3F_ga%3D2.269102326.624948025.1734413225-1764281074.1734413225%26step%3Dlanding_page)

2. Click on the 'App' tab and select an existing project or create a new project for which you want API keys and Authentication Access.
2. Click on the 'App' tab and select an existing project or create a new project for which you want API keys and Authentication Access.

![hubspot-app-home](https://github.com/user-attachments/assets/8f14b6d5-f537-41fe-a860-1f5fe9489b1c)

Expand Down Expand Up @@ -264,7 +264,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.contacts` package](https://central.ballerina.io/ballerinax/hubspot.crm.object.contacts/latest).
* For more information go to the [`hubspot.crm.object.contacts` package](https://central.ballerina.io/ballerinax/hubspot.crm.obj.contacts/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/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {

description = 'Ballerina HubSpot CRM Contacts Connector - Ballerina'

def packageName = "hubspot.crm.object.contacts"
def packageName = "hubspot.crm.obj.contacts"
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.contacts-ballerina:build')
dependsOn(':hubspot.crm.obj.contacts-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.contacts` connector provides practical examples illustrating usage in various scenarios.
The `ballerinax/hubspot.crm.obj.contacts` connector provides practical examples illustrating usage in various scenarios.

1. [Email-Advertising](./Email-Advertising/) - Unsubscribe and remove customers based on email addresses of CSV-imported data..
2. [Event-Registration](./Event-Registration/) - Event registration and follow-up using CSV-imported data.
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.contacts'

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

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

gradleEnterprise {
buildScan {
Expand Down
Loading