From 47ca9e9ee02dc31e26c8f8fd725676a112f81042 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:57 +0000 Subject: [PATCH 1/2] Initial plan From 04395fd19c1310246db8b1af642f5553a6cbcc79 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 10 Dec 2025 16:38:53 +0000 Subject: [PATCH 2/2] docs: add JSDoc for updatedAt and versions properties in StoredKeyMetadata Co-authored-by: Ansonhkg <4049673+Ansonhkg@users.noreply.github.com> --- packages/wrapped-keys/src/lib/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/wrapped-keys/src/lib/types.ts b/packages/wrapped-keys/src/lib/types.ts index 682bd12a3..c8cc64c83 100644 --- a/packages/wrapped-keys/src/lib/types.ts +++ b/packages/wrapped-keys/src/lib/types.ts @@ -61,6 +61,8 @@ export type GetEncryptedKeyDataParams = BaseApiParams & { * @property { string } memo A (typically) user-provided descriptor for the encrypted private key * @property { string } id The unique identifier (UUID V4) of the encrypted private key * @property { LIT_NETWORKS_KEYS } litNetwork The LIT network that the client who stored the key was connected to + * @property { string } [updatedAt] ISO 8601 timestamp of when the key was last updated + * @property { WrappedKeyVersion[] } [versions] Array of historical versions of this key after update operations */ export interface StoredKeyMetadata { publicKey: string;