@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 +1 -1
- package/dist/blob.d.ts +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/presence.d.ts +8 -0
- package/package.json +6 -6
package/README.md
CHANGED
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-
|
|
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
|
};
|