@kosdev-code/kos-ui-sdk 0.1.0-dev.5192 → 0.1.0-dev.5195

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.
package/index.js CHANGED
@@ -1900,12 +1900,12 @@ class Ge {
1900
1900
  await this._removeEvictedModels(r), this._logEvictionComplete(r.length), this.increment();
1901
1901
  }
1902
1902
  /**
1903
- * Log capacity exceeded warning (Zone 3)
1903
+ * Log capacity exceeded info (Zone 3)
1904
1904
  * @private
1905
1905
  */
1906
1906
  _logCapacityWarning(e) {
1907
- le.warn(
1908
- `Container capacity exceeded (${this._data.size}/${this._maxCapacity}). Evicting ${e} models using ${this._evictionStrategy} strategy. This may indicate missing cleanup handlers or data inconsistency.`,
1907
+ le.info(
1908
+ `Container capacity exceeded (${this._data.size}/${this._maxCapacity}). Evicting ${e} models using ${this._evictionStrategy} strategy.`,
1909
1909
  { parentId: this._parentId }
1910
1910
  );
1911
1911
  }
@@ -1967,7 +1967,7 @@ class Ge {
1967
1967
  */
1968
1968
  async _removeEvictedModels(e) {
1969
1969
  for (const s of e)
1970
- le.warn(
1970
+ le.info(
1971
1971
  `Evicting model: ${s.id} (type: ${s.constructor.name})`,
1972
1972
  {
1973
1973
  modelId: s.id,
@@ -4250,7 +4250,11 @@ async function Vs(t, e, s, r, n) {
4250
4250
  const o = r != null && r.path ? Object.keys(r.path).reduce(
4251
4251
  (h, f) => String(h).replace(`{${f}}`, r == null ? void 0 : r.path[f]),
4252
4252
  String(t)
4253
- ) : String(t), i = r != null && r.query ? Object.keys(r.query).map((h) => `${h}=${r.query[h]}`).join("&") : "", a = `${gf().URL}${o}${i ? `?${encodeURIComponent(i)}` : ""}`;
4253
+ ) : String(t), i = r != null && r.query ? Object.keys(r.query).map(
4254
+ (h) => `${encodeURIComponent(h)}=${encodeURIComponent(
4255
+ r.query[h]
4256
+ )}`
4257
+ ).join("&") : "", a = `${gf().URL}${o}${i ? `?${i}` : ""}`;
4254
4258
  mf.debug(`fullUrl: ${a}`);
4255
4259
  const c = {
4256
4260
  method: String(e).toUpperCase(),