@vm0/cli 9.145.0 → 9.145.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -74083,7 +74083,7 @@ if (DSN) {
74083
74083
  init2({
74084
74084
  dsn: DSN,
74085
74085
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
74086
- release: "9.145.0",
74086
+ release: "9.145.1",
74087
74087
  sendDefaultPii: false,
74088
74088
  tracesSampleRate: 0,
74089
74089
  shutdownTimeout: 500,
@@ -74102,7 +74102,7 @@ if (DSN) {
74102
74102
  }
74103
74103
  });
74104
74104
  setContext("cli", {
74105
- version: "9.145.0",
74105
+ version: "9.145.1",
74106
74106
  command: process.argv.slice(2).join(" ")
74107
74107
  });
74108
74108
  setContext("runtime", {
@@ -94762,6 +94762,46 @@ var googleDrive = {
94762
94762
  }
94763
94763
  };
94764
94764
 
94765
+ // ../../packages/connectors/src/connectors/google-ads.ts
94766
+ init_esm_shims();
94767
+ var googleAds = {
94768
+ "google-ads": {
94769
+ label: "Google Ads",
94770
+ category: "marketing-content-growth",
94771
+ tags: ["ads", "advertising", "google ads", "campaigns", "gaql"],
94772
+ featureFlag: "googleAdsConnector" /* GoogleAdsConnector */,
94773
+ environmentMapping: {
94774
+ GOOGLE_ADS_TOKEN: "$secrets.GOOGLE_ADS_ACCESS_TOKEN"
94775
+ },
94776
+ helpText: "Connect your Google Ads account to manage campaigns, ad groups, and performance reports",
94777
+ authMethods: {
94778
+ oauth: {
94779
+ label: "OAuth (Recommended)",
94780
+ helpText: "Sign in with Google to grant Google Ads access.",
94781
+ secrets: {
94782
+ GOOGLE_ADS_ACCESS_TOKEN: {
94783
+ label: "Access Token",
94784
+ required: true
94785
+ },
94786
+ GOOGLE_ADS_REFRESH_TOKEN: {
94787
+ label: "Refresh Token",
94788
+ required: true
94789
+ }
94790
+ }
94791
+ }
94792
+ },
94793
+ defaultAuthMethod: "oauth",
94794
+ oauth: {
94795
+ authorizationUrl: "https://accounts.google.com/o/oauth2/v2/auth",
94796
+ tokenUrl: "https://oauth2.googleapis.com/token",
94797
+ scopes: [
94798
+ "https://www.googleapis.com/auth/adwords",
94799
+ "https://www.googleapis.com/auth/userinfo.email"
94800
+ ]
94801
+ }
94802
+ }
94803
+ };
94804
+
94765
94805
  // ../../packages/connectors/src/connectors/google-calendar.ts
94766
94806
  init_esm_shims();
94767
94807
  var googleCalendar = {
@@ -100202,6 +100242,7 @@ var CONNECTOR_TYPES_DEF = {
100202
100242
  ...googleSheets,
100203
100243
  ...googleDocs,
100204
100244
  ...googleDrive,
100245
+ ...googleAds,
100205
100246
  ...googleCalendar,
100206
100247
  ...googleMeet,
100207
100248
  ...close2,
@@ -111318,6 +111359,31 @@ var gitlabFirewall = {
111318
111359
  ]
111319
111360
  };
111320
111361
 
111362
+ // ../../packages/connectors/src/firewalls/google-ads.generated.ts
111363
+ init_esm_shims();
111364
+ var googleAdsFirewall = {
111365
+ name: "google-ads",
111366
+ description: "Google Ads API",
111367
+ placeholders: {
111368
+ GOOGLE_ADS_TOKEN: "ya29.A0CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSa",
111369
+ GOOGLE_ADS_DEVELOPER_TOKEN: "ya29.A0CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSa",
111370
+ GOOGLE_ADS_LOGIN_CUSTOMER_ID: "ya29.A0CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSa"
111371
+ },
111372
+ apis: [
111373
+ {
111374
+ base: "https://googleads.googleapis.com",
111375
+ auth: {
111376
+ headers: {
111377
+ Authorization: "Bearer ${{ secrets.GOOGLE_ADS_TOKEN }}",
111378
+ "developer-token": "${{ secrets.GOOGLE_ADS_DEVELOPER_TOKEN }}",
111379
+ "login-customer-id": "${{ secrets.GOOGLE_ADS_LOGIN_CUSTOMER_ID }}"
111380
+ }
111381
+ },
111382
+ permissions: []
111383
+ }
111384
+ ]
111385
+ };
111386
+
111321
111387
  // ../../packages/connectors/src/firewalls/google-calendar.generated.ts
111322
111388
  init_esm_shims();
111323
111389
  var googleCalendarFirewall = {
@@ -117527,6 +117593,7 @@ var CONNECTOR_FIREWALLS = {
117527
117593
  github: githubFirewall,
117528
117594
  gitlab: gitlabFirewall,
117529
117595
  gmail: gmailFirewall,
117596
+ "google-ads": googleAdsFirewall,
117530
117597
  "google-calendar": googleCalendarFirewall,
117531
117598
  "google-docs": googleDocsFirewall,
117532
117599
  "google-drive": googleDriveFirewall,
@@ -120350,6 +120417,11 @@ var FEATURE_SWITCHES = {
120350
120417
  description: "Enable the Outlook Calendar connector",
120351
120418
  enabled: false
120352
120419
  },
120420
+ ["googleAdsConnector" /* GoogleAdsConnector */]: {
120421
+ maintainer: "ethan@vm0.ai",
120422
+ description: "Enable the Google Ads connector",
120423
+ enabled: false
120424
+ },
120353
120425
  ["metaAdsConnector" /* MetaAdsConnector */]: {
120354
120426
  maintainer: "ethan@vm0.ai",
120355
120427
  description: "Enable the Meta Ads Manager connector",
@@ -121905,4 +121977,4 @@ undici/lib/web/fetch/body.js:
121905
121977
  undici/lib/web/websocket/frame.js:
121906
121978
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
121907
121979
  */
121908
- //# sourceMappingURL=chunk-4YMN74AI.js.map
121980
+ //# sourceMappingURL=chunk-AUHFGGCN.js.map