@byok-sdk/core 0.3.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,4 +8,4 @@ This package is runtime-neutral: it has no Node built-in or protocol dependency.
8
8
  import { tenantId, InMemoryCoreStores } from '@byok-sdk/core';
9
9
  ```
10
10
 
11
- MIT licensed. Node.js 22.19.0 or newer.
11
+ MIT licensed. Node.js 22.22.0 or newer.
package/dist/blob.d.ts CHANGED
@@ -59,7 +59,7 @@ export declare function objectKeyPrefix(value: string): ObjectKeyPrefix;
59
59
  * The prefix is an IMMUTABLE property of a deployment. It is spliced in here
60
60
  * and nowhere else, and nothing reads a key back under a second layout: change
61
61
  * a live deployment's prefix and its existing objects become unaddressable.
62
- * See `R2BlobStoreOptions.keyPrefix` in `@byok-sdk/cloud-postgres` for the full
62
+ * See `R2BlobStoreOptions.keyPrefix` in `@byok-sdk/cloud-dataplane` for the full
63
63
  * operational contract.
64
64
  */
65
65
  export declare function tenantObjectKey(tenant: TenantId, hash: ContentHash, prefix?: ObjectKeyPrefix): string;
package/dist/index.js CHANGED
@@ -903,6 +903,7 @@ var InMemoryPresenceStore = class {
903
903
  deviceId: input.deviceId,
904
904
  level: input.level,
905
905
  ...input.detail === void 0 ? {} : { detail: input.detail },
906
+ ...input.configuredToolsets === void 0 ? {} : { configuredToolsets: Object.freeze([...input.configuredToolsets]) },
906
907
  observedAt: now.toISOString(),
907
908
  expiresAt: new Date(now.getTime() + input.ttlMs).toISOString()
908
909
  };