[PR #64] [MERGED] Start on plugin ctx API #29

Closed
opened 2025-12-29 07:18:58 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/64
Author: @gschier
Created: 8/14/2024
Status: Merged
Merged: 8/14/2024
Merged by: @gschier

Base: masterHead: plugin-ctx


📝 Commits (8)

  • 0369565 Implement httpRequest.getById
  • 60cf2eb Sending request mostly working
  • 3bd0282 Started porting active cookie jar to query parameter
  • 454a1b3 Better cookie jar/env restore when switching workspaces
  • 3b1ef92 Hide activeWorkspaceId
  • 8f43397 Also hide useActiveEnvironmentId
  • 3284ba9 Remove all optimistic updates in hooks
  • 45c1950 Use cookie_jar_id in plugin logic

📊 Changes

106 files changed (+1085 additions, -1218 deletions)

View changed files

plugin-runtime-types/src/gen/GetHttpRequestByIdRequest.ts (+3 -0)
plugin-runtime-types/src/gen/GetHttpRequestByIdResponse.ts (+4 -0)
📝 plugin-runtime-types/src/gen/InternalEventPayload.ts (+5 -1)
plugin-runtime-types/src/gen/SendHttpRequestRequest.ts (+4 -0)
plugin-runtime-types/src/gen/SendHttpRequestResponse.ts (+4 -0)
📝 plugin-runtime-types/src/index.ts (+5 -0)
📝 plugin-runtime-types/src/plugins/context.ts (+6 -7)
📝 plugin-runtime-types/src/plugins/index.ts (+1 -0)
📝 plugin-runtime/src/gen/plugins/runtime.ts (+0 -359)
📝 plugin-runtime/src/index.worker.ts (+77 -20)
📝 src-tauri/Cargo.lock (+33 -33)
📝 src-tauri/Cargo.toml (+4 -4)
src-tauri/migrations/20240814013812_fix-env-model.sql (+2 -0)
📝 src-tauri/src/analytics.rs (+27 -31)
📝 src-tauri/src/grpc.rs (+1 -1)
📝 src-tauri/src/http_request.rs (+9 -17)
📝 src-tauri/src/lib.rs (+139 -73)
📝 src-tauri/src/notifications.rs (+11 -11)
📝 src-tauri/src/render.rs (+1 -1)
📝 src-tauri/yaak_grpc/Cargo.toml (+1 -1)

...and 80 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/64 **Author:** [@gschier](https://github.com/gschier) **Created:** 8/14/2024 **Status:** ✅ Merged **Merged:** 8/14/2024 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `master` ← **Head:** `plugin-ctx` --- ### 📝 Commits (8) - [`0369565`](https://github.com/mountain-loop/yaak/commit/03695655f48068525729bfc720f76f36743786ae) Implement httpRequest.getById - [`60cf2eb`](https://github.com/mountain-loop/yaak/commit/60cf2ebc35c0751bcc58c8940261656ebea0f73c) Sending request mostly working - [`3bd0282`](https://github.com/mountain-loop/yaak/commit/3bd02825271a1c6fb93d323827bd0ccc34e02bfe) Started porting active cookie jar to query parameter - [`454a1b3`](https://github.com/mountain-loop/yaak/commit/454a1b334dfcf4bfe28b0ccb8c62a1b9da05a46d) Better cookie jar/env restore when switching workspaces - [`3b1ef92`](https://github.com/mountain-loop/yaak/commit/3b1ef92e78c01c242ead5074958e597fbe088f5b) Hide activeWorkspaceId - [`8f43397`](https://github.com/mountain-loop/yaak/commit/8f43397c5a7ab1660928b819cc09bb589b84ace6) Also hide useActiveEnvironmentId - [`3284ba9`](https://github.com/mountain-loop/yaak/commit/3284ba9556bf3351dd3792d84d1dfe60f4c70431) Remove all optimistic updates in hooks - [`45c1950`](https://github.com/mountain-loop/yaak/commit/45c19503fff693e01470bd817c8e6415eb4e582e) Use cookie_jar_id in plugin logic ### 📊 Changes **106 files changed** (+1085 additions, -1218 deletions) <details> <summary>View changed files</summary> ➕ `plugin-runtime-types/src/gen/GetHttpRequestByIdRequest.ts` (+3 -0) ➕ `plugin-runtime-types/src/gen/GetHttpRequestByIdResponse.ts` (+4 -0) 📝 `plugin-runtime-types/src/gen/InternalEventPayload.ts` (+5 -1) ➕ `plugin-runtime-types/src/gen/SendHttpRequestRequest.ts` (+4 -0) ➕ `plugin-runtime-types/src/gen/SendHttpRequestResponse.ts` (+4 -0) 📝 `plugin-runtime-types/src/index.ts` (+5 -0) 📝 `plugin-runtime-types/src/plugins/context.ts` (+6 -7) 📝 `plugin-runtime-types/src/plugins/index.ts` (+1 -0) 📝 `plugin-runtime/src/gen/plugins/runtime.ts` (+0 -359) 📝 `plugin-runtime/src/index.worker.ts` (+77 -20) 📝 `src-tauri/Cargo.lock` (+33 -33) 📝 `src-tauri/Cargo.toml` (+4 -4) ➕ `src-tauri/migrations/20240814013812_fix-env-model.sql` (+2 -0) 📝 `src-tauri/src/analytics.rs` (+27 -31) 📝 `src-tauri/src/grpc.rs` (+1 -1) 📝 `src-tauri/src/http_request.rs` (+9 -17) 📝 `src-tauri/src/lib.rs` (+139 -73) 📝 `src-tauri/src/notifications.rs` (+11 -11) 📝 `src-tauri/src/render.rs` (+1 -1) 📝 `src-tauri/yaak_grpc/Cargo.toml` (+1 -1) _...and 80 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 07:18:58 +01:00
adam closed this issue 2025-12-29 07:18:58 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak#29