@vm0/cli 9.161.1 → 9.161.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.161.1",
74086
+ release: "9.161.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.161.1",
74105
+ version: "9.161.3",
74106
74106
  command: process.argv.slice(2).join(" ")
74107
74107
  });
74108
74108
  setContext("runtime", {
@@ -74233,6 +74233,12 @@ var FEATURE_SWITCHES = {
74233
74233
  description: "Enable the Ahrefs SEO connector",
74234
74234
  enabled: false
74235
74235
  },
74236
+ ["base44Connector" /* Base44Connector */]: {
74237
+ maintainer: "liangyou@vm0.ai",
74238
+ description: "Enable the Base44 connector",
74239
+ enabled: false,
74240
+ enabledOrgIdHashes: STAFF_ORG_ID_HASHES
74241
+ },
74236
74242
  ["bentomlConnector" /* BentomlConnector */]: {
74237
74243
  maintainer: "ethan@vm0.ai",
74238
74244
  description: "Enable the BentoML model serving connector",
@@ -74537,6 +74543,18 @@ var FEATURE_SWITCHES = {
74537
74543
  description: "Enable managed Zero Maps CLI access for geocoding, directions, and places. Staff-only during rollout.",
74538
74544
  enabled: false,
74539
74545
  enabledOrgIdHashes: STAFF_ORG_ID_HASHES
74546
+ },
74547
+ ["unifiedSettings" /* UnifiedSettings */]: {
74548
+ maintainer: "ethan@vm0.ai",
74549
+ description: "Replace the org-manage dialog and bottom-left Preferences/Manage account entries with a single unified settings dialog. Staff-only during rollout.",
74550
+ enabled: false,
74551
+ enabledOrgIdHashes: STAFF_ORG_ID_HASHES
74552
+ },
74553
+ ["agentsPageSplitSections" /* AgentsPageSplitSections */]: {
74554
+ maintainer: "ethan@vm0.ai",
74555
+ description: "Split the Agents page into separate Public and Private sections, each with its own heading and Create agent button. The Public section also shows a remaining-slot counter with a workspace cap tooltip and disables creation once the cap is reached. Staff-only during rollout.",
74556
+ enabled: false,
74557
+ enabledOrgIdHashes: STAFF_ORG_ID_HASHES
74540
74558
  }
74541
74559
  };
74542
74560
  function isFeatureEnabled(key, ctx) {
@@ -99151,6 +99169,49 @@ var axiom = {
99151
99169
  }
99152
99170
  };
99153
99171
 
99172
+ // ../../packages/connectors/src/connectors/base44.ts
99173
+ init_esm_shims();
99174
+ var base44 = {
99175
+ base44: {
99176
+ label: "Base44",
99177
+ category: "ai-agent-apps",
99178
+ environmentMapping: {
99179
+ BASE44_TOKEN: "$secrets.BASE44_ACCESS_TOKEN"
99180
+ },
99181
+ helpText: "Connect your Base44 account to let agents access and manage your Base44 apps",
99182
+ authMethods: {
99183
+ oauth: {
99184
+ featureFlag: "base44Connector" /* Base44Connector */,
99185
+ label: "OAuth",
99186
+ helpText: "Sign in with Base44 to grant access.",
99187
+ secrets: {
99188
+ BASE44_ACCESS_TOKEN: {
99189
+ label: "Access Token",
99190
+ required: true
99191
+ },
99192
+ BASE44_REFRESH_TOKEN: {
99193
+ label: "Refresh Token",
99194
+ required: false
99195
+ }
99196
+ }
99197
+ }
99198
+ },
99199
+ defaultAuthMethod: "oauth",
99200
+ oauth: {
99201
+ flow: "device-authorization",
99202
+ deviceAuthUrl: "https://app.base44.com/oauth/device/code",
99203
+ tokenUrl: "https://app.base44.com/oauth/token",
99204
+ client: {
99205
+ clientRegistration: "static",
99206
+ clientType: "public",
99207
+ tokenEndpointAuthMethod: "none",
99208
+ clientId: "base44_cli"
99209
+ },
99210
+ scopes: ["apps:read", "apps:write", "offline"]
99211
+ }
99212
+ }
99213
+ };
99214
+
99154
99215
  // ../../packages/connectors/src/connectors/bentoml.ts
99155
99216
  init_esm_shims();
99156
99217
  var bentoml = {
@@ -105033,6 +105094,7 @@ var CONNECTOR_TYPES_DEF = {
105033
105094
  ...atlascloud,
105034
105095
  ...aviationstack,
105035
105096
  ...axiom,
105097
+ ...base44,
105036
105098
  ...bentoml,
105037
105099
  ...bitrix,
105038
105100
  ...braveSearch,
@@ -116255,6 +116317,36 @@ var axiomFirewall = {
116255
116317
  ]
116256
116318
  };
116257
116319
 
116320
+ // ../../packages/connectors/src/firewalls/base44.generated.ts
116321
+ init_esm_shims();
116322
+ var base44Firewall = {
116323
+ name: "base44",
116324
+ description: "Base44 MCP and app API",
116325
+ placeholders: {
116326
+ BASE44_TOKEN: "base44_placeholder_token"
116327
+ },
116328
+ apis: [
116329
+ {
116330
+ base: "https://app.base44.com/mcp",
116331
+ auth: {
116332
+ headers: {
116333
+ Authorization: "Bearer ${{ secrets.BASE44_TOKEN }}"
116334
+ }
116335
+ },
116336
+ permissions: []
116337
+ },
116338
+ {
116339
+ base: "https://app.base44.com/api/apps",
116340
+ auth: {
116341
+ headers: {
116342
+ Authorization: "Bearer ${{ secrets.BASE44_TOKEN }}"
116343
+ }
116344
+ },
116345
+ permissions: []
116346
+ }
116347
+ ]
116348
+ };
116349
+
116258
116350
  // ../../packages/connectors/src/firewalls/bentoml.generated.ts
116259
116351
  init_esm_shims();
116260
116352
  var bentomlFirewall = {
@@ -125903,6 +125995,7 @@ var CONNECTOR_FIREWALLS = {
125903
125995
  atlassian: atlassianFirewall,
125904
125996
  atlascloud: atlascloudFirewall,
125905
125997
  axiom: axiomFirewall,
125998
+ base44: base44Firewall,
125906
125999
  bentoml: bentomlFirewall,
125907
126000
  bitrix: bitrixFirewall,
125908
126001
  "brave-search": braveSearchFirewall,
@@ -133001,4 +133094,4 @@ undici/lib/web/fetch/body.js:
133001
133094
  undici/lib/web/websocket/frame.js:
133002
133095
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
133003
133096
  */
133004
- //# sourceMappingURL=chunk-CCWEVUO2.js.map
133097
+ //# sourceMappingURL=chunk-V7HS3GU5.js.map