File tree Expand file tree Collapse file tree 4 files changed +21
-1
lines changed Expand file tree Collapse file tree 4 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export default {
7878 tags : this . tags ,
7979 } ,
8080 } ) ;
81- $ . export ( "$summary" , "Successfully created user with the profile Key:" + response . profileKey ) ;
81+ $ . export ( "$summary" , "Successfully created user with the profile Key: " + response . profileKey ) ;
8282 return response ;
8383 } ,
8484} ;
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export default {
1919 app ,
2020 "title" ,
2121 ] ,
22+ description : "Unique title of the profile that will be updated" ,
2223 } ,
2324 messagingActive : {
2425 propDefinition : [
Original file line number Diff line number Diff line change 11import { axios } from "@pipedream/platform" ;
2+ import constants from "./common/constants.mjs" ;
23
34export default {
45 type : "app" ,
@@ -37,6 +38,7 @@ export default {
3738 type : "string[]" ,
3839 label : "Disable Social" ,
3940 description : "List of social platforms to disable for this profile" ,
41+ options : constants . SOCIAL_NETWORKS ,
4042 optional : true ,
4143 } ,
4244 team : {
Original file line number Diff line number Diff line change 1+ export default {
2+ SOCIAL_NETWORKS : [
3+ "bluesky" ,
4+ "facebook" ,
5+ "gmb" ,
6+ "instagram" ,
7+ "linkedin" ,
8+ "pinterest" ,
9+ "reddit" ,
10+ "snapchat" ,
11+ "telegram" ,
12+ "threads" ,
13+ "tiktok" ,
14+ "twitter" ,
15+ "youtube" ,
16+ ] ,
17+ } ;
You can’t perform that action at this time.
0 commit comments