@vm0/cli 9.161.1 → 9.161.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.161.1",
74086
+ release: "9.161.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.161.1",
74105
+ version: "9.161.2",
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,12 @@ 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
74540
74552
  }
74541
74553
  };
74542
74554
  function isFeatureEnabled(key, ctx) {
@@ -99151,6 +99163,49 @@ var axiom = {
99151
99163
  }
99152
99164
  };
99153
99165
 
99166
+ // ../../packages/connectors/src/connectors/base44.ts
99167
+ init_esm_shims();
99168
+ var base44 = {
99169
+ base44: {
99170
+ label: "Base44",
99171
+ category: "ai-agent-apps",
99172
+ environmentMapping: {
99173
+ BASE44_TOKEN: "$secrets.BASE44_ACCESS_TOKEN"
99174
+ },
99175
+ helpText: "Connect your Base44 account to let agents access and manage your Base44 apps",
99176
+ authMethods: {
99177
+ oauth: {
99178
+ featureFlag: "base44Connector" /* Base44Connector */,
99179
+ label: "OAuth",
99180
+ helpText: "Sign in with Base44 to grant access.",
99181
+ secrets: {
99182
+ BASE44_ACCESS_TOKEN: {
99183
+ label: "Access Token",
99184
+ required: true
99185
+ },
99186
+ BASE44_REFRESH_TOKEN: {
99187
+ label: "Refresh Token",
99188
+ required: false
99189
+ }
99190
+ }
99191
+ }
99192
+ },
99193
+ defaultAuthMethod: "oauth",
99194
+ oauth: {
99195
+ flow: "device-authorization",
99196
+ deviceAuthUrl: "https://app.base44.com/oauth/device/code",
99197
+ tokenUrl: "https://app.base44.com/oauth/token",
99198
+ client: {
99199
+ clientRegistration: "static",
99200
+ clientType: "public",
99201
+ tokenEndpointAuthMethod: "none",
99202
+ clientId: "base44_cli"
99203
+ },
99204
+ scopes: ["apps:read", "apps:write", "offline"]
99205
+ }
99206
+ }
99207
+ };
99208
+
99154
99209
  // ../../packages/connectors/src/connectors/bentoml.ts
99155
99210
  init_esm_shims();
99156
99211
  var bentoml = {
@@ -105033,6 +105088,7 @@ var CONNECTOR_TYPES_DEF = {
105033
105088
  ...atlascloud,
105034
105089
  ...aviationstack,
105035
105090
  ...axiom,
105091
+ ...base44,
105036
105092
  ...bentoml,
105037
105093
  ...bitrix,
105038
105094
  ...braveSearch,
@@ -116255,6 +116311,36 @@ var axiomFirewall = {
116255
116311
  ]
116256
116312
  };
116257
116313
 
116314
+ // ../../packages/connectors/src/firewalls/base44.generated.ts
116315
+ init_esm_shims();
116316
+ var base44Firewall = {
116317
+ name: "base44",
116318
+ description: "Base44 MCP and app API",
116319
+ placeholders: {
116320
+ BASE44_TOKEN: "base44_placeholder_token"
116321
+ },
116322
+ apis: [
116323
+ {
116324
+ base: "https://app.base44.com/mcp",
116325
+ auth: {
116326
+ headers: {
116327
+ Authorization: "Bearer ${{ secrets.BASE44_TOKEN }}"
116328
+ }
116329
+ },
116330
+ permissions: []
116331
+ },
116332
+ {
116333
+ base: "https://app.base44.com/api/apps",
116334
+ auth: {
116335
+ headers: {
116336
+ Authorization: "Bearer ${{ secrets.BASE44_TOKEN }}"
116337
+ }
116338
+ },
116339
+ permissions: []
116340
+ }
116341
+ ]
116342
+ };
116343
+
116258
116344
  // ../../packages/connectors/src/firewalls/bentoml.generated.ts
116259
116345
  init_esm_shims();
116260
116346
  var bentomlFirewall = {
@@ -125903,6 +125989,7 @@ var CONNECTOR_FIREWALLS = {
125903
125989
  atlassian: atlassianFirewall,
125904
125990
  atlascloud: atlascloudFirewall,
125905
125991
  axiom: axiomFirewall,
125992
+ base44: base44Firewall,
125906
125993
  bentoml: bentomlFirewall,
125907
125994
  bitrix: bitrixFirewall,
125908
125995
  "brave-search": braveSearchFirewall,
@@ -133001,4 +133088,4 @@ undici/lib/web/fetch/body.js:
133001
133088
  undici/lib/web/websocket/frame.js:
133002
133089
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
133003
133090
  */
133004
- //# sourceMappingURL=chunk-CCWEVUO2.js.map
133091
+ //# sourceMappingURL=chunk-YERD7FNQ.js.map