From 4ec70bdede059ff755863ec030ec2860c4bd9002 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 10 Dec 2025 16:35:34 +0000 Subject: [PATCH 1/2] Initial plan From 8a56af297a176f9637d764ddae4a397e653f9546 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 10 Dec 2025 16:37:32 +0000 Subject: [PATCH 2/2] docs(wrapped-keys): add detailed JSDoc for UpdateEncryptedKeyResult Co-authored-by: Ansonhkg <4049673+Ansonhkg@users.noreply.github.com> --- packages/wrapped-keys/src/lib/types.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/wrapped-keys/src/lib/types.ts b/packages/wrapped-keys/src/lib/types.ts index 682bd12a3..19f81b83b 100644 --- a/packages/wrapped-keys/src/lib/types.ts +++ b/packages/wrapped-keys/src/lib/types.ts @@ -157,7 +157,13 @@ export type UpdateEncryptedKeyParams = BaseApiParams & { memo?: string; }; -/** Result of updating a private key in the wrapped keys backend service */ +/** Result of updating a private key in the wrapped keys backend service + * + * @typedef UpdateEncryptedKeyResult + * @property { string } id The unique identifier (UUID V4) of the encrypted private key that was updated + * @property { string } pkpAddress The LIT PKP Address that the key was linked to; this is derived from the provided pkpSessionSigs + * @property { string } updatedAt ISO 8601 timestamp of when the key was updated + */ export interface UpdateEncryptedKeyResult { id: string; pkpAddress: string;