@vm0/cli 9.156.1 → 9.156.2
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.156.
|
|
74086
|
+
release: "9.156.2",
|
|
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.156.
|
|
74105
|
+
version: "9.156.2",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -97347,6 +97347,35 @@ var bentoml = {
|
|
|
97347
97347
|
}
|
|
97348
97348
|
};
|
|
97349
97349
|
|
|
97350
|
+
// ../../packages/connectors/src/connectors/doubao.ts
|
|
97351
|
+
init_esm_shims();
|
|
97352
|
+
var doubao = {
|
|
97353
|
+
doubao: {
|
|
97354
|
+
label: "Doubao",
|
|
97355
|
+
category: "ai-voice-audio",
|
|
97356
|
+
generation: ["audio"],
|
|
97357
|
+
tags: ["volcengine", "tts", "asr", "speech", "voice-clone", "mandarin"],
|
|
97358
|
+
environmentMapping: {
|
|
97359
|
+
DOUBAO_API_KEY: "$secrets.DOUBAO_API_KEY"
|
|
97360
|
+
},
|
|
97361
|
+
helpText: "Connect Volcengine Doubao (\u8C46\u5305\u8BED\u97F3) for Mandarin-first text-to-speech, speech recognition, and voice cloning",
|
|
97362
|
+
authMethods: {
|
|
97363
|
+
"api-token": {
|
|
97364
|
+
label: "Doubao API Key",
|
|
97365
|
+
helpText: "1. Sign in to the [Volcengine new speech console](https://console.volcengine.com/speech/new)\n2. Open **\u8BBE\u7F6E \u2192 API Key \u7BA1\u7406** ([direct link](https://console.volcengine.com/speech/new/setting/apikeys))\n3. Click **\u521B\u5EFA API Key**, name it, and copy the UUID value\n4. The key authorises every endpoint under `openspeech.bytedance.com` \u2014 TTS, ASR file recognition, voice cloning",
|
|
97366
|
+
secrets: {
|
|
97367
|
+
DOUBAO_API_KEY: {
|
|
97368
|
+
label: "API Key",
|
|
97369
|
+
required: true,
|
|
97370
|
+
placeholder: "00000000-0000-0000-0000-000000000000"
|
|
97371
|
+
}
|
|
97372
|
+
}
|
|
97373
|
+
}
|
|
97374
|
+
},
|
|
97375
|
+
defaultAuthMethod: "api-token"
|
|
97376
|
+
}
|
|
97377
|
+
};
|
|
97378
|
+
|
|
97350
97379
|
// ../../packages/connectors/src/connectors/github.ts
|
|
97351
97380
|
init_esm_shims();
|
|
97352
97381
|
var github = {
|
|
@@ -103476,6 +103505,60 @@ var snowflake = {
|
|
|
103476
103505
|
}
|
|
103477
103506
|
};
|
|
103478
103507
|
|
|
103508
|
+
// ../../packages/connectors/src/connectors/railway.ts
|
|
103509
|
+
init_esm_shims();
|
|
103510
|
+
var railway = {
|
|
103511
|
+
railway: {
|
|
103512
|
+
label: "Railway",
|
|
103513
|
+
category: "engineering-team-execution",
|
|
103514
|
+
environmentMapping: {
|
|
103515
|
+
RAILWAY_TOKEN: "$secrets.RAILWAY_TOKEN"
|
|
103516
|
+
},
|
|
103517
|
+
helpText: "Connect your Railway account to manage projects, services, deployments, environments, and variables across every workspace your token can see",
|
|
103518
|
+
authMethods: {
|
|
103519
|
+
"api-token": {
|
|
103520
|
+
label: "Account or Workspace Token",
|
|
103521
|
+
helpText: "1. Log in to [Railway](https://railway.com)\n2. Open your account or workspace **Settings \u2192 Tokens**\n3. Click **Create New Token**, name it, and (for workspace tokens) pick the workspace\n4. Copy the token (UUID v4 format)\n\nUse this connector for cross-project automation. For a single project, use the **Railway Project** connector instead.",
|
|
103522
|
+
secrets: {
|
|
103523
|
+
RAILWAY_TOKEN: {
|
|
103524
|
+
label: "Account/Workspace Token",
|
|
103525
|
+
required: true,
|
|
103526
|
+
placeholder: "00000000-0000-0000-0000-000000000000"
|
|
103527
|
+
}
|
|
103528
|
+
}
|
|
103529
|
+
}
|
|
103530
|
+
},
|
|
103531
|
+
defaultAuthMethod: "api-token"
|
|
103532
|
+
}
|
|
103533
|
+
};
|
|
103534
|
+
|
|
103535
|
+
// ../../packages/connectors/src/connectors/railway-project.ts
|
|
103536
|
+
init_esm_shims();
|
|
103537
|
+
var railwayProject = {
|
|
103538
|
+
"railway-project": {
|
|
103539
|
+
label: "Railway Project",
|
|
103540
|
+
category: "engineering-team-execution",
|
|
103541
|
+
environmentMapping: {
|
|
103542
|
+
RAILWAY_PROJECT_TOKEN: "$secrets.RAILWAY_PROJECT_TOKEN"
|
|
103543
|
+
},
|
|
103544
|
+
helpText: "Connect a single Railway project with a project-scoped token for tighter blast radius (redeploys, variable management, deployment status inside one project/environment)",
|
|
103545
|
+
authMethods: {
|
|
103546
|
+
"api-token": {
|
|
103547
|
+
label: "Project Token",
|
|
103548
|
+
helpText: "1. Log in to [Railway](https://railway.com) and open the target project\n2. Go to **Project Settings \u2192 Tokens**\n3. Click **Create Token**, pick the environment, and name it\n4. Copy the token (UUID v4 format)\n\nThis token is sent via the `Project-Access-Token` header and is bound to one environment in one project. For cross-project automation use the **Railway** connector instead.",
|
|
103549
|
+
secrets: {
|
|
103550
|
+
RAILWAY_PROJECT_TOKEN: {
|
|
103551
|
+
label: "Project Token",
|
|
103552
|
+
required: true,
|
|
103553
|
+
placeholder: "00000000-0000-0000-0000-000000000000"
|
|
103554
|
+
}
|
|
103555
|
+
}
|
|
103556
|
+
}
|
|
103557
|
+
},
|
|
103558
|
+
defaultAuthMethod: "api-token"
|
|
103559
|
+
}
|
|
103560
|
+
};
|
|
103561
|
+
|
|
103479
103562
|
// ../../packages/connectors/src/connectors.ts
|
|
103480
103563
|
var CONNECTOR_TYPES_DEF = {
|
|
103481
103564
|
...axiom,
|
|
@@ -103485,6 +103568,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
103485
103568
|
...airtable,
|
|
103486
103569
|
...anthropicManagedAgents,
|
|
103487
103570
|
...bentoml,
|
|
103571
|
+
...doubao,
|
|
103488
103572
|
...github,
|
|
103489
103573
|
...notion,
|
|
103490
103574
|
...gmail,
|
|
@@ -103671,7 +103755,9 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
103671
103755
|
...square,
|
|
103672
103756
|
...gong,
|
|
103673
103757
|
...ironclad,
|
|
103674
|
-
...snowflake
|
|
103758
|
+
...snowflake,
|
|
103759
|
+
...railway,
|
|
103760
|
+
...railwayProject
|
|
103675
103761
|
};
|
|
103676
103762
|
var CONNECTOR_TYPES = CONNECTOR_TYPES_DEF;
|
|
103677
103763
|
var connectorTypeSchema = external_exports.enum(
|
|
@@ -113580,6 +113666,27 @@ var deepseekFirewall = {
|
|
|
113580
113666
|
]
|
|
113581
113667
|
};
|
|
113582
113668
|
|
|
113669
|
+
// ../../packages/connectors/src/firewalls/doubao.generated.ts
|
|
113670
|
+
init_esm_shims();
|
|
113671
|
+
var doubaoFirewall = {
|
|
113672
|
+
name: "doubao",
|
|
113673
|
+
description: "Volcengine Doubao speech: TTS, ASR, voice cloning",
|
|
113674
|
+
placeholders: {
|
|
113675
|
+
DOUBAO_API_KEY: "c0ffee5a-fe10-ca1c-0ffe-e5afe10ca1ce"
|
|
113676
|
+
},
|
|
113677
|
+
apis: [
|
|
113678
|
+
{
|
|
113679
|
+
base: "https://openspeech.bytedance.com",
|
|
113680
|
+
auth: {
|
|
113681
|
+
headers: {
|
|
113682
|
+
"X-Api-Key": "${{ secrets.DOUBAO_API_KEY }}"
|
|
113683
|
+
}
|
|
113684
|
+
},
|
|
113685
|
+
permissions: []
|
|
113686
|
+
}
|
|
113687
|
+
]
|
|
113688
|
+
};
|
|
113689
|
+
|
|
113583
113690
|
// ../../packages/connectors/src/firewalls/deel.generated.ts
|
|
113584
113691
|
init_esm_shims();
|
|
113585
113692
|
var deelFirewall = {
|
|
@@ -116988,6 +117095,15 @@ var heygenFirewall = {
|
|
|
116988
117095
|
}
|
|
116989
117096
|
},
|
|
116990
117097
|
permissions: []
|
|
117098
|
+
},
|
|
117099
|
+
{
|
|
117100
|
+
base: "https://upload.heygen.com",
|
|
117101
|
+
auth: {
|
|
117102
|
+
headers: {
|
|
117103
|
+
"X-Api-Key": "${{ secrets.HEYGEN_TOKEN }}"
|
|
117104
|
+
}
|
|
117105
|
+
},
|
|
117106
|
+
permissions: []
|
|
116991
117107
|
}
|
|
116992
117108
|
]
|
|
116993
117109
|
};
|
|
@@ -118446,6 +118562,48 @@ var qiitaFirewall = {
|
|
|
118446
118562
|
]
|
|
118447
118563
|
};
|
|
118448
118564
|
|
|
118565
|
+
// ../../packages/connectors/src/firewalls/railway.generated.ts
|
|
118566
|
+
init_esm_shims();
|
|
118567
|
+
var railwayFirewall = {
|
|
118568
|
+
name: "railway",
|
|
118569
|
+
description: "Railway public API (account/workspace token)",
|
|
118570
|
+
placeholders: {
|
|
118571
|
+
RAILWAY_TOKEN: "c0ffee5a-fe10-ca1c-0ffe-e5afe10ca1c0"
|
|
118572
|
+
},
|
|
118573
|
+
apis: [
|
|
118574
|
+
{
|
|
118575
|
+
base: "https://backboard.railway.com",
|
|
118576
|
+
auth: {
|
|
118577
|
+
headers: {
|
|
118578
|
+
Authorization: "Bearer ${{ secrets.RAILWAY_TOKEN }}"
|
|
118579
|
+
}
|
|
118580
|
+
},
|
|
118581
|
+
permissions: []
|
|
118582
|
+
}
|
|
118583
|
+
]
|
|
118584
|
+
};
|
|
118585
|
+
|
|
118586
|
+
// ../../packages/connectors/src/firewalls/railway-project.generated.ts
|
|
118587
|
+
init_esm_shims();
|
|
118588
|
+
var railwayProjectFirewall = {
|
|
118589
|
+
name: "railway-project",
|
|
118590
|
+
description: "Railway public API (project-scoped token)",
|
|
118591
|
+
placeholders: {
|
|
118592
|
+
RAILWAY_PROJECT_TOKEN: "5afe10ca-1c0f-fee5-afe1-0ca1c0ffee5a"
|
|
118593
|
+
},
|
|
118594
|
+
apis: [
|
|
118595
|
+
{
|
|
118596
|
+
base: "https://backboard.railway.com",
|
|
118597
|
+
auth: {
|
|
118598
|
+
headers: {
|
|
118599
|
+
"Project-Access-Token": "${{ secrets.RAILWAY_PROJECT_TOKEN }}"
|
|
118600
|
+
}
|
|
118601
|
+
},
|
|
118602
|
+
permissions: []
|
|
118603
|
+
}
|
|
118604
|
+
]
|
|
118605
|
+
};
|
|
118606
|
+
|
|
118449
118607
|
// ../../packages/connectors/src/firewalls/reddit.generated.ts
|
|
118450
118608
|
init_esm_shims();
|
|
118451
118609
|
var redditFirewall = {
|
|
@@ -122100,6 +122258,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
122100
122258
|
"customer-io": customerIoFirewall,
|
|
122101
122259
|
deel: deelFirewall,
|
|
122102
122260
|
deepseek: deepseekFirewall,
|
|
122261
|
+
doubao: doubaoFirewall,
|
|
122103
122262
|
devto: devtoFirewall,
|
|
122104
122263
|
dify: difyFirewall,
|
|
122105
122264
|
doppler: dopplerFirewall,
|
|
@@ -122197,6 +122356,8 @@ var CONNECTOR_FIREWALLS = {
|
|
|
122197
122356
|
pushinator: pushinatorFirewall,
|
|
122198
122357
|
qdrant: qdrantFirewall,
|
|
122199
122358
|
qiita: qiitaFirewall,
|
|
122359
|
+
railway: railwayFirewall,
|
|
122360
|
+
"railway-project": railwayProjectFirewall,
|
|
122200
122361
|
reddit: redditFirewall,
|
|
122201
122362
|
reap: reapFirewall,
|
|
122202
122363
|
reportei: reporteiFirewall,
|
|
@@ -128894,4 +129055,4 @@ undici/lib/web/fetch/body.js:
|
|
|
128894
129055
|
undici/lib/web/websocket/frame.js:
|
|
128895
129056
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
128896
129057
|
*/
|
|
128897
|
-
//# sourceMappingURL=chunk-
|
|
129058
|
+
//# sourceMappingURL=chunk-NV2YXH4G.js.map
|