Skip to content

Commit b53843e

Browse files
committed
update versions to republish with linkedin app updates
1 parent 6da9785 commit b53843e

File tree

8 files changed

+10
-15
lines changed

8 files changed

+10
-15
lines changed

components/linkedin_ads/actions/create-report-by-advertiser-account/create-report-by-advertiser-account.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "linkedin_ads-create-report-by-advertiser-account",
77
name: "Create Report By Advertiser Account",
88
description: "Sample query using analytics finder that gets analytics for a particular account for date range starting in a given year. [See the docs here](https://docs.microsoft.com/en-us/linkedin/marketing/integrations/ads-reporting/ads-reporting#sample-request)",
9-
version: "0.0.3",
9+
version: "0.0.4",
1010
type: "action",
1111
props: {
1212
...common.props,

components/linkedin_ads/actions/create-report-by-campaign/create-report-by-campaign.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "linkedin_ads-create-report-by-campaign",
77
name: "Query Analytics Finder Campaign Sample",
88
description: "Sample query using analytics finder that gets analytics for a particular campaign in a date range starting in a given year. [See the docs here](https://docs.microsoft.com/en-us/linkedin/marketing/integrations/ads-reporting/ads-reporting#analytics-finder)",
9-
version: "0.0.3",
9+
version: "0.0.4",
1010
type: "action",
1111
props: {
1212
...common.props,

components/linkedin_ads/actions/create-report/create-report.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "linkedin_ads-create-report",
77
name: "Create A Report",
88
description: "Queries the Analytics Finder to get analytics for the specified entity i.e company, account, campaign. [See the docs here](https://docs.microsoft.com/en-us/linkedin/marketing/integrations/ads-reporting/ads-reporting#analytics-finder)",
9-
version: "0.0.3",
9+
version: "0.0.4",
1010
type: "action",
1111
props: {
1212
...common.props,

components/linkedin_ads/actions/send-conversion-event/send-conversion-event.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "linkedin_ads-send-conversion-event",
66
name: "Send Conversion Event",
77
description: "Sends a conversion event to LinkedIn Ads. [See the documentation](https://learn.microsoft.com/en-us/linkedin/marketing/integrations/ads-reporting/conversions-api?view=li-lms-2024-01&tabs=http#streaming-conversion-events)",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "action",
1010
props: {
1111
app,

components/linkedin_ads/linkedin_ads.app.mjs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ export default {
132132
}) {
133133
const count = 20;
134134
const { elements } = await this.searchLeadForms({
135-
debug: true,
136135
params: {
137136
q: "owner",
138137
owner: `(sponsoredAccount:${this.getSponsoredAccountUrn(adAccountId)})`,
@@ -192,7 +191,6 @@ export default {
192191
leadFormId, ...args
193192
} = {}) {
194193
return this._makeRequest({
195-
debug: true,
196194
path: `/leadForms/${leadFormId}`,
197195
...args,
198196
});
@@ -202,7 +200,6 @@ export default {
202200
"organizer",
203201
];
204202
return this._makeRequest({
205-
debug: true,
206203
path: "/events",
207204
paramsSerializer: utils.getParamsSerializer(utils.encodeParamKeys(keys)),
208205
transformResponse: utils.transformResponse,
@@ -211,7 +208,6 @@ export default {
211208
},
212209
searchConversions(args = {}) {
213210
return this._makeRequest({
214-
debug: true,
215211
path: "/conversions",
216212
paramsSerializer: utils.getParamsSerializer(utils.encodeFn),
217213
...args,
@@ -224,7 +220,6 @@ export default {
224220
"associatedEntity",
225221
];
226222
return this._makeRequest({
227-
debug: true,
228223
path: "/leadFormResponses",
229224
paramsSerializer: utils.getParamsSerializer(utils.encodeParamKeys(keys)),
230225
...args,
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "@pipedream/linkedin_ads",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Pipedream LinkedIn Ads Components",
55
"main": "linkedin_ads.app.mjs",
66
"keywords": [
77
"pipedream",
88
"linkedin_ads"
99
],
10-
"files": [
11-
"dist"
12-
],
1310
"homepage": "https://pipedream.com/apps/linkedin_ads",
1411
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
1512
"publishConfig": {
1613
"access": "public"
14+
},
15+
"dependencies": {
16+
"@pipedream/platform": "^3.0.3"
1717
}
1818
}

components/linkedin_ads/sources/new-event-registration-form-response/new-event-registration-form-response.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "linkedin_ads-new-event-registration-form-response",
66
name: "New Event Registration Form Response",
77
description: "Emit new event when a fresh response is received on the event registration form. User needs to configure the prop of the specific event. [See the documentation](https://learn.microsoft.com/en-us/linkedin/marketing/community-management/organizations/events?view=li-lms-2024-01&tabs=http)",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "source",
1010
dedupe: "unique",
1111
props: {

components/linkedin_ads/sources/new-lead-gen-form-created/new-lead-gen-form-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "linkedin_ads-new-lead-gen-form-created",
77
name: "New Lead Gen Form Created",
88
description: "Emit new event when a new lead is captured through a form. [See the documentation](https://learn.microsoft.com/en-us/linkedin/marketing/lead-sync/leadsync?view=li-lms-2023-07&tabs=http#find-lead-form-responses-by-owner)",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
props: {

0 commit comments

Comments
 (0)