vome-core 0.1.41 → 0.1.44

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.
Files changed (38) hide show
  1. package/dist/admin/api/client.js +13 -1
  2. package/dist/admin/config/plugin-dev.js +1 -1
  3. package/dist/admin/crud/components/vm-richtext-extensions.js +1 -1
  4. package/dist/admin/crud/config.js +1 -1
  5. package/dist/admin/crud/confirm.js +1 -1
  6. package/dist/admin/crud/dict.js +1 -1
  7. package/dist/admin/crud/key.js +1 -1
  8. package/dist/admin/crud/mitt.js +1 -1
  9. package/dist/admin/crud/plugins.js +1 -1
  10. package/dist/admin/crud/span.js +1 -1
  11. package/dist/admin/crud/style.js +1 -1
  12. package/dist/admin/crud/validate.js +1 -1
  13. package/dist/admin/directives/perm.js +1 -1
  14. package/dist/admin/hooks/useUpload.js +1 -1
  15. package/dist/admin/lib/browser.js +1 -1
  16. package/dist/admin/lib/cn.js +1 -1
  17. package/dist/admin/lib/dialog-float.js +1 -1
  18. package/dist/admin/lib/export-excel.js +1 -1
  19. package/dist/admin/lib/import-excel.js +1 -1
  20. package/dist/admin/lib/json.js +1 -1
  21. package/dist/admin/lib/menu.js +1 -1
  22. package/dist/admin/lib/tree.js +1 -1
  23. package/dist/admin/lib/upload.js +1 -1
  24. package/dist/admin/lib/video-frame.js +1 -1
  25. package/dist/admin/router/index.js +8 -3
  26. package/dist/agent/index.js +16 -18
  27. package/dist/ai/index.js +101 -44
  28. package/dist/ai/types.d.ts +2 -0
  29. package/dist/config/index.js +9 -11
  30. package/dist/index.js +1 -1
  31. package/dist/orm/service.d.ts +1 -0
  32. package/dist/server/index.js +1 -1
  33. package/dist/shared/datetime-picker.js +1 -1
  34. package/dist/shared/excel.js +1 -1
  35. package/dist/shared/index.js +1 -1
  36. package/dist/shared/locale-json.js +1 -1
  37. package/dist/shared/tree.js +1 -1
  38. package/package.json +1 -1
@@ -19,14 +19,12 @@ var __toESM = (mod, isNodeMode, target) => {
19
19
  }
20
20
  target = mod != null ? __create(__getProtoOf(mod)) : {};
21
21
  const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
22
- if (mod && typeof mod === "object" || typeof mod === "function") {
23
- for (let key of __getOwnPropNames(mod))
24
- if (!__hasOwnProp.call(to, key))
25
- __defProp(to, key, {
26
- get: __accessProp.bind(mod, key),
27
- enumerable: true
28
- });
29
- }
22
+ for (let key of __getOwnPropNames(mod))
23
+ if (!__hasOwnProp.call(to, key))
24
+ __defProp(to, key, {
25
+ get: __accessProp.bind(mod, key),
26
+ enumerable: true
27
+ });
30
28
  if (canCache)
31
29
  cache.set(mod, to);
32
30
  return to;
@@ -111,8 +109,8 @@ function merge(base, override) {
111
109
  return result;
112
110
  }
113
111
  export {
114
- getEnv,
115
- hasHostConfig,
112
+ provideHostConfig,
116
113
  merge,
117
- provideHostConfig
114
+ hasHostConfig,
115
+ getEnv
118
116
  };