@iblai/iblai-js 1.10.4 → 1.11.0

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.
@@ -86051,7 +86051,7 @@ function Profile({ tenant, username, tenants, onClose, customization = {}, isAdm
86051
86051
  // Show memory tab if enabled for this platform AND memsearch is enabled (or status API is unavailable)
86052
86052
  const isMemoryEnabled = enableMemoryTab && (isMemsearchStatusError || ((_a = memsearchStatus === null || memsearchStatus === void 0 ? void 0 : memsearchStatus.enable_memsearch) !== null && _a !== void 0 ? _a : false));
86053
86053
  const currentTenant = tenants.find((t) => t.key === tenant);
86054
- const isPurchasesEnabled = currentTenant === null || currentTenant === void 0 ? void 0 : currentTenant.show_paywall;
86054
+ const isPurchasesEnabled = currentTenant === null || currentTenant === void 0 ? void 0 : currentTenant.enable_monetization;
86055
86055
  const baseTabs = [
86056
86056
  { id: 'basic', label: 'Basic', renderIcon: renderLucideIcon(User) },
86057
86057
  { id: 'social', label: 'Social', renderIcon: renderLucideIcon(Globe) },
@@ -124104,7 +124104,7 @@ function Profile({ tenant, username, tenants, onClose, customization = {}, isAdm
124104
124104
  // Show memory tab if enabled for this platform AND memsearch is enabled (or status API is unavailable)
124105
124105
  const isMemoryEnabled = enableMemoryTab && (isMemsearchStatusError || ((_a = memsearchStatus === null || memsearchStatus === void 0 ? void 0 : memsearchStatus.enable_memsearch) !== null && _a !== void 0 ? _a : false));
124106
124106
  const currentTenant = tenants.find((t) => t.key === tenant);
124107
- const isPurchasesEnabled = currentTenant === null || currentTenant === void 0 ? void 0 : currentTenant.show_paywall;
124107
+ const isPurchasesEnabled = currentTenant === null || currentTenant === void 0 ? void 0 : currentTenant.enable_monetization;
124108
124108
  const baseTabs = [
124109
124109
  { id: 'basic', label: 'Basic', renderIcon: renderLucideIcon(User) },
124110
124110
  { id: 'social', label: 'Social', renderIcon: renderLucideIcon(Globe) },
@@ -201573,7 +201573,7 @@ function Account({ tenant, tenants = [], username, onInviteClick, email, mainPla
201573
201573
  { id: 'organization', label: 'Organization', icon: Briefcase },
201574
201574
  { id: 'management', label: 'Management', icon: Users },
201575
201575
  { id: 'integrations', label: 'Integrations', icon: KeyRound },
201576
- ...((currentTenant === null || currentTenant === void 0 ? void 0 : currentTenant.show_paywall)
201576
+ ...((currentTenant === null || currentTenant === void 0 ? void 0 : currentTenant.enable_monetization)
201577
201577
  ? [{ id: 'monetization', label: 'Monetization', icon: Coins }]
201578
201578
  : []),
201579
201579
  { id: 'advanced', label: 'Advanced', icon: Settings$1 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-js",
3
- "version": "1.10.4",
3
+ "version": "1.11.0",
4
4
  "description": "Unified JavaScript SDK for IBL.ai — re-exports data-layer, web-containers, and web-utils under a single package",
5
5
  "type": "module",
6
6
  "engines": {
@@ -63,8 +63,8 @@
63
63
  "winston": "3.19.0",
64
64
  "@iblai/data-layer": "1.5.7",
65
65
  "@iblai/mcp": "1.4.10",
66
- "@iblai/web-containers": "1.6.14",
67
- "@iblai/web-utils": "1.6.10"
66
+ "@iblai/web-containers": "1.7.0",
67
+ "@iblai/web-utils": "1.7.0"
68
68
  },
69
69
  "peerDependencies": {
70
70
  "@radix-ui/react-dialog": "^1.1.7",