@vm0/cli 9.144.1 → 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.144.1",
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.144.1",
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 = {
@@ -99146,6 +99186,34 @@ var lark = {
99146
99186
  init_esm_shims();
99147
99187
  var luma = {
99148
99188
  luma: {
99189
+ label: "Luma",
99190
+ category: "meetings-scheduling",
99191
+ helpText: "Connect your Luma account to manage events, guests, tickets, and calendar data via the Luma API",
99192
+ tags: ["events", "calendar", "tickets", "guests", "rsvp"],
99193
+ authMethods: {
99194
+ "api-token": {
99195
+ label: "API Key",
99196
+ helpText: "1. Log in at [lu.ma](https://lu.ma)\n2. Go to Calendars Home \u2192 select your calendar \u2192 Settings \u2192 Developer\n3. Generate or copy your API key\n4. Paste the key here",
99197
+ secrets: {
99198
+ LUMA_API_KEY: {
99199
+ label: "API Key",
99200
+ required: true,
99201
+ placeholder: "your-luma-api-key"
99202
+ }
99203
+ }
99204
+ }
99205
+ },
99206
+ defaultAuthMethod: "api-token",
99207
+ environmentMapping: {
99208
+ LUMA_API_KEY: "$secrets.LUMA_API_KEY"
99209
+ }
99210
+ }
99211
+ };
99212
+
99213
+ // ../../packages/connectors/src/connectors/luma-ai.ts
99214
+ init_esm_shims();
99215
+ var lumaAi = {
99216
+ "luma-ai": {
99149
99217
  label: "Luma AI",
99150
99218
  category: "ai-image-video",
99151
99219
  generation: ["image", "video"],
@@ -100174,6 +100242,7 @@ var CONNECTOR_TYPES_DEF = {
100174
100242
  ...googleSheets,
100175
100243
  ...googleDocs,
100176
100244
  ...googleDrive,
100245
+ ...googleAds,
100177
100246
  ...googleCalendar,
100178
100247
  ...googleMeet,
100179
100248
  ...close2,
@@ -100309,6 +100378,7 @@ var CONNECTOR_TYPES_DEF = {
100309
100378
  ...discord,
100310
100379
  ...lark,
100311
100380
  ...luma,
100381
+ ...lumaAi,
100312
100382
  ...langsmith,
100313
100383
  ...mailsac,
100314
100384
  ...manus,
@@ -102835,7 +102905,13 @@ var MODEL_PROVIDER_FIREWALL_CONFIGS = {
102835
102905
  },
102836
102906
  placeholders: {
102837
102907
  CHATGPT_ACCESS_TOKEN: "chatgpt-token-CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocal",
102838
- CHATGPT_ACCOUNT_ID: "ws_VM0_PLACEHOLDER_DO_NOT_TRUST"
102908
+ CHATGPT_ACCOUNT_ID: "ws_VM0_PLACEHOLDER_DO_NOT_TRUST",
102909
+ // refresh_token written by guest-agent into ~/.codex/auth.json (#12077).
102910
+ // Kept in this map so the firewall can substitute it on egress if codex
102911
+ // ever tries to use it directly — defense-in-depth alongside
102912
+ // CODEX_REFRESH_TOKEN_URL_OVERRIDE which redirects refresh attempts to
102913
+ // localhost. The sandbox never gets the real refresh_token (#7365).
102914
+ CHATGPT_REFRESH_TOKEN: "rt_VM0_PLACEHOLDER_DO_NOT_TRUST"
102839
102915
  }
102840
102916
  }
102841
102917
  };
@@ -111283,6 +111359,31 @@ var gitlabFirewall = {
111283
111359
  ]
111284
111360
  };
111285
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
+
111286
111387
  // ../../packages/connectors/src/firewalls/google-calendar.generated.ts
111287
111388
  init_esm_shims();
111288
111389
  var googleCalendarFirewall = {
@@ -113176,6 +113277,27 @@ var loopsFirewall = {
113176
113277
  init_esm_shims();
113177
113278
  var lumaFirewall = {
113178
113279
  name: "luma",
113280
+ description: "Luma event management platform",
113281
+ placeholders: {
113282
+ LUMA_API_KEY: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalC"
113283
+ },
113284
+ apis: [
113285
+ {
113286
+ base: "https://public-api.luma.com",
113287
+ auth: {
113288
+ headers: {
113289
+ "x-luma-api-key": "${{ secrets.LUMA_API_KEY }}"
113290
+ }
113291
+ },
113292
+ permissions: []
113293
+ }
113294
+ ]
113295
+ };
113296
+
113297
+ // ../../packages/connectors/src/firewalls/luma-ai.generated.ts
113298
+ init_esm_shims();
113299
+ var lumaAiFirewall = {
113300
+ name: "luma-ai",
113179
113301
  description: "Luma AI Dream Machine",
113180
113302
  placeholders: {
113181
113303
  LUMA_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalC"
@@ -117471,6 +117593,7 @@ var CONNECTOR_FIREWALLS = {
117471
117593
  github: githubFirewall,
117472
117594
  gitlab: gitlabFirewall,
117473
117595
  gmail: gmailFirewall,
117596
+ "google-ads": googleAdsFirewall,
117474
117597
  "google-calendar": googleCalendarFirewall,
117475
117598
  "google-docs": googleDocsFirewall,
117476
117599
  "google-drive": googleDriveFirewall,
@@ -117503,6 +117626,7 @@ var CONNECTOR_FIREWALLS = {
117503
117626
  linear: linearFirewall,
117504
117627
  loops: loopsFirewall,
117505
117628
  luma: lumaFirewall,
117629
+ "luma-ai": lumaAiFirewall,
117506
117630
  mailchimp: mailchimpFirewall,
117507
117631
  make: makeFirewall,
117508
117632
  mailsac: mailsacFirewall,
@@ -120293,6 +120417,11 @@ var FEATURE_SWITCHES = {
120293
120417
  description: "Enable the Outlook Calendar connector",
120294
120418
  enabled: false
120295
120419
  },
120420
+ ["googleAdsConnector" /* GoogleAdsConnector */]: {
120421
+ maintainer: "ethan@vm0.ai",
120422
+ description: "Enable the Google Ads connector",
120423
+ enabled: false
120424
+ },
120296
120425
  ["metaAdsConnector" /* MetaAdsConnector */]: {
120297
120426
  maintainer: "ethan@vm0.ai",
120298
120427
  description: "Enable the Meta Ads Manager connector",
@@ -121848,4 +121977,4 @@ undici/lib/web/fetch/body.js:
121848
121977
  undici/lib/web/websocket/frame.js:
121849
121978
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
121850
121979
  */
121851
- //# sourceMappingURL=chunk-CFIYV4PA.js.map
121980
+ //# sourceMappingURL=chunk-AUHFGGCN.js.map