From d66ad7f9342a39cdcc9cbfdec47fdac03b6d38df Mon Sep 17 00:00:00 2001 From: "opentdf-automation[bot]" <149537512+opentdf-automation[bot]@users.noreply.github.com> Date: Mon, 14 Jul 2025 13:53:31 +0000 Subject: [PATCH] fix(sdk): Fix new API not setting nano attributes (#679) (cherry picked from commit f0d97196ab258122fe9a07b7d7895017299a46c2) --- lib/src/opentdf.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/src/opentdf.ts b/lib/src/opentdf.ts index c84efe40..375f401a 100644 --- a/lib/src/opentdf.ts +++ b/lib/src/opentdf.ts @@ -703,6 +703,7 @@ class Collection { maxKeyIterations: opts.maxKeyIterations, platformUrl: opts.platformUrl, }); + this.client.dataAttributes = opts.attributes || []; } async encrypt(source: Source): Promise {