diff --git a/components/google_ads/README.md b/components/google_ads/README.md index 91d1497bca086..e7d1eb3526c59 100644 --- a/components/google_ads/README.md +++ b/components/google_ads/README.md @@ -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: @@ -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` diff --git a/components/google_ads/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs b/components/google_ads/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs index 585f84d675492..0f21076d0d2dd 100644 --- a/components/google_ads/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs +++ b/components/google_ads/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs @@ -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, diff --git a/components/google_ads/actions/create-customer-list/create-customer-list.mjs b/components/google_ads/actions/create-customer-list/create-customer-list.mjs index ea88147d781ed..729c86dd5c6c1 100644 --- a/components/google_ads/actions/create-customer-list/create-customer-list.mjs +++ b/components/google_ads/actions/create-customer-list/create-customer-list.mjs @@ -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, diff --git a/components/google_ads/actions/create-report/create-report.mjs b/components/google_ads/actions/create-report/create-report.mjs index 6e33899d17d05..2044354d2bc9c 100644 --- a/components/google_ads/actions/create-report/create-report.mjs +++ b/components/google_ads/actions/create-report/create-report.mjs @@ -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, diff --git a/components/google_ads/actions/send-offline-conversion/send-offline-conversion.mjs b/components/google_ads/actions/send-offline-conversion/send-offline-conversion.mjs index 86078f6c465e0..1895949ff0892 100644 --- a/components/google_ads/actions/send-offline-conversion/send-offline-conversion.mjs +++ b/components/google_ads/actions/send-offline-conversion/send-offline-conversion.mjs @@ -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, diff --git a/components/google_ads/google_ads.app.mjs b/components/google_ads/google_ads.app.mjs index 7bf1d2c0e4c95..c8da4631e1a13 100644 --- a/components/google_ads/google_ads.app.mjs +++ b/components/google_ads/google_ads.app.mjs @@ -94,7 +94,7 @@ export default { }, methods: { _baseUrl() { - return "https://eolid4dq1k0t9hi.m.pipedream.net"; + return "https://googleads.m.pipedream.net"; }, _headers(accountId) { return { diff --git a/components/google_ads/package.json b/components/google_ads/package.json index de089808df0dd..7f5d6a4d61edd 100644 --- a/components/google_ads/package.json +++ b/components/google_ads/package.json @@ -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": [ diff --git a/components/google_ads/sources/new-campaign-created/new-campaign-created.mjs b/components/google_ads/sources/new-campaign-created/new-campaign-created.mjs index 5fd28a85b98dd..18078f3f1af76 100644 --- a/components/google_ads/sources/new-campaign-created/new-campaign-created.mjs +++ b/components/google_ads/sources/new-campaign-created/new-campaign-created.mjs @@ -7,7 +7,7 @@ export default { 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, diff --git a/components/google_ads/sources/new-lead-form-entry/new-lead-form-entry.mjs b/components/google_ads/sources/new-lead-form-entry/new-lead-form-entry.mjs index 325d3fdf755b3..87d6a4bdc69c9 100644 --- a/components/google_ads/sources/new-lead-form-entry/new-lead-form-entry.mjs +++ b/components/google_ads/sources/new-lead-form-entry/new-lead-form-entry.mjs @@ -8,7 +8,7 @@ export default { 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, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f66200cf6d902..e44a9fc727c88 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7242,8 +7242,7 @@ importers: components/lettria: {} - components/letzai: - specifiers: {} + components/letzai: {} components/leverly: {} @@ -7873,8 +7872,7 @@ importers: specifier: ^1.5.1 version: 1.6.6 - components/meetstream_ai: - specifiers: {} + components/meetstream_ai: {} components/meetup: {} @@ -9898,8 +9896,7 @@ importers: specifier: ^1.6.0 version: 1.6.6 - components/plainly: - specifiers: {} + components/plainly: {} components/planday: {} @@ -14339,8 +14336,7 @@ importers: components/wicked_reports: {} - components/widgetform: - specifiers: {} + components/widgetform: {} components/wildapricot: dependencies: