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
20 changes: 10 additions & 10 deletions components/google_ads/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ The component accepts a standard Google Ads API request object with the followin

```javascript
const googleAdsReq = {
method: "get|post|put|delete", // HTTP method
url: "/v16/...", // Google Ads API endpoint path
method: "get|post|put|delete", // HTTP method
url: "/v16/...", // Google Ads API endpoint path
headers: {
"Authorization": `Bearer ${this.googleAds.$auth.oauth_access_token}`
Authorization: `Bearer ${this.googleAds.$auth.oauth_access_token}`,
},
data: {} // Optional request body for POST/PUT requests
}
data: {}, // Optional request body for POST/PUT requests
};
```

To make different API calls while using the proxy:
Expand All @@ -50,12 +50,12 @@ const googleAdsReq = {
method: "post",
url: "/v16/customers/1234567890/googleAds:search",
headers: {
"Authorization": `Bearer ${this.googleAds.$auth.oauth_access_token}`
Authorization: `Bearer ${this.googleAds.$auth.oauth_access_token}`,
},
data: {
query: "SELECT campaign.id, campaign.name FROM campaign"
}
}
query: "SELECT campaign.id, campaign.name FROM campaign",
},
};
```

The proxy endpoint will remain the same: `https://eolid4dq1k0t9hi.m.pipedream.net`
The proxy endpoint will remain the same: `https://googleads.m.pipedream.net`
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "google_ads-add-contact-to-list-by-email",
name: "Add Contact to Customer List by Email",
description: "Adds a contact to a specific customer list in Google Ads. Lists typically update in 6 to 12 hours after operation. [See the documentation](https://developers.google.com/google-ads/api/docs/remarketing/audience-segments/customer-match/get-started)",
version: "0.1.2",
version: "0.1.3",
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default {
key: "google_ads-create-customer-list",
name: "Create Customer List",
description: "Create a new customer list in Google Ads. [See the documentation](https://developers.google.com/google-ads/api/rest/reference/rest/v18/UserList)",
version: "0.0.3",
version: "0.0.4",
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default {
key: "google_ads-create-report",
name: "Create Report",
description: "Generates a report from your Google Ads data. [See the documentation](https://developers.google.com/google-ads/api/fields/v18/overview)",
version: "0.1.1",
version: "0.1.2",
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
key: "google_ads-send-offline-conversion",
name: "Send Offline Conversion",
description: "Send an event from to Google Ads to track offline conversions. [See the documentation](https://developers.google.com/google-ads/api/rest/reference/rest/v18/ConversionAction)",
version: "0.0.3",
version: "0.0.4",
type: "action",
props: {
...common.props,
Expand Down
2 changes: 1 addition & 1 deletion components/google_ads/google_ads.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default {
},
methods: {
_baseUrl() {
return "https://eolid4dq1k0t9hi.m.pipedream.net";
return "https://googleads.m.pipedream.net";
},
_headers(accountId) {
return {
Expand Down
2 changes: 1 addition & 1 deletion components/google_ads/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/google_ads",
"version": "0.3.1",
"version": "0.3.2",
"description": "Pipedream Google Ads Components",
"main": "google_ads.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
key: "google_ads-new-campaign-created",
name: "New Campaign Created",
description: "Emit new event when a new campaign is created. [See the documentation](https://developers.google.com/google-ads/api/fields/v18/campaign)",
version: "0.0.3",
version: "0.0.4",
type: "source",
dedupe: "unique",
sampleEmit,
props: {
...common.props,
customerClientId: {

Check warning on line 16 in components/google_ads/sources/new-campaign-created/new-campaign-created.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop customerClientId must have a label. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 16 in components/google_ads/sources/new-campaign-created/new-campaign-created.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop customerClientId must have a description. See https://pipedream.com/docs/components/guidelines/#props
...common.props.customerClientId,
},
fields: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
key: "google_ads-new-lead-form-entry",
name: "New Lead Form Entry",
description: "Emit new event for new leads on a Lead Form. [See the documentation](https://developers.google.com/google-ads/api/fields/v18/lead_form_submission_data)",
version: "0.0.3",
version: "0.0.4",
type: "source",
dedupe: "unique",
sampleEmit,
Expand All @@ -26,7 +26,7 @@
})),
],
},
docsAlert: {

Check warning on line 29 in components/google_ads/sources/new-lead-form-entry/new-lead-form-entry.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop docsAlert must have a label. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 29 in components/google_ads/sources/new-lead-form-entry/new-lead-form-entry.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop docsAlert must have a description. See https://pipedream.com/docs/components/guidelines/#props
type: "alert",
alertType: "info",
content: "If needed, see Google's documentation on [submission fields](https://developers.google.com/google-ads/api/reference/rpc/v18/LeadFormSubmissionField) and [custom submission fields](https://developers.google.com/google-ads/api/reference/rpc/v18/CustomLeadFormSubmissionField).",
Expand Down
12 changes: 4 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading