Skip to content

Commit b59c580

Browse files
committed
Merge remote-tracking branch 'origin/master' into issue-17067
2 parents 9391ea6 + ea0cca8 commit b59c580

File tree

9 files changed

+60
-4
lines changed

9 files changed

+60
-4
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "issue_badge",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/issue_badge",
3+
"version": "0.0.1",
4+
"description": "Pipedream Issue Badge Components",
5+
"main": "issue_badge.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"issue_badge"
9+
],
10+
"homepage": "https://pipedream.com/apps/issue_badge",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "limitless_ai",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/limitless_ai",
3+
"version": "0.0.1",
4+
"description": "Pipedream Limitless.ai Components",
5+
"main": "limitless_ai.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"limitless_ai"
9+
],
10+
"homepage": "https://pipedream.com/apps/limitless_ai",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

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": [

pnpm-lock.yaml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)