Skip to content

Commit

Permalink
Merge pull request #11 from NipunaRanasinghe/main
Browse files Browse the repository at this point in the history
Add minor fixes to connector docs and samples
  • Loading branch information
NipunaRanasinghe authored Mar 28, 2024
2 parents a94a0a6 + d407805 commit ec72804
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import ballerinax/zendesk;

### Step 2: Instantiate a new connector

Create a `zendesk:Configuration` object with your domain and API token, and initialize the connector.
Create a `zendesk:ConnectionConfig` object with your domain and API token, and initialize the connector.

```ballerina
zendesk:ConnectionConfig zendeskConfig = {
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import ballerinax/zendesk;

### Step 2: Instantiate a new connector

Create a `zendesk:Configuration` object with your domain and API token, and initialize the connector.
Create a `zendesk:ConnectionConfig` object with your domain and API token, and initialize the connector.

```ballerina
zendesk:ConnectionConfig zendeskConfig = {
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import ballerinax/zendesk;

### Step 2: Instantiate a new connector

Create a `zendesk:Configuration` object with your domain and API token, and initialize the connector.
Create a `zendesk:ConnectionConfig` object with your domain and API token, and initialize the connector.

```ballerina
zendesk:ConnectionConfig zendeskConfig = {
Expand Down
4 changes: 2 additions & 2 deletions examples/customer-satisfaction-survey-analysis/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
org = "zendesk"
name = "customer_satisfaction_survey_analysis"
org = "wso2"
name = "zendesk_customer_satisfaction_survey_analysis"
version = "0.1.0"
distribution = "2201.8.6"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
zedeskDomain = "<domain>"
username = "<username>"
password = "<password>"
4 changes: 2 additions & 2 deletions examples/multi-channel-support-integration/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
org = "zendesk"
name = "multi_channel_support_integration"
org = "wso2"
name = "zendesk_multi_channel_support_integration"
version = "0.1.0"
distribution = "2201.8.6"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
zedeskDomain = "<domain>"
username = "<username>"
password = "<password>"

0 comments on commit ec72804

Please sign in to comment.