Conversation
- 新增 plugin-store.ts 提供插件间数据传递能力
- ResponseHookParams 新增 requestMeta 字段(url, headers, method)
- 插件可通过 store.set/get 在 request/response 间传递数据
- 数据存储在私有 header: -x-jixo-store-${pluginName}
- 优化 codex/droid 插件:只有 onRequest 处理过才转换响应
- 更新测试用例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
功能
插件存储 (Plugin Store): 新增
plugin-store.ts,允许插件在 onRequest/onResponse 之间传递数据-x-jixo-store-${pluginName}store.set(data, headers)设置数据store.get()读取数据请求元数据传递:
ResponseHookParams新增requestMeta字段method,url,headers(不含 body)插件优化
测试