@vm0/cli 9.90.4 → 9.90.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.
- package/{chunk-XQKSWAGW.js → chunk-YVJVEAKR.js} +17 -17
- package/{chunk-XQKSWAGW.js.map → chunk-YVJVEAKR.js.map} +1 -1
- package/index.js +10 -10
- package/package.json +1 -1
- package/zero.js +3 -17
- package/zero.js.map +1 -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.90.
|
|
52
|
+
release: "9.90.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.90.
|
|
71
|
+
version: "9.90.6",
|
|
72
72
|
command: process.argv.slice(2).join(" ")
|
|
73
73
|
});
|
|
74
74
|
Sentry.setContext("runtime", {
|
|
@@ -13262,6 +13262,15 @@ var mailchimpFirewall = {
|
|
|
13262
13262
|
}
|
|
13263
13263
|
},
|
|
13264
13264
|
permissions: []
|
|
13265
|
+
},
|
|
13266
|
+
{
|
|
13267
|
+
base: "https://login.mailchimp.com",
|
|
13268
|
+
auth: {
|
|
13269
|
+
headers: {
|
|
13270
|
+
Authorization: "OAuth ${{ secrets.MAILCHIMP_TOKEN }}"
|
|
13271
|
+
}
|
|
13272
|
+
},
|
|
13273
|
+
permissions: []
|
|
13265
13274
|
}
|
|
13266
13275
|
]
|
|
13267
13276
|
};
|
|
@@ -18772,6 +18781,11 @@ var FEATURE_SWITCHES = {
|
|
|
18772
18781
|
enabled: false,
|
|
18773
18782
|
enabledUserHashes: STAFF_USER_HASHES,
|
|
18774
18783
|
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
18784
|
+
},
|
|
18785
|
+
["activityLogList" /* ActivityLogList */]: {
|
|
18786
|
+
maintainer: "ethan@vm0.ai",
|
|
18787
|
+
enabled: false,
|
|
18788
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
18775
18789
|
}
|
|
18776
18790
|
};
|
|
18777
18791
|
async function isFeatureEnabled(key, ctx) {
|
|
@@ -19656,19 +19670,6 @@ async function getZeroAgentUserConnectors(id) {
|
|
|
19656
19670
|
`Failed to get connector permissions for zero agent "${id}"`
|
|
19657
19671
|
);
|
|
19658
19672
|
}
|
|
19659
|
-
async function setZeroAgentUserConnectors(id, enabledTypes) {
|
|
19660
|
-
const config = await getClientConfig();
|
|
19661
|
-
const client = initClient15(zeroUserConnectorsContract, config);
|
|
19662
|
-
const result = await client.update({
|
|
19663
|
-
params: { id },
|
|
19664
|
-
body: { enabledTypes }
|
|
19665
|
-
});
|
|
19666
|
-
if (result.status === 200) return;
|
|
19667
|
-
handleError(
|
|
19668
|
-
result,
|
|
19669
|
-
`Failed to set connector permissions for zero agent "${id}"`
|
|
19670
|
-
);
|
|
19671
|
-
}
|
|
19672
19673
|
async function updateZeroAgentInstructions(id, content) {
|
|
19673
19674
|
const config = await getClientConfig();
|
|
19674
19675
|
const client = initClient15(zeroAgentInstructionsContract, config);
|
|
@@ -20842,7 +20843,6 @@ export {
|
|
|
20842
20843
|
deleteZeroAgent,
|
|
20843
20844
|
getZeroAgentInstructions,
|
|
20844
20845
|
getZeroAgentUserConnectors,
|
|
20845
|
-
setZeroAgentUserConnectors,
|
|
20846
20846
|
updateZeroAgentInstructions,
|
|
20847
20847
|
listSkills,
|
|
20848
20848
|
createSkill,
|
|
@@ -20893,4 +20893,4 @@ export {
|
|
|
20893
20893
|
pollEvents,
|
|
20894
20894
|
showNextSteps
|
|
20895
20895
|
};
|
|
20896
|
-
//# sourceMappingURL=chunk-
|
|
20896
|
+
//# sourceMappingURL=chunk-YVJVEAKR.js.map
|