Skip to content

Commit 7a77a3c

Browse files
authored
Merge pull request #2238 from segmentio/develop
Release 21.48.2
2 parents fd6f4bf + 0c75151 commit 7a77a3c

File tree

43 files changed

+5994
-695
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+5994
-695
lines changed

.vscode/yml.code-snippets

+5-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,9 @@
2020
"prefix": ["- name"],
2121
"body":["- name: ${1:name}\r\tdescription: ${2:description}\r\tdefault: ${3}"],
2222
"description": "Yaml settings"
23-
}
23+
},
24+
"ext_link":{
25+
"prefix": ["{:}"],
26+
"body":["{:target='${1:_blank}'}"]
27+
},
2428
}

scripts/catalog_papi.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,8 @@ const updateDestinations = async () => {
307307
if(a.name.toLowerCase() > b.name.toLowerCase()) { return 1; }
308308
return 0;
309309
})
310+
let actions = destination.actions
311+
let presets = destination.presets
310312

311313
const clone = (obj) => Object.assign({}, obj)
312314
const renameKey = (object, key, newKey) => {
@@ -321,6 +323,7 @@ const updateDestinations = async () => {
321323
destination.supportedMethods = renameKey(destination.supportedMethods, 'pageview', 'page')
322324

323325
let updatedDestination = {
326+
destination_id: destination.id,
324327
display_name: destination.name,
325328
name: destination.name,
326329
slug,
@@ -343,7 +346,9 @@ const updateDestinations = async () => {
343346
browserUnbundlingPublic: destination.supportedFeatures.browserUnbundlingPublic,
344347
replay: destination.supportedFeatures.replay,
345348
connection_modes,
346-
settings
349+
settings,
350+
actions,
351+
presets
347352
}
348353
destinationsUpdated.push(updatedDestination)
349354
doesCatalogItemExist(updatedDestination)

src/_data/catalog/destination_categories.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PUBLIC API. DO NOT EDIT
2-
# destination categories last updated 2021-11-25
2+
# destination categories last updated 2021-11-30
33
items:
44
- display_name: A/B Testing
55
slug: a-b-testing

0 commit comments

Comments
 (0)