@vm0/cli 9.102.4 → 9.102.5
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.
- package/{chunk-OIHZTRAQ.js → chunk-PJWCCE7M.js} +45 -3
- package/chunk-PJWCCE7M.js.map +1 -0
- package/index.js +10 -10
- package/package.json +1 -1
- package/zero.js +2 -2
- package/chunk-OIHZTRAQ.js.map +0 -1
|
@@ -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.
|
|
52
|
+
release: "9.102.5",
|
|
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.
|
|
71
|
+
version: "9.102.5",
|
|
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: {
|
|
@@ -5358,6 +5379,26 @@ var agentmailFirewall = {
|
|
|
5358
5379
|
]
|
|
5359
5380
|
};
|
|
5360
5381
|
|
|
5382
|
+
// ../../packages/core/src/firewalls/agentphone.generated.ts
|
|
5383
|
+
var agentphoneFirewall = {
|
|
5384
|
+
name: "agentphone",
|
|
5385
|
+
description: "AgentPhone API",
|
|
5386
|
+
placeholders: {
|
|
5387
|
+
AGENTPHONE_TOKEN: "ap_test_c0ffee5afe10ca1c0ffee5afe10ca1c"
|
|
5388
|
+
},
|
|
5389
|
+
apis: [
|
|
5390
|
+
{
|
|
5391
|
+
base: "https://api.agentphone.to",
|
|
5392
|
+
auth: {
|
|
5393
|
+
headers: {
|
|
5394
|
+
Authorization: "Bearer ${{ secrets.AGENTPHONE_TOKEN }}"
|
|
5395
|
+
}
|
|
5396
|
+
},
|
|
5397
|
+
permissions: []
|
|
5398
|
+
}
|
|
5399
|
+
]
|
|
5400
|
+
};
|
|
5401
|
+
|
|
5361
5402
|
// ../../packages/core/src/firewalls/ahrefs.generated.ts
|
|
5362
5403
|
var ahrefsFirewall = {
|
|
5363
5404
|
name: "ahrefs",
|
|
@@ -24265,6 +24306,7 @@ var zeptomailFirewall = {
|
|
|
24265
24306
|
// ../../packages/core/src/firewalls/index.ts
|
|
24266
24307
|
var CONNECTOR_FIREWALLS = {
|
|
24267
24308
|
agentmail: agentmailFirewall,
|
|
24309
|
+
agentphone: agentphoneFirewall,
|
|
24268
24310
|
ahrefs: ahrefsFirewall,
|
|
24269
24311
|
airtable: airtableFirewall,
|
|
24270
24312
|
apollo: apolloFirewall,
|
|
@@ -32202,4 +32244,4 @@ export {
|
|
|
32202
32244
|
parseTime,
|
|
32203
32245
|
paginate
|
|
32204
32246
|
};
|
|
32205
|
-
//# sourceMappingURL=chunk-
|
|
32247
|
+
//# sourceMappingURL=chunk-PJWCCE7M.js.map
|