@@ -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
0 commit comments