@vm0/cli 9.102.4 → 9.102.6

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.
@@ -49,7 +49,7 @@ if (DSN) {
49
49
  Sentry.init({
50
50
  dsn: DSN,
51
51
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
52
- release: "9.102.4",
52
+ release: "9.102.6",
53
53
  sendDefaultPii: false,
54
54
  tracesSampleRate: 0,
55
55
  shutdownTimeout: 500,
@@ -68,7 +68,7 @@ if (DSN) {
68
68
  }
69
69
  });
70
70
  Sentry.setContext("cli", {
71
- version: "9.102.4",
71
+ version: "9.102.6",
72
72
  command: process.argv.slice(2).join(" ")
73
73
  });
74
74
  Sentry.setContext("runtime", {
@@ -1775,6 +1775,27 @@ var CONNECTOR_TYPES_DEF = {
1775
1775
  },
1776
1776
  defaultAuthMethod: "api-token"
1777
1777
  },
1778
+ agentphone: {
1779
+ label: "AgentPhone",
1780
+ environmentMapping: {
1781
+ AGENTPHONE_TOKEN: "$secrets.AGENTPHONE_TOKEN"
1782
+ },
1783
+ helpText: "Connect your AgentPhone account to make and receive phone calls, send SMS, manage phone numbers, and build voice AI agents",
1784
+ authMethods: {
1785
+ "api-token": {
1786
+ label: "API Key",
1787
+ helpText: "1. Sign up at [agentphone.to](https://agentphone.to)\n2. Go to **Dashboard > API Keys**\n3. Create a new API key and copy it (starts with `sk_live_`)",
1788
+ secrets: {
1789
+ AGENTPHONE_TOKEN: {
1790
+ label: "API Key",
1791
+ required: true,
1792
+ placeholder: "sk_live_..."
1793
+ }
1794
+ }
1795
+ }
1796
+ },
1797
+ defaultAuthMethod: "api-token"
1798
+ },
1778
1799
  airtable: {
1779
1800
  label: "Airtable",
1780
1801
  environmentMapping: {
@@ -4205,6 +4226,27 @@ var CONNECTOR_TYPES_DEF = {
4205
4226
  },
4206
4227
  defaultAuthMethod: "api-token"
4207
4228
  },
4229
+ pika: {
4230
+ label: "Pika",
4231
+ environmentMapping: {
4232
+ PIKA_TOKEN: "$secrets.PIKA_TOKEN"
4233
+ },
4234
+ helpText: "Connect your Pika Developer account to join video meetings (Google Meet, Zoom) as a real-time AI avatar with voice cloning",
4235
+ authMethods: {
4236
+ "api-token": {
4237
+ label: "Developer Key",
4238
+ helpText: "1. Go to [pika.me/dev](https://www.pika.me/dev/)\n2. Sign in or create an account\n3. Create a new Developer Key\n4. Copy the key (format: `dk_...`)",
4239
+ secrets: {
4240
+ PIKA_TOKEN: {
4241
+ label: "Developer Key",
4242
+ required: true,
4243
+ placeholder: "dk_..."
4244
+ }
4245
+ }
4246
+ }
4247
+ },
4248
+ defaultAuthMethod: "api-token"
4249
+ },
4208
4250
  bitrix: {
4209
4251
  label: "Bitrix24",
4210
4252
  environmentMapping: {
@@ -5358,6 +5400,26 @@ var agentmailFirewall = {
5358
5400
  ]
5359
5401
  };
5360
5402
 
5403
+ // ../../packages/core/src/firewalls/agentphone.generated.ts
5404
+ var agentphoneFirewall = {
5405
+ name: "agentphone",
5406
+ description: "AgentPhone API",
5407
+ placeholders: {
5408
+ AGENTPHONE_TOKEN: "ap_test_c0ffee5afe10ca1c0ffee5afe10ca1c"
5409
+ },
5410
+ apis: [
5411
+ {
5412
+ base: "https://api.agentphone.to",
5413
+ auth: {
5414
+ headers: {
5415
+ Authorization: "Bearer ${{ secrets.AGENTPHONE_TOKEN }}"
5416
+ }
5417
+ },
5418
+ permissions: []
5419
+ }
5420
+ ]
5421
+ };
5422
+
5361
5423
  // ../../packages/core/src/firewalls/ahrefs.generated.ts
5362
5424
  var ahrefsFirewall = {
5363
5425
  name: "ahrefs",
@@ -5438,6 +5500,26 @@ var apifyFirewall = {
5438
5500
  ]
5439
5501
  };
5440
5502
 
5503
+ // ../../packages/core/src/firewalls/pika.generated.ts
5504
+ var pikaFirewall = {
5505
+ name: "pika",
5506
+ description: "Pika",
5507
+ placeholders: {
5508
+ PIKA_TOKEN: "dk_PikaDevKeyPlaceholder0000000000000000"
5509
+ },
5510
+ apis: [
5511
+ {
5512
+ base: "https://srkibaanghvsriahb.pika.art",
5513
+ auth: {
5514
+ headers: {
5515
+ Authorization: "DevKey ${{ secrets.PIKA_TOKEN }}"
5516
+ }
5517
+ },
5518
+ permissions: []
5519
+ }
5520
+ ]
5521
+ };
5522
+
5441
5523
  // ../../packages/core/src/firewalls/doppler.generated.ts
5442
5524
  var dopplerFirewall = {
5443
5525
  name: "doppler",
@@ -24265,9 +24347,11 @@ var zeptomailFirewall = {
24265
24347
  // ../../packages/core/src/firewalls/index.ts
24266
24348
  var CONNECTOR_FIREWALLS = {
24267
24349
  agentmail: agentmailFirewall,
24350
+ agentphone: agentphoneFirewall,
24268
24351
  ahrefs: ahrefsFirewall,
24269
24352
  airtable: airtableFirewall,
24270
24353
  apollo: apolloFirewall,
24354
+ pika: pikaFirewall,
24271
24355
  apify: apifyFirewall,
24272
24356
  asana: asanaFirewall,
24273
24357
  atlassian: atlassianFirewall,
@@ -32202,4 +32286,4 @@ export {
32202
32286
  parseTime,
32203
32287
  paginate
32204
32288
  };
32205
- //# sourceMappingURL=chunk-OIHZTRAQ.js.map
32289
+ //# sourceMappingURL=chunk-FIS2ULB6.js.map