Skip to content

Commit 922667e

Browse files
authored
Merge branch 'master' into beamer
2 parents b65c8b4 + 52e38c2 commit 922667e

File tree

12 files changed

+1821
-42
lines changed

12 files changed

+1821
-42
lines changed

scripts/catalog.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,11 +231,12 @@ const updateDestinations = async () => {
231231
components: destination.components,
232232
platforms: destination.platforms,
233233
browserUnbundlingSupported: destination.browserUnbundlingSupported,
234-
browserUnbundlingPublic: destination.browserUnbundlingPublic
234+
browserUnbundlingPublic: destination.browserUnbundlingPublic,
235+
methods: destination.methods
235236
})
236237

237238
let url = `connections/destinations/catalog/${slug}`
238-
239+
239240
let settings = destination.settings
240241
settings.sort((a, b) => {
241242
if(a.display_name < b.display_name) { return -1; }
@@ -251,7 +252,7 @@ const updateDestinations = async () => {
251252
})
252253
}
253254
})
254-
255+
255256
let updatedDestination = {
256257
display_name: destination.display_name,
257258
slug,
@@ -271,6 +272,7 @@ const updateDestinations = async () => {
271272
platforms: destination.platforms,
272273
browserUnbundlingSupported: destination.browserUnbundlingSupported,
273274
browserUnbundlingPublic: destination.browserUnbundlingPublic,
275+
methods: destination.methods,
274276
settings,
275277
connection_modes,
276278
previous_names: destination.previous_names

src/_data/catalog/destination_categories.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PLATFORM API. DO NOT EDIT
2-
# destination categories last updated 2020-01-28
2+
# destination categories last updated 2020-01-29
33
items:
44
- display_name: Email Marketing
55
slug: email-marketing

0 commit comments

Comments
 (0)