[PR #60] [CLOSED] Request action plugins #25

Closed
opened 2025-12-29 08:31:02 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/60
Author: @gschier
Created: 8/1/2024
Status: Closed

Base: masterHead: action-plugins


📝 Commits (10+)

  • c9554e9 Show a menu for the curl export plugin
  • 4a3c360 Merge branch 'refs/heads/master' into action-plugins
  • fbfac62 Merge branch 'master' into action-plugins
  • 710e573 Callbacks sort of working
  • a8ab7a8 Merge branch 'refs/heads/master' into action-plugins
  • 0a06040 Merge branch 'refs/heads/master' into action-plugins
  • 6a05145 Resolve merge
  • 911c5ec Update vendor scripts again
  • eed73cc Merge branch 'refs/heads/master' into action-plugins
  • 12e04d6 Checkpoint

📊 Changes

51 files changed (+3597 additions, -992 deletions)

View changed files

📝 index.html (+1 -2)
📝 package-lock.json (+95 -73)
📝 package.json (+8 -7)
📝 plugin-runtime-types/package.json (+1 -1)
📝 plugin-runtime-types/src/plugins/filter.ts (+4 -2)
📝 plugin-runtime-types/src/plugins/httpRequestAction.ts (+3 -2)
📝 plugin-runtime-types/src/plugins/import.ts (+6 -6)
📝 plugin-runtime-types/src/plugins/index.ts (+13 -10)
📝 plugin-runtime-types/src/plugins/theme.ts (+2 -2)
📝 plugin-runtime/package-lock.json (+38 -7)
📝 plugin-runtime/package.json (+4 -1)
📝 plugin-runtime/src/PluginHandle.ts (+71 -29)
📝 plugin-runtime/src/PluginManager.ts (+4 -1)
plugin-runtime/src/gen/google/protobuf/struct.ts (+550 -0)
plugin-runtime/src/gen/plugins/runtime.ts (+0 -432)
plugin-runtime/src/gen/protoset.bin (+0 -0)
plugin-runtime/src/gen/yaak/common/callback.ts (+169 -0)
plugin-runtime/src/gen/yaak/internal/runtime_events.ts (+343 -0)
plugin-runtime/src/gen/yaak/plugin_runtime.ts (+166 -0)
plugin-runtime/src/gen/yaak/plugins/data_filterer.ts (+435 -0)

...and 31 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mountain-loop/yaak/pull/60 **Author:** [@gschier](https://github.com/gschier) **Created:** 8/1/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `action-plugins` --- ### 📝 Commits (10+) - [`c9554e9`](https://github.com/mountain-loop/yaak/commit/c9554e9ae7237276de48901437afa38e059d1c10) Show a menu for the curl export plugin - [`4a3c360`](https://github.com/mountain-loop/yaak/commit/4a3c360b51cb380cfc898a4f4a74ac47f586a83a) Merge branch 'refs/heads/master' into action-plugins - [`fbfac62`](https://github.com/mountain-loop/yaak/commit/fbfac628d20363342dc712ddeb550909f15d4858) Merge branch 'master' into action-plugins - [`710e573`](https://github.com/mountain-loop/yaak/commit/710e573feed63a5bf6a8c451288b04e66d8a71a4) Callbacks sort of working - [`a8ab7a8`](https://github.com/mountain-loop/yaak/commit/a8ab7a8fe1d4f3b7adf396afe02b6e01d0bdaea8) Merge branch 'refs/heads/master' into action-plugins - [`0a06040`](https://github.com/mountain-loop/yaak/commit/0a06040bfbce007c21a1f618756668616e63124f) Merge branch 'refs/heads/master' into action-plugins - [`6a05145`](https://github.com/mountain-loop/yaak/commit/6a05145a7ca13391e347459f9942f421e5665d60) Resolve merge - [`911c5ec`](https://github.com/mountain-loop/yaak/commit/911c5eca22ed56f5100e60e788fe840ee52d2578) Update vendor scripts again - [`eed73cc`](https://github.com/mountain-loop/yaak/commit/eed73ccc232b2595bd51436e1dd02f4b205b3112) Merge branch 'refs/heads/master' into action-plugins - [`12e04d6`](https://github.com/mountain-loop/yaak/commit/12e04d60dc256129c2a8541bea0fa02359020dd7) Checkpoint ### 📊 Changes **51 files changed** (+3597 additions, -992 deletions) <details> <summary>View changed files</summary> 📝 `index.html` (+1 -2) 📝 `package-lock.json` (+95 -73) 📝 `package.json` (+8 -7) 📝 `plugin-runtime-types/package.json` (+1 -1) 📝 `plugin-runtime-types/src/plugins/filter.ts` (+4 -2) 📝 `plugin-runtime-types/src/plugins/httpRequestAction.ts` (+3 -2) 📝 `plugin-runtime-types/src/plugins/import.ts` (+6 -6) 📝 `plugin-runtime-types/src/plugins/index.ts` (+13 -10) 📝 `plugin-runtime-types/src/plugins/theme.ts` (+2 -2) 📝 `plugin-runtime/package-lock.json` (+38 -7) 📝 `plugin-runtime/package.json` (+4 -1) 📝 `plugin-runtime/src/PluginHandle.ts` (+71 -29) 📝 `plugin-runtime/src/PluginManager.ts` (+4 -1) ➕ `plugin-runtime/src/gen/google/protobuf/struct.ts` (+550 -0) ➖ `plugin-runtime/src/gen/plugins/runtime.ts` (+0 -432) ➕ `plugin-runtime/src/gen/protoset.bin` (+0 -0) ➕ `plugin-runtime/src/gen/yaak/common/callback.ts` (+169 -0) ➕ `plugin-runtime/src/gen/yaak/internal/runtime_events.ts` (+343 -0) ➕ `plugin-runtime/src/gen/yaak/plugin_runtime.ts` (+166 -0) ➕ `plugin-runtime/src/gen/yaak/plugins/data_filterer.ts` (+435 -0) _...and 31 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 08:31:02 +01:00
adam closed this issue 2025-12-29 08:31:02 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak-mountain-loop#25