@vm0/cli 9.160.1 → 9.160.3

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.1",
74086
+ release: "9.160.3",
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.1",
74105
+ version: "9.160.3",
74106
74106
  command: process.argv.slice(2).join(" ")
74107
74107
  });
74108
74108
  setContext("runtime", {
@@ -102402,6 +102402,34 @@ var neon = {
102402
102402
  }
102403
102403
  };
102404
102404
 
102405
+ // ../../packages/connectors/src/connectors/novita.ts
102406
+ init_esm_shims();
102407
+ var novita = {
102408
+ novita: {
102409
+ label: "Novita AI",
102410
+ category: "ai-general-models",
102411
+ generation: ["audio", "image", "text", "video"],
102412
+ environmentMapping: {
102413
+ NOVITA_TOKEN: "$secrets.NOVITA_TOKEN"
102414
+ },
102415
+ helpText: "Connect your Novita AI account to run LLM, image, video, and audio models through an OpenAI-compatible API",
102416
+ authMethods: {
102417
+ "api-token": {
102418
+ label: "API Key",
102419
+ 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.",
102420
+ secrets: {
102421
+ NOVITA_TOKEN: {
102422
+ label: "API Key",
102423
+ required: true,
102424
+ placeholder: "sk_CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLoc"
102425
+ }
102426
+ }
102427
+ }
102428
+ },
102429
+ defaultAuthMethod: "api-token"
102430
+ }
102431
+ };
102432
+
102405
102433
  // ../../packages/connectors/src/connectors/nyne.ts
102406
102434
  init_esm_shims();
102407
102435
  var nyne = {
@@ -104556,7 +104584,7 @@ var weread = {
104556
104584
  "bookshelf"
104557
104585
  ],
104558
104586
  environmentMapping: {
104559
- WEREAD_API_KEY: "$secrets.WEREAD_API_KEY"
104587
+ WEREAD_TOKEN: "$secrets.WEREAD_TOKEN"
104560
104588
  },
104561
104589
  helpText: "Connect WeChat Reading (\u5FAE\u4FE1\u8BFB\u4E66) to search books, browse your bookshelf, and read your notes, highlights, reviews, and reading statistics",
104562
104590
  authMethods: {
@@ -104564,7 +104592,7 @@ var weread = {
104564
104592
  label: "WeRead API Key",
104565
104593
  helpText: "1. Open the [WeRead Skill page](https://weread.qq.com/r/weread-skills)\n2. Scan the QR code with WeChat to sign in to your WeChat Reading account\n3. Copy the generated API key (it begins with `wrk-`)\n4. The key authorises every endpoint under `i.weread.qq.com` and is scoped to your own account data",
104566
104594
  secrets: {
104567
- WEREAD_API_KEY: {
104595
+ WEREAD_TOKEN: {
104568
104596
  label: "API Key",
104569
104597
  required: true,
104570
104598
  placeholder: "wrk-xxxxxxxxxxxxxxxx"
@@ -105034,6 +105062,7 @@ var CONNECTOR_TYPES_DEF = {
105034
105062
  ...msg9,
105035
105063
  ...n8n,
105036
105064
  ...neon,
105065
+ ...novita,
105037
105066
  ...nyne,
105038
105067
  ...onyx,
105039
105068
  ...openai,
@@ -121154,6 +121183,27 @@ var notionFirewall = {
121154
121183
  ]
121155
121184
  };
121156
121185
 
121186
+ // ../../packages/connectors/src/firewalls/novita.generated.ts
121187
+ init_esm_shims();
121188
+ var novitaFirewall = {
121189
+ name: "novita",
121190
+ description: "Novita AI",
121191
+ placeholders: {
121192
+ NOVITA_TOKEN: "sk_CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLoc"
121193
+ },
121194
+ apis: [
121195
+ {
121196
+ base: "https://api.novita.ai",
121197
+ auth: {
121198
+ headers: {
121199
+ Authorization: "Bearer ${{ secrets.NOVITA_TOKEN }}"
121200
+ }
121201
+ },
121202
+ permissions: []
121203
+ }
121204
+ ]
121205
+ };
121206
+
121157
121207
  // ../../packages/connectors/src/firewalls/nyne.generated.ts
121158
121208
  init_esm_shims();
121159
121209
  var nyneFirewall = {
@@ -123376,14 +123426,14 @@ var wereadFirewall = {
123376
123426
  name: "weread",
123377
123427
  description: "WeRead (\u5FAE\u4FE1\u8BFB\u4E66) Agent gateway: bookshelf, notes, reading stats, search",
123378
123428
  placeholders: {
123379
- WEREAD_API_KEY: "wrk-CoffeeSafeLocalCoffeeSafeLocalCoffee"
123429
+ WEREAD_TOKEN: "wrk-CoffeeSafeLocalCoffeeSafeLocalCoffee"
123380
123430
  },
123381
123431
  apis: [
123382
123432
  {
123383
123433
  base: "https://i.weread.qq.com",
123384
123434
  auth: {
123385
123435
  headers: {
123386
- Authorization: "Bearer ${{ secrets.WEREAD_API_KEY }}"
123436
+ Authorization: "Bearer ${{ secrets.WEREAD_TOKEN }}"
123387
123437
  }
123388
123438
  },
123389
123439
  permissions: []
@@ -125653,6 +125703,7 @@ var CONNECTOR_FIREWALLS = {
125653
125703
  n8n: n8nFirewall,
125654
125704
  neon: neonFirewall,
125655
125705
  notion: notionFirewall,
125706
+ novita: novitaFirewall,
125656
125707
  onyx: onyxFirewall,
125657
125708
  openai: openaiFirewall,
125658
125709
  "outlook-calendar": outlookCalendarFirewall,
@@ -132360,4 +132411,4 @@ undici/lib/web/fetch/body.js:
132360
132411
  undici/lib/web/websocket/frame.js:
132361
132412
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
132362
132413
  */
132363
- //# sourceMappingURL=chunk-IGFASJAN.js.map
132414
+ //# sourceMappingURL=chunk-DNDGD7ZL.js.map