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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To use the PayPal Invoices connector, you must have access to a [PayPal Develope

3. Create a Business account

> Note: Some PayPal options and features may vary by region or country; check availability before creating an account.
> **Note:** Some PayPal options and features may vary by region or country; check availability before creating an account.

![Create business account](https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-paypal.invoices/main/docs/setup/resources/create-account.png)

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

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.12.7"
distribution-version = "2201.12.0"

[[package]]
org = "ballerina"
Expand Down
1 change: 1 addition & 0 deletions ballerina/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ tokenUrl = "<paypal-token-url>"
```ballerina
configurable string clientId = ?;
configurable string clientSecret = ?;
configurable string merchantEmail = ?;

configurable string serviceUrl = ?;
configurable string tokenUrl = ?;
Expand Down
4 changes: 2 additions & 2 deletions ballerina/tests/tests.bal
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import ballerina/lang.runtime;
import ballerina/log;
import ballerina/test;

configurable string clientId = "clientId";
configurable string clientSecret = "clientSecret";
configurable string clientId = "client-test-id";
configurable string clientSecret = "client-test-secret";
configurable boolean isLiveServer = false;
configurable string merchantEmail = "sample@example.com";

Expand Down
Loading