Skip to content

Commit 6fa9dfc

Browse files
Supporting custom API URL for microsoft_dynamics_365_sales
1 parent 30b97f4 commit 6fa9dfc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

components/microsoft_dynamics_365_sales/actions/create-custom-entity/create-custom-entity.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "microsoft_dynamics_365_sales-create-custom-entity",
77
name: "Create Custom Entity",
88
description: "Create a custom entity. [See the documentation](https://learn.microsoft.com/en-us/power-apps/developer/data-platform/webapi/create-update-entity-definitions-using-web-api)",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "action",
1111
props: {
1212
microsoft,

components/microsoft_dynamics_365_sales/actions/find-contact/find-contact.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "microsoft_dynamics_365_sales-find-contact",
55
name: "Find Contact",
66
description: "Search for a contact by id, name, or using a custom filter. [See the documentation](https://learn.microsoft.com/en-us/power-apps/developer/data-platform/webapi/query/overview)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
microsoft,

components/microsoft_dynamics_365_sales/microsoft_dynamics_365_sales.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default {
3636
},
3737
methods: {
3838
_baseUrl() {
39-
return `https://${this.$auth.org_domain}.crm.dynamics.com/api/data/v9.2`;
39+
return `https://${this.$auth.api_url}/api/data/v9.2`;
4040
},
4141
_makeRequest({
4242
$ = this,

components/microsoft_dynamics_365_sales/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/microsoft_dynamics_365_sales",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Pipedream Microsoft Dynamics 365 Sales Components",
55
"main": "microsoft_dynamics_365_sales.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)