ac-storage 0.16.2 → 0.16.4

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 (82) hide show
  1. package/afron/.vscode/launch.json +43 -0
  2. package/afron/.vscode/tasks.json +56 -0
  3. package/afron/LICENSE +674 -0
  4. package/afron/README.md +23 -0
  5. package/afron/_img/01.png +0 -0
  6. package/afron/_img/02.png +0 -0
  7. package/afron/package.json +40 -0
  8. package/afron/packages/chatai-models/package.json +34 -0
  9. package/afron/packages/core/package.json +65 -0
  10. package/afron/packages/core/vite.config.ts +17 -0
  11. package/afron/packages/electron/build/entitlements.mac.plist +33 -0
  12. package/afron/packages/electron/forge.config.js +66 -0
  13. package/afron/packages/electron/import-static.ps1 +14 -0
  14. package/afron/packages/electron/package.json +147 -0
  15. package/afron/packages/electron/rebuild.bat +1 -0
  16. package/afron/packages/front/.env.development +1 -0
  17. package/afron/packages/front/.github/copilot-instructions.md +88 -0
  18. package/afron/packages/front/eslint.config.js +33 -0
  19. package/afron/packages/front/index.html +13 -0
  20. package/afron/packages/front/package.json +74 -0
  21. package/afron/packages/front/public/favicon.icns +0 -0
  22. package/afron/packages/front/public/favicon.ico +0 -0
  23. package/afron/packages/front/public/favicon.png +0 -0
  24. package/afron/packages/front/public/robots.txt +3 -0
  25. package/afron/packages/front/public/vite.svg +1 -0
  26. package/afron/packages/front/tsconfig.app.json +44 -0
  27. package/afron/packages/front/tsconfig.node.json +24 -0
  28. package/afron/packages/front/vite.config.ts +53 -0
  29. package/afron/packages/locale/package.json +65 -0
  30. package/afron/packages/locale/vite.config.ts +17 -0
  31. package/afron/packages/types/index.js +3 -0
  32. package/afron/packages/types/package.json +6 -0
  33. package/afron/packages/types/types/chatai/chatai-model.d.ts +73 -0
  34. package/afron/packages/types/types/chatai/gemini-safety-setting.d.ts +15 -0
  35. package/afron/packages/types/types/chatai/index.d.ts +3 -0
  36. package/afron/packages/types/types/chatai/thinking-efforts.d.ts +4 -0
  37. package/afron/packages/types/types/event-pipe/global-event.d.ts +43 -0
  38. package/afron/packages/types/types/event-pipe/index.d.ts +1 -0
  39. package/afron/packages/types/types/index.d.ts +8 -0
  40. package/afron/packages/types/types/ipc/data.ts +114 -0
  41. package/afron/packages/types/types/ipc/declared.d.ts +1 -0
  42. package/afron/packages/types/types/ipc/index.ts +6 -0
  43. package/afron/packages/types/types/ipc/interface.d.ts +46 -0
  44. package/afron/packages/types/types/ipc/invokers.d.ts +181 -0
  45. package/afron/packages/types/types/ipc/listeners.d.ts +7 -0
  46. package/afron/packages/types/types/ipc/result.d.ts +3 -0
  47. package/afron/packages/types/types/ipc-invokers.d.ts +111 -0
  48. package/afron/packages/types/types/ipc-listeners.d.ts +6 -0
  49. package/afron/packages/types/types/prompt-form.d.ts +65 -0
  50. package/afron/packages/types/types/rt/event.d.ts +71 -0
  51. package/afron/packages/types/types/rt/flow.d.ts +63 -0
  52. package/afron/packages/types/types/rt/form.d.ts +41 -0
  53. package/afron/packages/types/types/rt/index.d.ts +4 -0
  54. package/afron/packages/types/types/rt/rt.d.ts +61 -0
  55. package/afron/packages/types/types/rt-var/index.ts +5 -0
  56. package/afron/packages/types/types/rt-var/rt-var-create.ts +39 -0
  57. package/afron/packages/types/types/rt-var/rt-var-stored.ts +30 -0
  58. package/afron/packages/types/types/rt-var/rt-var-update.ts +45 -0
  59. package/afron/packages/types/types/rt-var/rt-var.ts +36 -0
  60. package/afron/packages/types/types/rt-var/var-data.d.ts +108 -0
  61. package/afron/packages/types/types/storage-schema/ProfileStorageSchema.d.ts +2 -0
  62. package/afron/packages/types/types/storage-schema/RT/Flow.d.ts +20 -0
  63. package/afron/packages/types/types/storage-schema/RT/Metadata.d.ts +16 -0
  64. package/afron/packages/types/types/storage-schema/RT/Prompts.d.ts +39 -0
  65. package/afron/packages/types/types/storage-schema/RT/RT.d.ts +4 -0
  66. package/afron/packages/types/types/storage-schema/RT/index.d.ts +1 -0
  67. package/afron/packages/types/types/storage-schema/Session/Cache.d.ts +18 -0
  68. package/afron/packages/types/types/storage-schema/Session/Config.d.ts +7 -0
  69. package/afron/packages/types/types/storage-schema/Session/Data.d.ts +19 -0
  70. package/afron/packages/types/types/storage-schema/Session/Session.d.ts +3 -0
  71. package/afron/packages/types/types/storage-schema/Session/index.d.ts +1 -0
  72. package/afron/packages/types/types/storage-schema/index.d.ts +116 -0
  73. package/afron/packages/types/types/utils/index.ts +1 -0
  74. package/afron/packages/types/types.d.ts +3 -0
  75. package/afron/scripts/remove-dist.ps1 +10 -0
  76. package/afron/scripts/remove-install.ps1 +9 -0
  77. package/afron/scripts/win-vscode.ps1 +17 -0
  78. package/dist/bundle.cjs +43 -2
  79. package/dist/bundle.cjs.map +1 -1
  80. package/dist/bundle.mjs +43 -2
  81. package/dist/bundle.mjs.map +1 -1
  82. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ac-storage",
3
- "version": "0.16.2",
3
+ "version": "0.16.4",
4
4
  "main": "./dist/bundle.cjs",
5
5
  "module": "./dist/bundle.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -38,7 +38,7 @@
38
38
  "publish-public": "npm publish --access=public"
39
39
  },
40
40
  "dependencies": {
41
- "@hve/json-accessor": "^0.8.0",
41
+ "@hve/json-accessor": "^0.10.0",
42
42
  "fast-deep-equal": "^3.1.3",
43
43
  "tree-navigate": "^0.1.1"
44
44
  }