File tree Expand file tree Collapse file tree 1 file changed +22
-3
lines changed
components/google_ads/actions/generate-keyword-ideas Expand file tree Collapse file tree 1 file changed +22
-3
lines changed Original file line number Diff line number Diff line change 1- import common from "../common/common .mjs" ;
1+ import googleAds from "../../google_ads.app .mjs" ;
22import { getAdditionalFields } from "../common/props.mjs" ;
33import {
44 parseObject , parseStringObject ,
@@ -17,8 +17,27 @@ export default {
1717 readOnlyHint : true ,
1818 } ,
1919 props : {
20- ...common . props ,
21- additionalFields : getAdditionalFields ( docLink ) ,
20+ googleAds,
21+ accountId : {
22+ propDefinition : [
23+ googleAds ,
24+ "accountId" ,
25+ ] ,
26+ } ,
27+ customerClientId : {
28+ propDefinition : [
29+ googleAds ,
30+ "customerClientId" ,
31+ ( { accountId } ) => ( {
32+ accountId,
33+ } ) ,
34+ ] ,
35+ optional : false ,
36+ } ,
37+ additionalFields : {
38+ ...getAdditionalFields ( docLink ) ,
39+ optional : false ,
40+ } ,
2241 } ,
2342 async run ( { $ } ) {
2443 const additionalFields = parseObject ( parseStringObject ( this . additionalFields ) ) ;
You can’t perform that action at this time.
0 commit comments