Skip to content

Commit

Permalink
Change ballerina org. Improve readmes.
Browse files Browse the repository at this point in the history
  • Loading branch information
chathurace committed Oct 15, 2023
1 parent 9c60337 commit 0ff67db
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion servicenow-case-to-salesforce-case/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
org = "chathura"
org = "integration_samples"
name = "servicenow_case_to_salesforce_case"
version = "0.1.0"
distribution = "2201.7.2"
Expand Down
1 change: 0 additions & 1 deletion servicenow-case-to-salesforce-case/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,3 @@ refreshUrl = "<salesforce-refresh-url>"
3. Change the date in `resources/syncdata` file to some date before the creation of ServiceNow cases.
4. Run the sample using the `bal run` command.
5. Check the `Support Cases` section in the `Related` tab of the newly created account in Salesforce. Details of all support cases created in ServiceNow will appear under this section.

2 changes: 1 addition & 1 deletion servicenow-case-to-salesforce-case/resources/syncdata
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2023-10-10T11:58:44.235521Z
2023-10-10T11:58:44.235521Z
2 changes: 1 addition & 1 deletion servicenow-case-to-salesforce-case/types.bal
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ type DateRange record {|
string 'start;
string end;
time:Civil now;
|};
|};
2 changes: 1 addition & 1 deletion shopify-customer-to-salesforce-customer/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
org = "chathura"
org = "integration_samples"
name = "shopify_to_salesforce"
version = "0.1.0"
distribution = "2201.8.1"
Expand Down
1 change: 0 additions & 1 deletion shopify-customer-to-salesforce-customer/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,3 @@ refreshUrl = "<salesforce-refresh-url>"
1. Navigate to the online store view of the development store and register a new customer by providing an email address. Validate the confirmation email sent to the provided email address.
2. Login to Salesforce and check the Customers records. New customer record with the given email will be created.
3. In the Shopify store, change the customer's first name and last name. Customer name of the corresponding customer will be updated in Salesforce.

2 changes: 0 additions & 2 deletions shopify-customer-to-salesforce-customer/main.bal
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,3 @@ function updateSalesforce(SalesforceCustomer sfCustomer) returns error? {
check salesforce->update("HmartCustomer__c", existingCustomer.value.Id, sfCustomer);
}
}


0 comments on commit 0ff67db

Please sign in to comment.