@vm0/cli 9.160.2 → 9.160.4
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.160.
|
|
74086
|
+
release: "9.160.4",
|
|
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.160.
|
|
74105
|
+
version: "9.160.4",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -74419,12 +74419,6 @@ var FEATURE_SWITCHES = {
|
|
|
74419
74419
|
description: "Replace the Invite people button in the agent chat page header with a New button that creates a new chat thread",
|
|
74420
74420
|
enabled: false
|
|
74421
74421
|
},
|
|
74422
|
-
["agentPhoneAppUi" /* AgentPhoneAppUi */]: {
|
|
74423
|
-
maintainer: "linghan@vm0.ai",
|
|
74424
|
-
description: "Show first-class AgentPhone app surfaces: Works card and onboarding entry points.",
|
|
74425
|
-
enabled: false,
|
|
74426
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
74427
|
-
},
|
|
74428
74422
|
["chatMessageStartButton" /* ChatMessageStartButton */]: {
|
|
74429
74423
|
maintainer: "linghan@vm0.ai",
|
|
74430
74424
|
description: "Show an icon button in assistant message group actions that scrolls back to the start of that message group.",
|
|
@@ -102402,6 +102396,34 @@ var neon = {
|
|
|
102402
102396
|
}
|
|
102403
102397
|
};
|
|
102404
102398
|
|
|
102399
|
+
// ../../packages/connectors/src/connectors/novita.ts
|
|
102400
|
+
init_esm_shims();
|
|
102401
|
+
var novita = {
|
|
102402
|
+
novita: {
|
|
102403
|
+
label: "Novita AI",
|
|
102404
|
+
category: "ai-general-models",
|
|
102405
|
+
generation: ["audio", "image", "text", "video"],
|
|
102406
|
+
environmentMapping: {
|
|
102407
|
+
NOVITA_TOKEN: "$secrets.NOVITA_TOKEN"
|
|
102408
|
+
},
|
|
102409
|
+
helpText: "Connect your Novita AI account to run LLM, image, video, and audio models through an OpenAI-compatible API",
|
|
102410
|
+
authMethods: {
|
|
102411
|
+
"api-token": {
|
|
102412
|
+
label: "API Key",
|
|
102413
|
+
helpText: "1. Sign in at [novita.ai](https://novita.ai)\n2. Open **Settings \u2192 Key Management**\n3. Click **+ Add New Key**\n4. Copy the key (it begins with `sk_`). Paste it here.",
|
|
102414
|
+
secrets: {
|
|
102415
|
+
NOVITA_TOKEN: {
|
|
102416
|
+
label: "API Key",
|
|
102417
|
+
required: true,
|
|
102418
|
+
placeholder: "sk_CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLoc"
|
|
102419
|
+
}
|
|
102420
|
+
}
|
|
102421
|
+
}
|
|
102422
|
+
},
|
|
102423
|
+
defaultAuthMethod: "api-token"
|
|
102424
|
+
}
|
|
102425
|
+
};
|
|
102426
|
+
|
|
102405
102427
|
// ../../packages/connectors/src/connectors/nyne.ts
|
|
102406
102428
|
init_esm_shims();
|
|
102407
102429
|
var nyne = {
|
|
@@ -105034,6 +105056,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
105034
105056
|
...msg9,
|
|
105035
105057
|
...n8n,
|
|
105036
105058
|
...neon,
|
|
105059
|
+
...novita,
|
|
105037
105060
|
...nyne,
|
|
105038
105061
|
...onyx,
|
|
105039
105062
|
...openai,
|
|
@@ -121154,6 +121177,27 @@ var notionFirewall = {
|
|
|
121154
121177
|
]
|
|
121155
121178
|
};
|
|
121156
121179
|
|
|
121180
|
+
// ../../packages/connectors/src/firewalls/novita.generated.ts
|
|
121181
|
+
init_esm_shims();
|
|
121182
|
+
var novitaFirewall = {
|
|
121183
|
+
name: "novita",
|
|
121184
|
+
description: "Novita AI",
|
|
121185
|
+
placeholders: {
|
|
121186
|
+
NOVITA_TOKEN: "sk_CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLoc"
|
|
121187
|
+
},
|
|
121188
|
+
apis: [
|
|
121189
|
+
{
|
|
121190
|
+
base: "https://api.novita.ai",
|
|
121191
|
+
auth: {
|
|
121192
|
+
headers: {
|
|
121193
|
+
Authorization: "Bearer ${{ secrets.NOVITA_TOKEN }}"
|
|
121194
|
+
}
|
|
121195
|
+
},
|
|
121196
|
+
permissions: []
|
|
121197
|
+
}
|
|
121198
|
+
]
|
|
121199
|
+
};
|
|
121200
|
+
|
|
121157
121201
|
// ../../packages/connectors/src/firewalls/nyne.generated.ts
|
|
121158
121202
|
init_esm_shims();
|
|
121159
121203
|
var nyneFirewall = {
|
|
@@ -125653,6 +125697,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
125653
125697
|
n8n: n8nFirewall,
|
|
125654
125698
|
neon: neonFirewall,
|
|
125655
125699
|
notion: notionFirewall,
|
|
125700
|
+
novita: novitaFirewall,
|
|
125656
125701
|
onyx: onyxFirewall,
|
|
125657
125702
|
openai: openaiFirewall,
|
|
125658
125703
|
"outlook-calendar": outlookCalendarFirewall,
|
|
@@ -130682,8 +130727,7 @@ var zeroIntegrationsAgentPhoneContract = c107.router({
|
|
|
130682
130727
|
headers: authHeadersSchema,
|
|
130683
130728
|
responses: {
|
|
130684
130729
|
200: agentPhoneLinkStatusResponseSchema,
|
|
130685
|
-
401: apiErrorSchema
|
|
130686
|
-
403: apiErrorSchema
|
|
130730
|
+
401: apiErrorSchema
|
|
130687
130731
|
},
|
|
130688
130732
|
summary: "Check the authenticated user's AgentPhone link status"
|
|
130689
130733
|
},
|
|
@@ -130696,7 +130740,6 @@ var zeroIntegrationsAgentPhoneContract = c107.router({
|
|
|
130696
130740
|
200: agentPhoneStartLinkResponseSchema,
|
|
130697
130741
|
400: apiErrorSchema,
|
|
130698
130742
|
401: apiErrorSchema,
|
|
130699
|
-
403: apiErrorSchema,
|
|
130700
130743
|
429: apiErrorSchema,
|
|
130701
130744
|
409: apiErrorSchema,
|
|
130702
130745
|
503: apiErrorSchema
|
|
@@ -130711,7 +130754,6 @@ var zeroIntegrationsAgentPhoneContract = c107.router({
|
|
|
130711
130754
|
responses: {
|
|
130712
130755
|
204: c107.noBody(),
|
|
130713
130756
|
401: apiErrorSchema,
|
|
130714
|
-
403: apiErrorSchema,
|
|
130715
130757
|
404: apiErrorSchema
|
|
130716
130758
|
},
|
|
130717
130759
|
summary: "Disconnect the authenticated user's AgentPhone link"
|
|
@@ -132360,4 +132402,4 @@ undici/lib/web/fetch/body.js:
|
|
|
132360
132402
|
undici/lib/web/websocket/frame.js:
|
|
132361
132403
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
132362
132404
|
*/
|
|
132363
|
-
//# sourceMappingURL=chunk-
|
|
132405
|
+
//# sourceMappingURL=chunk-MO4QBOYJ.js.map
|