@relayfile/core 0.8.14 → 0.8.16

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.
@@ -15,6 +15,7 @@ describe("dedup type contracts", () => {
15
15
  const identity = {
16
16
  kind: "push",
17
17
  key: "repo:abc:main",
18
+ ttlSeconds: 300,
18
19
  };
19
20
  const store = {
20
21
  async has(key) {
package/dist/dedup.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export interface ContentIdentity {
2
2
  kind: string;
3
3
  key: string;
4
+ ttlSeconds?: number;
4
5
  }
5
6
  export interface DedupEntry {
6
7
  contentIdentity?: ContentIdentity;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@relayfile/core",
3
- "version": "0.8.14",
3
+ "version": "0.8.16",
4
4
  "description": "Shared business logic for relayfile — file operations, ACL, queries, events, and writeback lifecycle",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",